[
https://wso2.org/jira/browse/MASHUP-702?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16144#action_16144
]
Keith Godwin Chapman commented on MASHUP-702:
---------------------------------------------
Encoperated Jonathans proposal in revision 15520. Axis2 APIs do not explicitly
allow us to so this, we had to do some processing our selves to get this
feature. With that in place the following is supported now
function foo(){
var request = new WSRequest();
request.openWSDL("http://localhost:7762/services/system/version?wsdl",false);
request.send("getVersion",null);
return request.responseXML;
}
function bar(){
var request = new WSRequest();
var service = new QName("http://services.mashup.wso2.org/version","version");
request.openWSDL("http://localhost:7762/services/system/version?wsdl",service,"SOAP12Endpoint",
false);
var endpoint = new
QName("http://services.mashup.wso2.org/version","getVersion");
request.send(endpoint,null);
return request.responseXML;
}
> Enhance WsRequest to infer other details when given a WSDL and operation to
> be invoked
> --------------------------------------------------------------------------------------
>
> Key: MASHUP-702
> URL: https://wso2.org/jira/browse/MASHUP-702
> Project: WSO2 Mashup Server
> Issue Type: New Feature
> Reporter: Channa Gunawardena
> Assignee: Keith Godwin Chapman
> Priority: Minor
> Fix For: 1.1
>
>
> Enhance WsRequest to be able to infer other required details when given the
> WSDL and the operation to be invoked.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://wso2.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev