Discussion:
[jira] [Created] (AXIS2-5921) Soap with attachment service migration to Axis2 failure
Anoobkumar (JIRA)
2018-06-28 20:06:00 UTC
Permalink
Anoobkumar created AXIS2-5921:
---------------------------------

Summary: Soap with attachment service migration to Axis2 failure
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar


soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?

I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2

soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
robert lazarski (JIRA)
2018-06-29 19:05:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16528101#comment-16528101 ]

robert lazarski commented on AXIS2-5921:
----------------------------------------

Version 1.6.2 is very old and unsupported. Can you upgrade to 1.7.8?

Anyways, you seem to be having a problem here parsing an invalid payload. That error looks like its around a UUID. There may be some type of session / request tracking and that UUID may be invalid or expired. You don't show your payload XML however I suggest upgrading to 1.7.8, and looking for clues around that UUID.

MultirefHelper:

public OMElement processOMElementRef(String id) throws AxisFault {
        if (!filledTable) {
            readallChildElements();
        }
        OMElement val = (OMElement)elementMap.get(id);
        if (val == null) {
            throw new AxisFault("Invalid reference :" + id);
        } else {
            OMElement ele = processElementforRefs(val);
            OMElement cloneele = elementClone(ele);
            omElementMap.put(id, cloneele);
            return cloneele;
        }
    }

BeanUtil:

    OMAttribute omatribute = MultirefHelper.processRefAtt(omElement);
    String ref = null;
    if (omatribute != null) {
        hasRef = true;
        ref = MultirefHelper.getAttvalue(omatribute);
    }

 

 
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
Anoobkumar (JIRA)
2018-06-29 19:29:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Anoobkumar updated AXIS2-5921:
------------------------------
Attachment: service.wsdl
b4f63251-c62e-405f-b2fa-939abd706f43.xml
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
Anoobkumar (JIRA)
2018-06-29 19:30:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16528123#comment-16528123 ]

Anoobkumar commented on AXIS2-5921:
-----------------------------------

Here is the SOAP UI Test case. Attached the SOAP attachment and wsdl file.

Attachment : [^b4f63251-c62e-405f-b2fa-939abd706f43.xml]

Request XML:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soa="http://fs.thehartford.com/soa">
<soapenv:Header/>
<soapenv:Body xmlns:soa="http://fs.thehartford.com/soa">
<soa:orchestrateAcordRequest xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<bin href="b4f63251-c62e-405f-b2fa-939abd706f43" xmlns:types="http://fs.thehartford.com/soa/xsd"/>
</soa:orchestrateAcordRequest>
</soapenv:Body>
</soapenv:Envelope>
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
robert lazarski (JIRA)
2018-06-29 21:25:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16528275#comment-16528275 ]

robert lazarski commented on AXIS2-5921:
----------------------------------------

You are running an unsupported release. The best I can do to help you is by refering to the relevant unit tests in 1.7.8 that produce the following input / output in the expected format. I see an extra '#' here.

OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
            <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            <ns1:operation2>
                <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            </ns1:operation2>
        </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
            <ns2:name>the real argument</ns2:name>
            <ns2:color>blue</ns2:color>
        </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1 href="#obj1"/>
        <ns1:operation2>
            <ns1:arg1 href="#obj1"/>
            <ns1:test href="#obj2"/>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
        <ns1:operation2>
            <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
            <ns1:test>
        <age>23</age>
        <name>amila</name>
    </ns1:test>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>

 
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
robert lazarski (JIRA)
2018-06-29 21:29:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16528275#comment-16528275 ]

robert lazarski edited comment on AXIS2-5921 at 6/29/18 9:28 PM:
-----------------------------------------------------------------

You are running an unsupported release. The best I can do to help you is by refering to the relevant unit tests in 1.7.8 that produce the following input / output in the expected format. I see an extra '#' here.

OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><operation>
        <arg1 href="#obj1"/>
    </operation><multiref id="obj1">
        <name>the real argument</name>
        <color>blue</color>
    </multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><operation>
        <arg1>
        <name>the real argument</name>
        <color>blue</color>
    </arg1>
    </operation><multiref id="obj1">
        <name>the real argument</name>
        <color>blue</color>
    </multiref></soapenv:Body></soapenv:Envelope>
OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1 href="#obj1"/>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
    </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
    </ns1:arg1>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
    </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
            <ns1:arg1 href="#obj1"/>
            <ns1:operation2>
                <ns1:arg1 href="#obj1"/>
            </ns1:operation2>
        </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
            <ns2:name>the real argument</ns2:name>
            <ns2:color>blue</ns2:color>
        </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
            <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            <ns1:operation2>
                <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            </ns1:operation2>
        </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
            <ns2:name>the real argument</ns2:name>
            <ns2:color>blue</ns2:color>
        </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1 href="#obj1"/>
        <ns1:operation2>
            <ns1:arg1 href="#obj1"/>
            <ns1:test href="#obj2"/>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
        <ns1:operation2>
            <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
            <ns1:test>
        <age>23</age>
        <name>amila</name>
    </ns1:test>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>

 


was (Author: robertlazarski):
You are running an unsupported release. The best I can do to help you is by refering to the relevant unit tests in 1.7.8 that produce the following input / output in the expected format. I see an extra '#' here.

OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
            <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            <ns1:operation2>
                <ns1:arg1>
            <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
            <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        </ns1:arg1>
            </ns1:operation2>
        </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
            <ns2:name>the real argument</ns2:name>
            <ns2:color>blue</ns2:color>
        </ns2:multiref></soapenv:Body></soapenv:Envelope>
OM Element before processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1 href="#obj1"/>
        <ns1:operation2>
            <ns1:arg1 href="#obj1"/>
            <ns1:test href="#obj2"/>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>
OM Element after processing ==> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ns1:operation xmlns:ns1="http:temp1.org">
        <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
        <ns1:operation2>
            <ns1:arg1>
        <ns2:name xmlns:ns2="http:temp1.org">the real argument</ns2:name>
        <ns2:color xmlns:ns2="http:temp1.org">blue</ns2:color>
        <ns2:person xmlns:ns2="http:temp1.org">
        <age>23</age>
        <name>amila</name>
    </ns2:person>
    </ns1:arg1>
            <ns1:test>
        <age>23</age>
        <name>amila</name>
    </ns1:test>
        </ns1:operation2>
    </ns1:operation><ns2:multiref xmlns:ns2="http:temp1.org" id="obj1">
        <ns2:name>the real argument</ns2:name>
        <ns2:color>blue</ns2:color>
        <ns2:person href="#obj2"/>
    </ns2:multiref><multiref id="obj2">
        <age>23</age>
        <name>amila</name>
    </multiref></soapenv:Body></soapenv:Envelope>

 
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
Anoobkumar (JIRA)
2018-07-09 19:06:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16537416#comment-16537416 ]

Anoobkumar commented on AXIS2-5921:
-----------------------------------

I have tried to upgrade the service to Axis2 1.7.8, but this results in another error - The service cannot be found for the endpoint reference (EPR). 

Code has been updated with the suggestions from [https://axis.apache.org/axis2/java/core/release-notes/1.7.0.html]

 

Error message:

06 Jul 2018 14:12:44 DEBUG : Unable to parse request URL [http://fs.thehartford.com/soa][/cdstabsorchestrator/services]
06 Jul 2018 14:12:44 DEBUG : org.apache.axis2.i18n.resource::handleGetObject(servicenotfoundforepr)
06 Jul 2018 14:12:44 ERROR : The service cannot be found for the endpoint reference (EPR) http://localhost:7001/cdstabsorchestrator/services/OrchestratePolicyInqRqPort/
org.apache.axis2.AxisFault: The service cannot be found for the endpoint reference (EPR) http://localhost:7001/cdstabsorchestrator/services/OrchestratePolicyInqRqPort/
at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:79)
at org.apache.axis2.engine.Phase.invoke(Phase.java:324)
at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:250)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:156)
at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:178)
at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:163)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
robert lazarski (JIRA)
2018-07-09 20:50:00 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16537553#comment-16537553 ]

robert lazarski commented on AXIS2-5921:
----------------------------------------

That error is the equivalent of an http 404.

This url seems invalid.

Unable to parse request URL [http://fs.thehartford.com/soa][/cdstabsorchestrator/services]

 
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-***@axis.apache.org
For additional commands, e-mail: java-dev-***@axis.apache.org
robert lazarski (JIRA)
2018-09-11 14:39:01 UTC
Permalink
[ https://issues.apache.org/jira/browse/AXIS2-5921?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

robert lazarski closed AXIS2-5921.
----------------------------------
Resolution: Incomplete
Post by Anoobkumar (JIRA)
Soap with attachment service migration to Axis2 failure
-------------------------------------------------------
Key: AXIS2-5921
URL: https://issues.apache.org/jira/browse/AXIS2-5921
Project: Axis2
Issue Type: Bug
Reporter: Anoobkumar
Priority: Major
Attachments: b4f63251-c62e-405f-b2fa-939abd706f43.xml, service.wsdl
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
I am migrating an old web service implemented with Axis 1.4, which receives and respond Soap With Attachment data. When I do a testing of the service with SOAP UI, I am getting error with Invalid Reference :, can anyone help me on this?
I am using Java 1.8, WebLogic 10.3.6 server, Axis2 - 1.6.2
soapui - Soap with attachment failure with Axis2 implementation - Stack Overflow
{{org.apache.axis2.AxisFault: Invalid reference :b4f63251-c62e-405f-b2fa-939abd706f43 at org.apache.axis2.databinding.utils.MultirefHelper.processRef(MultirefHelper.java:116) at org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:791) at org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:737) at org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:646) at org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:153) at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:206) at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117) at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40) at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:181) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:172) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:146) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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

Loading...