Whatbs the wM WSDL protocol version

What’s the wM WSDL protocol version? i.e If I generate a WSDL file using webMethods 6.1 or 6.0.1 whats the protocol I will get??

Thanks
Kevin

Kevin,

That depends on what protocol you select while creating the wsdl from the Developer.it supports SOAP-RPC,SOAP-MSG,HTTP-POST and HTTP-GET protocols.

ramesh.

Thanks Ramesh…Thats quick!

I would like to know, if I want to generate a web service and expose in the form of WSDL which confirms SOAP protocol version 1.2??

Thanks in advance

Kevin,

AFAIK, webMethods supports SOAP 1.1.i’m not sure whether it supports 1.2 version.you have to consult tech support for additional information.

ramesh.

Any more thoughts??

Kevin

IS still supports Soap 1.1. ServiceNet 6.5 supports Soap 1.2. Most servers that will accept Soap 1.2 messages will also accept Soap 1.1 messages.

Since the message itself is just an XML document, it is certainly possible to generate or consume Soap 1.2 messages from within Integration Server, although you might want to create a custom soap processor to make this easier. A custom soap processor is just a flow or java service that pre-processes the soap message before invoking some service.

Mark

Thanks Mark…I am new to webservices can you provide any sample custom processor/any kind of simple code which adds two integers using document/literal…any kind of help is greatly appreciated.

Thanks once again
Kevin

Mark,

ServiceNet 6.5???is this same as Fabric 6.5???just curious to know.

Thanks
ramesh.

Hi
Could anyone let me know what version of HTTP webMethods is currently using? Also, when webMethods intends to go for higher version of HTTP and what will be the version number?

WSDL files generated by webMethods Developer use the namespace [i][url=“http://schemas.xmlsoap.org/wsdl”]http://schemas.xmlsoap.org/wsdl[/url][/i] which refers to the schema file [i][url=“http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd”]http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd[/url][/i]. I believe this equates to WSDL 1.0.

That said, the Web Services Connector may be able to generate Flow services (web service connectors) from WSDL files that adhere to later versions.

“webMethods” is not a product, but a product suite. The webMethods ServiceNet 6.5 product supports Soap 1.2, UDDIv3, WS-Security 1.0 and WSDL 1.1. See this technical datasheet for details.

Mark

Ho can I use SOAP 1.2 from IS 6.5 without using GLUE.

No. Support for SOAP 1.2 is introduced with IS 7.1 which will be released later this year (2007). That said, a SOAP envelope is just an XML document with a few specific namespaces, so you can build an empty SOAP 1.2 request using pub.soap.utils:stringToSoapData, add content to it and send it to the service provider in the usual way.

Mark

can you please provide a small sample service if possible?