I am working on a JSF application which redirect to another application then do some processing there and redirect back. Issue is when I use JSF application URL as
http://172.20.1.175:8080/app_path/page.xhtml
and redirect back to the URL,
http://172.20.1.175:8080/app_path/page1.xhtml
then I am getting xml page on the browser like following
<partial-response>
<changes>
<update id="javax.faces.ViewState">
<![CDATA[
-------
]]>
<![CDATA[
--------
]]>
</update>
</changes>
</partial-response>
but if I use http://localhost:8080/app_path/page.xhtml and redirect back to the URL http://172.20.1.175:8080/app_path/page1.xhtml it's working fine (172.20.1.175 is my IP address). I am using spring security for authorization.
I am trying to figure out the reason for this behavior. Any ideas?
Thanks, Lakmal