Hi All,

I am getting org.apache.axis2.AxisFault: Unconnected sockets not implemented exception.

Whant can be the root cause of this ?




JAVA CODE:
#################
import java.security.Security;
import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axis2.AxisFault;
import org.apache.axis2.Constants;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.ServiceClient;

public class WSClient {

        public static void main(String[] args) {
                System.setProperty("javax.net.ssl.trustStore",
                                "D:\\clientcert.jks");
                System.setProperty("javax.net.ssl.trustStorePassword", 
"password123");

                try {

                        OMFactory fac = OMAbstractFactory.getOMFactory();
                        OMNamespace omNs = fac
                                        .createOMNamespace(
                                                        
"http://www.NAMESAPCEURL";,
                                                        "methodname");
                        OMElement method = fac.createOMElement("wsmethodname", 
omNs);

                        EndpointReference endpoint = new EndpointReference(
                                        
"https://webserviceurl.com/wsfile.asmx";);

                        Options options = new Options();
                        
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);

                        options.setTo(endpoint);

                        ServiceClient serviceClient = new ServiceClient();
                        serviceClient.setOptions(options);

                        OMElement result = serviceClient.sendReceive(method);

                        System.out.println(result);

                } catch (AxisFault axisFault) {
                        axisFault.printStackTrace();
                }

        }

}
#########################################


ERROR:

Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry INFO: I/O exception (java.net.SocketException) caught when processing request: Unconnected sockets not implemented Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
INFO: Retrying request
Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry INFO: I/O exception (java.net.SocketException) caught when processing request: Unconnected sockets not implemented Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
INFO: Retrying request
Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry INFO: I/O exception (java.net.SocketException) caught when processing request: Unconnected sockets not implemented Jun 23, 2006 5:51:27 PM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
INFO: Retrying request
org.apache.axis2.AxisFault: Unconnected sockets not implemented; nested exception is: java.net.SocketException: Unconnected sockets not implemented; nested exception is: org.apache.axis2.AxisFault: Unconnected sockets not implemented; nested exception is:
        java.net.SocketException: Unconnected sockets not implemented
at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:223)
        at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:589)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:328) at org.apache.axis2.description.OutInAxisOperationClient.execute(OutInAxisOperation.java:279) at org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:457) at org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:399)
        at WSClient.main(WSClient.java:42)
Caused by: org.apache.axis2.AxisFault: Unconnected sockets not implemented; nested exception is:
        java.net.SocketException: Unconnected sockets not implemented
at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:305) at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:207)
        ... 6 more
Caused by: java.net.SocketException: Unconnected sockets not implemented
        at javax.net.SocketFactory.createSocket(DashoA12275)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.commons.httpclient.protocol.ReflectionSocketFactory.createSocket(ReflectionSocketFactory.java:115) at org.apache.commons.httpclient.protocol.SSLProtocolSocketFactory.createSocket(SSLProtocolSocketFactory.java:129) at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:706) at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:386) at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:170) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:396) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) at org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod(AbstractHTTPSender.java:530) at org.apache.axis2.transport.http.SOAPOverHTTPSender.send(SOAPOverHTTPSender.java:92) at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:299)
        ... 7 more
#####################



thanks

_________________________________________________________________
COPA 2006: Como se diz 'gol' em mais de 32 paĆ­ses? http://copa.br.msn.com/extra/curiosidades/futebol/


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to