I have a problem when using the "webservice step" in pentaho-kettle. If I try to get a WSDL-File from a Webservice, which is already widely used (should not be a real circularRedirect) I get an org.apache.commons.httpclient.CircularRedirectException -Exception and I can't get the WSDL-file.
I want to solve the problem with the webservice-step, not with an ordinary http-call or another work around.
I checked the web and found a solution to the problem, which doesn't suit me, because I don't want to get the source and rebuild the application.
the solution would be as follows:
...
HttpClient client = new DefaultHttpClient();
client.getParams().setParameter(ClientPNames.ALLO_CIRCULAR_REDIRECTS,true)
...
Does anybody have a solution where I can set those parameters at runtime? Or am I on the wrong track anyway and there would be another solution?
Thank you all for your help in advance!