<?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 Problems with web. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552684#M250581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody.&lt;/P&gt;&lt;P&gt;I'm trying to download a file which is set in a web site via a hyperlink which leads to a dialog for downloading/open that file. &lt;/P&gt;&lt;P&gt;Does any of you know how:&lt;/P&gt;&lt;P&gt;  - simulate that process from ABAP for getting the file?&lt;/P&gt;&lt;P&gt;  - view the entire source code from a page?&lt;/P&gt;&lt;P&gt;I prefer a response to this second question because in the web site I can already find the documentation stored in the file.&lt;/P&gt;&lt;P&gt;Thanks for your helping, fellows.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Sep 2006 10:13:41 GMT</pubDate>
    <dc:creator>SantiMoreno</dc:creator>
    <dc:date>2006-09-04T10:13:41Z</dc:date>
    <item>
      <title>Problems with web.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552684#M250581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody.&lt;/P&gt;&lt;P&gt;I'm trying to download a file which is set in a web site via a hyperlink which leads to a dialog for downloading/open that file. &lt;/P&gt;&lt;P&gt;Does any of you know how:&lt;/P&gt;&lt;P&gt;  - simulate that process from ABAP for getting the file?&lt;/P&gt;&lt;P&gt;  - view the entire source code from a page?&lt;/P&gt;&lt;P&gt;I prefer a response to this second question because in the web site I can already find the documentation stored in the file.&lt;/P&gt;&lt;P&gt;Thanks for your helping, fellows.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 10:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552684#M250581</guid>
      <dc:creator>SantiMoreno</dc:creator>
      <dc:date>2006-09-04T10:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552685#M250582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use HTTP_GET function module or cl_http_client class for this.&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>Mon, 04 Sep 2006 10:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552685#M250582</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-09-04T10:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552686#M250583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sample code sample using the cl_http_client&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method cl_http_client=&amp;gt;create_by_url
    exporting
      url                = wf_string = "variable holding the url"
    importing
      client             = http_client
    exceptions
      argument_not_found = 1
      plugin_not_active  = 2
      internal_error     = 3
      others             = 4.

  call method http_client-&amp;gt;send
    exceptions
      http_communication_failure = 1
      http_invalid_state         = 2.

  call method http_client-&amp;gt;receive
    exceptions
      http_communication_failure = 1
      http_invalid_state         = 2
      http_processing_failed     = 3.

  clear result .
  result = http_client-&amp;gt;response-&amp;gt;get_cdata( ).
  refresh result_tab .
  split result at cl_abap_char_utilities=&amp;gt;cr_lf into table result_tab .
  loop at result_tab into r_str.
    write:/ r_str .
  endloop .&lt;/CODE&gt;&lt;/PRE&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>Mon, 04 Sep 2006 10:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-web/m-p/1552686#M250583</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-09-04T10:24:50Z</dc:date>
    </item>
  </channel>
</rss>

