Excuse me,
Since I cannot success deploy my own BPEL process into jBPM,
even it is valid and executing in other Workflow engine.
I would like to know the what kind of XML will the BPEL process have.

1. Cound the WSDL use type for message?

  | <types>
  |     <xsd:schema targetNamespace="http://jbpm.org/examples/hello";>
  |             <xsd:element name="GreetingMessage">
  |                     <xsd:complexType>
  |                             <xsd:sequence>
  |                                     <xsd:element name="value" 
type="xsd:string"/>
  |                             </xsd:sequence>
  |                     </xsd:complexType>
  |             </xsd:element>
  |     </xsd:schema>
  | </types>
  | <message name="Message">
  |     <part element="my:GreetingMessage" name="part"/>
  | </message>
  | 

2. Is the WSDL MUST NOT contain any binding or service?

  | <binding name="GreetingBIND" type="my:Greeting">
  |     <soap:binding style="document" 
transport="http://schemas.xmlsoap.org/soap/http"/>
  |     <operation name="operation">
  |             <soap:operation/>
  |             <input>
  |                     <soap:body use="literal"/>
  |             </input>
  |             <output>
  |                     <soap:body use="literal"/>
  |             </output>
  |     </operation>
  | </binding>
  | <service name="GreetingService">
  |     <port binding="my:GreetingBIND" name="GreetingPort">
  |             <soap:address location="http://localhost:8080/GreetingService"/>
  |     </port>
  | </service>
  | 

3. If the WSDL is possible to have binding, is the binding style MUST be 
document?

  | <binding name="GreetingBIND" type="my:Greeting">
  |     <soap:binding style="document" 
transport="http://schemas.xmlsoap.org/soap/http"/>
  |     <operation name="operation">
  |             <soap:operation/>
  |             <input>
  |                     <soap:body use="literal"/>
  |             </input>
  |             <output>
  |                     <soap:body use="literal"/>
  |             </output>
  |     </operation>
  | </binding>
  | 

In addition, is the BPEL XML allow using prefix (e.g. bpws:variables)?

  | <bpws:variables>
  |     <bpws:variable messageType="my:Message" name="myVariable"/>
  | </bpws:variables>
  | 

Thank you very much...

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3912787#3912787

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3912787


-------------------------------------------------------
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
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to