This is a discussion on Regarding Transformation - Weblogic ; Am trying to convert a delimited String to an XML. have done the following.= .. (1) Created a JPD with subscription(thro' file) as the input channel.=20 (2) Defined an MFL to do the conversion (3) Exported the Schema document into ...
Am trying to convert a delimited String to an XML. have done the following.=
..
(1) Created a JPD with subscription(thro' file) as the input channel.=20
(2) Defined an MFL to do the conversion
(3) Exported the Schema document into the library
(4) Created a Transfromation control that has a transfromation method.
(5) In the XQuery, the source, target types are specified.
Now when I try to test the XQ then the string gets converted to a proper qu=
alified XML as below
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
<emp:Employee xmlns:emp=3D"http://temp.openuri.org/DemoProcess/EmployeeXML.=
xsd">
<emp:Name>XYZ</emp:Name>
<emp:ID>12345</emp:ID>
</emp:Employee>
When the same string is read thro the subscription (meaning file), the same=
is not getting converted. Its as below
Converted String =3D=3D> <Employee xmlns=3D"http://temp.openuri.org/DemoPro=
cess/Employ
eeXML.xsd">
<Name/>
<ID/>
</Employee>
Could anyone help me in this regard at the earliest.. Thx in advance