<?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: authentication with HTTP_POST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815770#M42172</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the problems is not HTTP_POST. I also tray to use this clases but I can't connect to the server  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Aug 2004 12:49:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-08-27T12:49:39Z</dc:date>
    <item>
      <title>authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815768#M42170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to call a web services from Sap 4.7 in a server in my intranet. I can call it when the target server haven't security administration. But when the security is activated the the funcion HTTP_POST returns the error 401. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I send in the funcion the parameters USER and PASSWORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function HTTP_POST works with the rfc destination SAPHTTP with comunicates with saphttp program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can I Do ????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2004 18:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815768#M42170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-08-26T18:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815769#M42171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you are on 4.7 you might want to try using class cl_http_client instead of the http_post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2004 19:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815769#M42171</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2004-08-26T19:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815770#M42172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the problems is not HTTP_POST. I also tray to use this clases but I can't connect to the server  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2004 12:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815770#M42172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-08-27T12:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815771#M42173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did u pass the USER and PASSWORD value? plain text?&lt;/P&gt;&lt;P&gt;then it will fail. you need to scramble user name and password before passing it to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call 'AB_RFC_X_SCRAMBLE_STRING'&lt;/P&gt;&lt;P&gt;  id 'SOURCE'      field user        id 'KEY'         field key&lt;/P&gt;&lt;P&gt;  id 'SCR'         field 'X'         id 'DESTINATION' field user&lt;/P&gt;&lt;P&gt;  id 'DSTLEN'      field slen.&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>Sat, 28 Aug 2004 07:47:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815771#M42173</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2004-08-28T07:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815772#M42174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The AB_RFC_X_SCRAMBLE_STRING is nessary if you calling HTTP_POST because it is called via RFC.  However if you the CL_HTTP_CLIENT, this is not necessary.  You interacting directly with the ICM and for HTTP, the username and password is passed unencrypted via the HTTP headers (Basic Authentication).   When you tried the CL_HTTP_CLIENT, you did call the AUTHENTICATE method?  If you did you didn't try and scramble the password?  Also have you tried calling the URL for the WebService from your browser, just to make sure that everything is setup right on that side and that you username and password are good?  Also what kind of security are they expecting - Basic authentication, HTTPS, Certificate, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Aug 2004 13:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815772#M42174</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2004-08-30T13:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: authentication with HTTP_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815773#M42175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas, &lt;/P&gt;&lt;P&gt;I am working with NetWeaver Developer Studio 2.0.3 and J2EE 630. I got success in &lt;/P&gt;&lt;P&gt;calling my webservice, but now I need to call it with security access. How shoud I go on ?&lt;/P&gt;&lt;P&gt;In the definition of my WebService in Developer Studio I have specified HTTP authentication and Basic, but where should I set up the user and password ? Do I have to complete anything else in Document Security tab  or in the Visual Administrator ? &lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2005 13:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authentication-with-http-post/m-p/815773#M42175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-04T13:33:46Z</dc:date>
    </item>
  </channel>
</rss>

