Hi All;
I am not sure if this is the best place for this question, but I am
stuck.
I have a Axis2 client which I created from a service's WSDL using the
xmlbeans data binding. I am now trying to connect to the live
service, but the service is behind a proxy server. The proxy server
monitors the HTTP headers, and based on custom field in the header
will route the request to the correct machine. I am trying to add
the HTTP Header information to my code for the client, but I am not
sure how to do this. So far the best I have been able to do is this:
//Set the HTTP Headers
ServiceClient sc = stub._getServiceClient();
Options options = sc.getOptions();
options.setProperty("myKey", "myValue");
sc.setOptions(options);
stub._setServiceClient(sc);
I am hoping somebody may be able to help me here, or at least point
me to some reference that discuss this
Rob