[
http://issues.apache.org/jira/browse/WODEN-69?page=comments#action_12449062 ]
Arthur Ryman commented on WODEN-69:
-----------------------------------
The problem was a simple error. The wrong URI was used to test for the HTTP
underlying protocol in ComponentModelBuilder.java. Note that it is using the
WSDL extension URI.
if (ComponentExtensions.URI_NS_HTTP.equals(sbe
.getSoapUnderlyingProtocol())) {
It should use the SOAP protocol URI (and convert it from URI to String):
URI soapUnderlyingProtocol = sbe.getSoapUnderlyingProtocol();
if
(SOAPConstants.PROTOCOL_URI_HTTP.equals(soapUnderlyingProtocol.toString())) {
Fixed in r473838
> Ant Tasks Throws NPE on W3C Test Case
> /desc/test-suite/documents/good/MessageTest-1G/SOAPservice.wsdl
> -----------------------------------------------------------------------------------------------------
>
> Key: WODEN-69
> URL: http://issues.apache.org/jira/browse/WODEN-69
> Project: Woden
> Issue Type: Bug
> Components: Tools
> Reporter: Arthur Ryman
> Assigned To: Arthur Ryman
> Attachments: WODEN-69_BaseWSDLReader.patch.txt,
> WODEN-69_BindingOperationImpl.patch.txt, WODEN-69_Constants.patch.txt,
> WODEN-69_WSDLComponentValidator.patch.txt
>
>
> I just ran Woden on the latest addition to the test suite and got a NPE. I'll
> investigate further.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]