I deploy one D/D and I tried below request, it worked well
 
POST /soap/servlet/messagerouter HTTP/1.1
HOST: my ip:port
Content-Type: text/xml; charset=UTF-8
Content-Length: 462
SOAPAction: "ebXML"
 
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<eb:Manifest SOAP-ENV:mustUnderstand="1" eb:version="1.0" xmlns:eb="http://www.ebxml.org/namespaces/messageHeader">
<eb:Reference xlink:href="cid:ebxmlpayload1" xlink:type="simple">
<eb:Description xml:lang="en-us">Purchase Order 1</eb:Description>
</eb:Reference>
</eb:Manifest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
 
 
 
But below does not.
 
POST /soap/servlet/messagerouter HTTP/1.1
HOST: my ip:port
Content-Type: text/xml; charset=EUC-KR
Content-Length: 462
SOAPAction: "ebXML"
 
<?xml version='1.0' encoding='EUC-KR'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<eb:Manifest SOAP-ENV:mustUnderstand="1" eb:version="1.0" xmlns:eb="http://www.ebxml.org/namespaces/messageHeader">
<eb:Reference xlink:href="cid:ebxmlpayload1" xlink:type="simple">
<eb:Description xml:lang="en-us">���ſ��� 1</eb:Description>
</eb:Reference>
</eb:Manifest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
 
"���ſ���" is multibyte-character(korean).
 
Exception related 'well-formed document' was thrown.
 
Does SOAP2.2 support multibyte character?
 
--
Se-yong, Um
Republic of Korea

Reply via email to