cancel
Showing results for 
Search instead for 
Did you mean: 

XML's

Former Member
0 Kudos

We have a process where we have a HTTP request coming into XI. The process is HTTPS --> XI --> RFC and it is a Synchronous call.

Ths issue is that the payload has a strange tag as you can see below:

<?xml version="1.0" encoding="iso-8859-1"?>

<biztalk_1 xmlns="urn:biztalk-org:biztalk:biztalk_1">

<header>

<delivery>

<message>

<messageID>qx8klc-aaac-fclw7rlb-2fr</messageID>

<sent>02008-02-13T14:02:55</sent>

</message>

<to>

<address>360T-TEX</address>

</to>

<from>

<address>SAP_FI_MP</address>

</from>

</delivery>

</header>

<body>

<doc:FinancialTransaction.CreateFromData.Response xmlns:doc="urn:sap-com:document:sap:business" xmlns="">

<Transaction>3000000002580</Transaction>

<Return>

<TYPE/>

<ID/>

<NUMBER>000</NUMBER>

<MESSAGE/>

<LOG_NO/>

<LOG_MSG_NO>000000</LOG_MSG_NO>

<MESSAGE_V1/>

<MESSAGE_V2/>

<MESSAGE_V3/>

<MESSAGE_V4/>

<PARAMETER/>

<ROW>0</ROW>

<FIELD/>

<SYSTEM/>

</Return>

<CompanyCode>1922</CompanyCode>

</doc:FinancialTransaction.CreateFromData.Response>

</body>

</biztalk_1>

now the issue is the "doc:" part. As you can probably see this is a biztalk message. When I send the payload in with out the "doc:" prefix everything seems fine. However when it is there then in the test tool all of the nodes turn red...

So my question is does anyone know what this is or how to fix it so that it is accepted in XI. Anything I can do to the XSD?

Edited by: Alex on Feb 14, 2008 2:15 PM

Edited by: Alex on Feb 14, 2008 2:16 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

I think you are using HTTPS connectivity and its passing the Authentication certificate as an attachment with payload.

For e.g. in simple words if you have try to open www.sdn.sap.com it will pop-up one certificate validation window normally we use to click OK and process ahead similar kind of thing comes with suufix for payload.

Thanks

Swarup

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Remove the xml tag which is at first of the payload and try it

>><?xml version="1.0" encoding="iso-8859-1"?>

Regards

Seshagiri