Hello again, once again, I tried to call my .NET-Webservice from jbpm bpel. I realized, that the web service doesn't get its parameters, they are simply null. When i looked at the SOAP message, jbpm bpel sends, I found the reason. The message should look like<soapenv:Envelope | xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" | xmlns:xsd="http://www.w3.org/2001/XMLSchema" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | <soapenv:Body> | <ReverseAndConcatNames xmlns="http://my.namespace"> | <firstName>Martin</firstName> | <secondName>Steinle</secondName> | </ReverseAndConcatNames> | </soapenv:Body> | </soapenv:Envelope> but it looks like the following:<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" | xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | <soapenv:Body> | <ns1:ReverseAndConcatNames xmlns:ns1="http://my.namespace" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" | xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | <firstName>Martin</firstName> | <secondName>Steinle</secondName> | </ns1:ReverseAndConcatNames> | </soapenv:Body> | </soapenv:Envelope> as you can see, the difference is in the elements and , which both have no namespace associated with them.
For testing purposes, i created a Java-Client for the .NEt webservice with Axis' WSDL2Java tool. This client worked properly, in fact, it created the first SOAP message quoted above. Can you help me: Am I the reason for this error or is it possibly jbpm bpel? Thanks again for your help, Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917662#3917662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917662 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
