Re: Client doesn't follow redirect

2009-01-05 Thread emilSverige
I noted that it had already been fixed in the main branch. I downloaded the source code for 2.13, applied the fix and built a new jar file. i don't want to deploy any unstable versions to our production environment. I have tested the fix and it solves my problem. Thank you so much for your help!

Re: Client doesn't follow redirect

2009-01-05 Thread Daniel Kulp
On Monday 29 December 2008 10:59:52 am emilSverige wrote: > Hi again > What can I do to fix this? Should I edit the source code and package my own > cxf jar file? Or should I wait for a new release where this is fixed and > work around it in the meantime? > What would you suggest? If possible, I w

Re: Client doesn't follow redirect

2008-12-29 Thread emilSverige
Hi again What can I do to fix this? Should I edit the source code and package my own cxf jar file? Or should I wait for a new release where this is fixed and work around it in the meantime? What would you suggest? Kind regards Emil -- View this message in context: http://www.nabble.com/Client-

Re: Client doesn't follow redirect

2008-12-20 Thread emilSverige
Hi, thank you all for your help. The case sensitivity seems likely to be problem. I will look into it when I'm back from the holiday. Regards Emil -- View this message in context: http://www.nabble.com/Client-doesn%27t-follow-redirect-tp21069032p21107982.html Sent from the cxf-user mailing list

Re: Client doesn't follow redirect

2008-12-18 Thread Glen Mazza
Yes, according to Section 4.2 of the HTTP spec (http://tools.ietf.org/html/rfc2616#section-4.2) header field names are case-insensitive. Glen dkulp wrote: > > I think I see the problem > > Your headers that are returning have: > location=[http://sapprd02:8060/sap/bc/srt/rfc/sap/z_steria_i

Re: Client doesn't follow redirect

2008-12-18 Thread Daniel Kulp
I think I see the problem Your headers that are returning have: location=[http://sapprd02:8060/sap/bc/srt/rfc/sap/z_steria_id_retur/100/z_steria_id_retur/z_steria_id_retur] However, we are calling: List locs = headers.get("Location"); (notice the capital L) Thus, I'm pretty sure its not f

Re: Client doesn't follow redirect

2008-12-18 Thread Glen Mazza
I would look at Wireshark (google), it will give you the HTTP status response codes. Glen emilSverige wrote: > > How can I confirm that a response 301 is sent from the server? I see > nothing about it in the logs. It looks like a 301 in the logs, but I would > say it looks like it returns some

Client doesn't follow redirect

2008-12-18 Thread emilSverige
Hi, I have a load balanced SAP web service residing. I have generated CXF java client code to connect to this service. It works fine if I connect directly to the service, but fails if I try to connect via the load balancer. I believe the server is responding with status 301, but I haven't been ab