<?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: HTTP request in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042457#M720092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would firstly recommend that you check how to create an HTTP request :&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw70/helpdata/en/1f/93163f9959a808e10000000a114084/content.htm"&amp;gt;http client example&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you could try to use the POST method in order to send information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This information could be your XML data. If you generate this from an internal table, you could simply generate the XML data using a &amp;lt;a href="http://help.sap.com/saphelp_nw70/helpdata/en/e3/7d4719ca581441b6841f1054ff1326/frameset.htm"&amp;gt;Transformation&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple transformation is enough in most cases, otherwise you would have to write an XSLT. If you do not require to validate your XML against a DTD, you could use the following one :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;xsl:transform version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
&amp;gt;

&amp;lt;xsl:strip-space elements="*"/&amp;gt;

&amp;lt;xsl:template match="/"&amp;gt;
  &amp;lt;xsl:copy-of select="."/&amp;gt;
&amp;lt;/xsl:template&amp;gt;

&amp;lt;/xsl:transform&amp;gt;

Good luck ;)


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Nov 2007 13:01:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-12T13:01:30Z</dc:date>
    <item>
      <title>HTTP request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042454#M720089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!  &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;I need to send a file XML for an address HTTP using programs ABAP. How can I make that using request HTTP?  &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 12:27:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042454#M720089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-12T12:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042455#M720090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link hope this would help you to solve your problem&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.topxml.com/Framework-Webservices/rn-290007_How-to-receive/send-XML-file-through-HTTP-Post.aspx" target="test_blank"&gt;http://www.topxml.com/Framework-Webservices/rn-290007_How-to-receive/send-XML-file-through-HTTP-Post.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.topxml.com/Biztalk-Newuser/rn-282530_http-connector.aspx" target="test_blank"&gt;http://www.topxml.com/Biztalk-Newuser/rn-282530_http-connector.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 12:38:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042455#M720090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-12T12:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042456#M720091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use cl_http_client class to do the same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out the following demo program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSHTTP01&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 12:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042456#M720091</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-12T12:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042457#M720092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would firstly recommend that you check how to create an HTTP request :&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw70/helpdata/en/1f/93163f9959a808e10000000a114084/content.htm"&amp;gt;http client example&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you could try to use the POST method in order to send information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This information could be your XML data. If you generate this from an internal table, you could simply generate the XML data using a &amp;lt;a href="http://help.sap.com/saphelp_nw70/helpdata/en/e3/7d4719ca581441b6841f1054ff1326/frameset.htm"&amp;gt;Transformation&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple transformation is enough in most cases, otherwise you would have to write an XSLT. If you do not require to validate your XML against a DTD, you could use the following one :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;xsl:transform version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
&amp;gt;

&amp;lt;xsl:strip-space elements="*"/&amp;gt;

&amp;lt;xsl:template match="/"&amp;gt;
  &amp;lt;xsl:copy-of select="."/&amp;gt;
&amp;lt;/xsl:template&amp;gt;

&amp;lt;/xsl:transform&amp;gt;

Good luck ;)


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 13:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-request/m-p/3042457#M720092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-12T13:01:30Z</dc:date>
    </item>
  </channel>
</rss>

