views:

268

answers:

1

My application neeeds to access a third part web service. Of late, they have introduced a load balancer, which redirects to the server. Because of this the webservice gets a 302 - Redirect error as response.

In the SOAPUI, I was able to enable a property called "Follow Redirect", and because of this service followed the redirect and served by the server.

Now is there a similar propety that can be turned on in the code, which would make the webservice follow the request?

(The calling code is java and the webservice is in .net)

+1  A: 

This needs to be supported by the library implementing the actual call to the web service, and there is not a generic way of setting this.

Thorbjørn Ravn Andersen
I am new to webservices...so not really sure what you are reffering to by the 'what code' - library, I am using jboss services class..and generated the stubs using jaxws....does this information help, to me help me out???
frappuccino