[ 
https://issues.apache.org/jira/browse/AXIS-2777?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS-2777.
-----------------------------------

    Resolution: Not A Problem
    
> Error occurs only in Java 6 but it is fine in Java 1.4: SAAJ0007: Bad 
> endPoint type (endPoint instance of URL)
> --------------------------------------------------------------------------------------------------------------
>
>                 Key: AXIS-2777
>                 URL: https://issues.apache.org/jira/browse/AXIS-2777
>             Project: Axis
>          Issue Type: Bug
>    Affects Versions: 1.2.1
>         Environment: OS: Windows XP
>            Reporter: William Chau
>         Attachments: test.zip
>
>
> After we switch from Java 1.4 to Java 6, we got an error from a SOAP call:
> SEVERE: SAAJ0007: Bad endPoint type (endPoint instance of URL)
> Here is the code segment for the SOAP call:
>               String body = "some body string"
>               MessageFactoryImpl mf = new MessageFactoryImpl();
>               MimeHeaders headers = new MimeHeaders();
>               headers.addHeader("SOAPAction", "some action string");
>               InputStream soapStream = new 
> ByteArrayInputStream(body.getBytes());
>               SOAPMessage msg = mf.createMessage(headers, soapStream);
>               
> SOAPConnectionFactory connectionFactory = SOAPConnectionFactory.newInstance();
>               SOAPConnection connection = 
> connectionFactory.createConnection();
>               URLEndpoint url = new URLEndpoint("some url string");
>               javax.xml.soap.SOAPMessage message = null;
>               try {message = connection.call(msg, url);} catch (Exception e){ 
> System.out.println(e.getMessage());}
>               Message tempMessage = (Message) message;
>               System.out.println(tempMessage.getSOAPPartAsString());

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org

Reply via email to