<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multipart http post in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761643#M329673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Maxi, &lt;/P&gt;&lt;P&gt;could you please tell us how you send the username and password to ARBA? These are mandatory fields for HTTP Post conection.&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Daniela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2012 18:29:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-10-25T18:29:42Z</dc:date>
    <item>
      <title>Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761633#M329663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;URGENT ISSUE -&lt;/P&gt;&lt;P&gt;Hi averyone &lt;/P&gt;&lt;P&gt;I need to make an upload of a file via POST method to a web service.&lt;/P&gt;&lt;P&gt;I have no problems passing the parameters user and password in the header line but i cant add multipart data to post de txt file .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code im using is : &lt;/P&gt;&lt;P&gt;*create client object	&lt;/P&gt;&lt;P&gt;CALL METHOD cl_http_client=&amp;gt;create&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    host    = host&lt;/P&gt;&lt;P&gt;    service = port&lt;/P&gt;&lt;P&gt;    scheme  = scheme&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    client  = client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Set Header&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~request_uri'&lt;/P&gt;&lt;P&gt;                                   value = path ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~request_method'&lt;/P&gt;&lt;P&gt;                                   value = 'POST' ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~enctype'&lt;/P&gt;&lt;P&gt;                                   value = 'multipart/form-data' ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name = 'Content-Type'&lt;/P&gt;&lt;P&gt;                                   value = 'text/plain').&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name = '~server_protocol'&lt;/P&gt;&lt;P&gt;                                   value = 'HTTP/1.1' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set de los parametros a enviar&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'user'&lt;/P&gt;&lt;P&gt;                                 value = '20295635089').&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'password'&lt;/P&gt;&lt;P&gt;                                 value = '010107').&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'file'&lt;/P&gt;&lt;P&gt;value = 'c:\TB_20295635089_002002_20061212_000001.txt').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_fields TYPE tihttpnvp.&lt;/P&gt;&lt;P&gt;CALL METHOD client-&amp;gt;request-&amp;gt;get_header_fields&lt;/P&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    fields = lv_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;send and receive&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;client-&amp;gt;send( ).&lt;/P&gt;&lt;P&gt;CALL METHOD client-&amp;gt;receive&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;	  http_communication_failure = 1&lt;/P&gt;&lt;P&gt;	  http_invalid_state         = 2&lt;/P&gt;&lt;P&gt;	  http_processing_failed     = 3&lt;/P&gt;&lt;P&gt;	  OTHERS                     = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im getting the following error message &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;HTML&amp;gt;&amp;lt;TITLE&amp;gt;411 Invalid value for Content-Length header&amp;lt;/TITLE&amp;gt;&amp;lt;BODY&amp;gt;&amp;lt;h1&amp;gt;411 Invalid value for Content-Length header&amp;lt;/h1&amp;gt;&amp;lt;/BODY&amp;gt;&amp;lt;/HTML&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ill look forward for some response .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 19:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761633#M329663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T19:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761634#M329664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*create client object	&lt;/P&gt;&lt;P&gt;CALL METHOD cl_http_client=&amp;gt;create&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    host    = host&lt;/P&gt;&lt;P&gt;    service = port&lt;/P&gt;&lt;P&gt;    scheme  = scheme&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    client  = client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Set del Header&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~request_uri'&lt;/P&gt;&lt;P&gt;                                   value = path ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~request_method'&lt;/P&gt;&lt;P&gt;                                   value = 'POST' ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name  = '~enctype'&lt;/P&gt;&lt;P&gt;                                   value = 'multipart/form-data' ).&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name = 'Content-Type'&lt;/P&gt;&lt;P&gt;                                   value = 'text/plain').&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_header_field( name = '~server_protocol'&lt;/P&gt;&lt;P&gt;                                   value = 'HTTP/1.1' ).&lt;/P&gt;&lt;P&gt;  client-&amp;gt;request-&amp;gt;set_header_field( name = '~Content-Length'&lt;/P&gt;&lt;P&gt;                                     value = '60000' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'user'&lt;/P&gt;&lt;P&gt;                                 value = '20295635089').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'password'&lt;/P&gt;&lt;P&gt;                                 value = '010107').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name  = 'file'&lt;/P&gt;&lt;P&gt;value = 'c:\TB_20295635089_002002_20061212_000001.txt').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;send and receive&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;client-&amp;gt;send( ).&lt;/P&gt;&lt;P&gt;CALL METHOD client-&amp;gt;receive&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;	  http_communication_failure = 1&lt;/P&gt;&lt;P&gt;	  http_invalid_state         = 2&lt;/P&gt;&lt;P&gt;	  http_processing_failed     = 3&lt;/P&gt;&lt;P&gt;	  OTHERS                     = 4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 19:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761634#M329664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T19:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761635#M329665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name = 'file'&lt;/P&gt;&lt;P&gt;value = 'c:\TB_20295635089_002002_20061212_000001.txt').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above line is the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use gui_upload to upload the data first and then set it to the request object &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;request-&amp;gt;set_cdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;request-&amp;gt;send&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 20:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761635#M329665</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-12T20:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761636#M329666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;client-&amp;gt;request-&amp;gt;set_form_field( name = 'file'&lt;/P&gt;&lt;P&gt;value = 'c:\TB_20295635089_002002_20061212_000001.txt').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above line is the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use gui_upload to upload the data first and then set it to the request object &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;request-&amp;gt;set_cdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;request-&amp;gt;send&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 20:19:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761636#M329666</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-12T20:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761637#M329667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry but i cant take this line out .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File is one of de obligatories parameters ..&lt;/P&gt;&lt;P&gt;if i upload de data and set it to the request object and take out the set_form_file = name = 'file' i get the error : parameter missing FILE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks anyway .. hope you can help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mcol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 21:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761637#M329667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T21:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761638#M329668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am checking, will get back. however i feel that this may not be possible as the input type ="file" is very strict, you cannot even default file name to this element in normal html programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 07:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761638#M329668</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-12-13T07:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761639#M329669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Even iam facing the same problem...Unexpected request Content-Type header 'application/x-www-form-urlencoded'....&lt;/P&gt;&lt;P&gt;i tried giving the content type properly.Not sure where is the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2009 08:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761639#M329669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-05T08:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761640#M329670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the C:\ from that line and then use append_cdata and send.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2011 17:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761640#M329670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-19T17:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761641#M329671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all, we are facing same issue, we are not able to send requested file as txt output format.&lt;/P&gt;&lt;P&gt;We sent user &amp;amp; password and input file as string. This is correct? Could you please send us an example?&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 13:28:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761641#M329671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-12T13:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761642#M329672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found a way to make it work, please remove the username and password ARBA service you put: P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 May 2012 20:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761642#M329672</guid>
      <dc:creator>asdasd_asdasd</dc:creator>
      <dc:date>2012-05-12T20:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761643#M329673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Maxi, &lt;/P&gt;&lt;P&gt;could you please tell us how you send the username and password to ARBA? These are mandatory fields for HTTP Post conection.&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Daniela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2012 18:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761643#M329673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-25T18:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761644#M329674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a new thread, and I'll explain what is happening ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2012 14:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761644#M329674</guid>
      <dc:creator>asdasd_asdasd</dc:creator>
      <dc:date>2012-10-26T14:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761645#M329675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm already did it.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/3257799"&gt;http://scn.sap.com/thread/3257799&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2012 15:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761645#M329675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-26T15:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multipart http post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761646#M329676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know this is a very old thread but I have the same problem.&amp;nbsp; I need to send a parameter using set_form_field, because If I put it inside a multipart , the web site doesn't recognize it, but using method set_form_field, I don't know what value to pass, because the parameter is type file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know if there is a way to send a parameter type file , with set_form_field method?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thansk,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 17:29:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multipart-http-post/m-p/1761646#M329676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-24T17:29:52Z</dc:date>
    </item>
  </channel>
</rss>

