sure :

<?xml version="1.0" encoding="UTF-8"?>
<bpws:process
xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/";
xmlns:hello="urn:/HelloWorld2.wsdl" xmlns:ns="urn:/WriteService.wsdl"
xmlns:tns="urn:/HelloWorld2.bpel"
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
exitOnStandardFault="yes" name="HelloWorld2"
targetNamespace="urn:/HelloWorld2.bpel">
<bpws:import importType="http://schemas.xmlsoap.org/wsdl/";
location="HelloWorld2.wsdl" namespace="urn:/HelloWorld2.wsdl"/>
<bpws:import importType="http://schemas.xmlsoap.org/wsdl/";
location="WriterService.wsdl" namespace="urn:/WriteService.wsdl"/>
<bpws:partnerLinks>
<bpws:partnerLink myRole="Provider" name="helloPartnerLink"
partnerLinkType="hello:HelloPartnerLinkType"/>
<bpws:partnerLink name="WriterPartnerLink"
partnerLinkType="ns:WritePartnerLinkType" partnerRole="Consumer"/>
</bpws:partnerLinks>
<bpws:variables>
<bpws:variable messageType="hello:HelloRequest" name="request"/>
<bpws:variable messageType="hello:HelloResponse" name="response"/>
<bpws:variable name="text" type="xsd:string"/>
<bpws:variable messageType="ns:WriteRequest" name="writerRequest"/>
</bpws:variables>
<bpws:sequence>
<bpws:receive createInstance="yes" name="start" operation="Hello"
partnerLink="helloPartnerLink" portType="hello:HelloPortType"
variable="request"/>
<bpws:assign name="Assign1" validate="no">
<bpws:copy>
<bpws:from><![CDATA[concat($request.body, ' WORLD!!!!!')]]></bpws:from>
<bpws:to part="body" variable="writerRequest"/>
</bpws:copy>
<bpws:copy>
<bpws:from part="body" variable="request"/>
<bpws:to part="body" variable="response"/>
</bpws:copy>
</bpws:assign>
<bpws:invoke inputVariable="writerRequest" name="Invoke" operation="Write"
partnerLink="WriterPartnerLink" portType="ns:WritePortType"/>
<bpws:reply name="end" operation="Hello" partnerLink="helloPartnerLink"
portType="hello:HelloPortType" variable="response"/>
</bpws:sequence>
</bpws:process>


Paul R Brown-2 wrote:
> 
> Hi, Kermitt --
> 
>> I give a try to the eclipse BPEL Editor and I think there is issues with
>> the
>> use of CDATA section, is there a workaround?  Which editor are you using
>> that work well with ODE?
> 
> CDATA sections shouldn't give Ode any problems.  Can you paste a
> snippet of offending XML?
> 
> -- Paul
> 
> 

-- 
View this message in context: 
http://www.nabble.com/CDATA-tf3371194.html#a9381344
Sent from the Apache Ode User mailing list archive at Nabble.com.

Reply via email to