Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

upload XML File on Application server

Former Member
0 Kudos

Hello,

I have used simple transformation to generate the the xml file but once that file is generated but i could not locate it on server.

I have internal table containing XML file content.

But when I am uploading it on application server, it is appearing in single line not like below:

<?xml version="1.0" encoding="utf-8"?><Envelope version="01.00"><Sender><Id>ABCDEF</Id><Credential>123</Credential></Sender>

in single line.

But it should appear as follow:

<?xml version="1.0" encoding="utf-8" ?>

- <Envelope version="01.00">

- <Sender>

<Id>ABCDEF</Id>

<Credential>123</Credential>

</Sender>

- <Recipient>

<Id />

I tried to SPLI it at '>' but still not getting as expected.

Please let me know.

Regards,

saurabh

1 REPLY 1

Former Member
0 Kudos

is there a REASON you need it split into individual lines? XML processors do not care about it.

for a test, try to bring the file up in IE, and you will see it comes in just fine.