[
https://jira.jboss.org/jira/browse/JBESB-1963?page=com.atlassian.jira.plu...
]
Daniel Bevenius commented on JBESB-1963:
----------------------------------------
This looks like tihs has to do with the comment in the example soap envelope that soapui
generates.
The argument in request.xsd is optional which causes soapui to generate a comment prior to
that element '<!-- Optional: -->.
Comments seem to not be allowed unless they are placed directly below the the [document
element] element information item, which I assume would be the body element in this case.
So this would be ok:
<soap:Body>
<!-- comment ok here -->
<say:sayHi>
<say:HelloWorld>HelloWorld</say:HelloWorld>
</say:sayHi>"
</soap:Body>
For on this can be found here:
http://www.w3.org/TR/soap12-part1/#soapenv, chapter
"5. SOAP Message Construct" :
"Comment information items MAY appear as children and/or descendants of the [document
element] element information item but not before or after that element information item .
"
I've updated the readme.txt with instructions to run the quickstart with soapui and
modifed the request.xsd to make the argument a required element to avoid any confusion.
EBWS: esb-based web services should be callable from SoapUI
-----------------------------------------------------------
Key: JBESB-1963
URL:
https://jira.jboss.org/jira/browse/JBESB-1963
Project: JBoss ESB
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Web Services
Affects Versions: 4.4
Reporter: Burr Sutter
Assignee: Daniel Bevenius
Fix For: 4.4 CP2
Attachments: publish_as_webservice2.zip
SOAPUI consumes the WSDL generated by publish_as_webservice, seems to have a proper
request but generates a fault
Request:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:say="http://www.jboss.org/sayHi">
<soapenv:Body>
<say:sayHi>
<!--Optional:-->
<say:arg0>Burr</say:arg0>
</say:sayHi>
</soapenv:Body>
</soapenv:Envelope>
Response:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<env:Fault>
<faultcode>env:Server</faultcode>
<faultstring>Failed to serialize ESB Configuration Document
instance.</faultstring>
</env:Fault>
</env:Body>
</env:Envelope>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira