Is it possible to convert a 'SOAPConnection' to a 'SOAPConnectionImpl'?
Hello!
I'm having problems with concurrency... I need to set a timeout in a SOAPConnection object, but this class hasn't this function.
After a little research, I've found that theSOAPConnectionImpl (AXIS API) http://ws.apache.org/axis/java/apiDocs/org/apache/axis/soap/SOAPConnectionImpl.html can set a timeout.
Is is possible to convert into a SOAPConnectionImpl?
With the cast method (SOAPConnectionImpl conImpl = (SOAPConnectionImpl) con;) y have a ClassCastException :(

