[
https://jira.jboss.org/browse/JBIDE-6516?page=com.atlassian.jira.plugin.s...
]
Viacheslav Kabanovich commented on JBIDE-6516:
----------------------------------------------
I have committed both to trunk and to branch 3.1.x changes to
org.jboss.soa.esb.actions.soap.SOAPClient based on Java source for that class.
Documentation for that action is
http://www.redhat.com/docs/en-US/JBoss_SOA_Platform/5.0.0/html-single/Pro...
(11.7.4. SOAPClient) and it still references out-of-date property 'operation' in
examples. Correct property name is 'SOAPAction'.
I have limited my changes to the latest schema version jbossesb-1.2.0.xsd, because it is
not clear, when old 'operation' was replaced by new 'SOAPAction'. Jarkko
Lietolahti, please advise which schema version and ESB runtime version you use. It still
might be necessary to extend the changes to earlier versions.
wrong property name in SOAPClient
---------------------------------
Key: JBIDE-6516
URL:
https://jira.jboss.org/browse/JBIDE-6516
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: esb
Affects Versions: 3.0.0.GA
Reporter: jarkko Lietolahti
Assignee: Viacheslav Kabanovich
Fix For: 3.1.x, 3.2.x
Currently the JBoss Tools ESB editor generates "wrong" XML when editing
SOAPClient action:
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient"
name="test">
<property name="wsdl" value="test"/>
<property name="operation" value="testOperation"/>
</action>
</actions>
correct xml:
<actions>
<action class="org.jboss.soa.esb.actions.soap.SOAPClient"
name="test">
<property name="wsdl" value="test"/>
<property name="soapAction" value="testOperation"/>
</action>
</actions>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira