Calling REST web services from a classic asp page - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-20T14:25:16Zhttp://stackoverflow.com/feeds/question/11219http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page6Calling REST web services from a classic asp page [closed]Louis Salin2008-08-14T15:34:26Z2009-04-13T08:58:20Z
<p>I'd like to start moving our application business layers into a collection of REST web services. However, most of our Intranet has been built using Classic ASP and most of the developers where I work keep programming in Classic ASP. Ideally, then, for them to benefit from the advantages of a unique set of web APIs, it would have to be called from Classic ASP pages.</p>
<p>I haven't the slightest idea how to do that. </p>
<p>Thank you all for your time!</p>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/11237#112375Answer by SitWalkStand for Calling REST web services from a classic asp pageSitWalkStand2008-08-14T15:49:01Z2008-08-14T15:49:01Z<p>Here are a few articles describing how to call a web service from a class ASP page:</p>
<ul>
<li><a href="http://www.4guysfromrolla.com/webtech/070302-1.shtml" rel="nofollow" title="excanvas">Integrating ASP.NET XML Web Services with 'Classic' ASP Applications</a> </li>
<li><a href="http://www.dotnetjunkies.com/Tutorial/99CA4563-FBD4-411F-A9C6-FF9E8A0E664F.dcik" rel="nofollow">Consuming XML Web Services in Classic ASP</a></li>
<li><a href="http://www.aspfree.com/c/a/ASP/Consuming-a-WSDL-Webservice-from-ASP/" rel="nofollow">Consuming a WSDL Webservice from ASP</a></li>
</ul>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/11238#112388Answer by KP for Calling REST web services from a classic asp pageKP2008-08-14T15:49:27Z2008-08-14T16:10:31Z<p>You could use a combination of JQuery with JSON calls to consume REST services from the client</p>
<p>or</p>
<p>if you need to interact with the REST services from the ASP layer you can use</p>
<p>MSXML2.ServerXMLHTTP</p>
<p>like:</p>
<pre><code>Set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP")
HttpReq.open "GET", "Rest_URI", False
HttpReq.send
</code></pre>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/11242#112420Answer by Vincent Robert for Calling REST web services from a classic asp pageVincent Robert2008-08-14T15:54:08Z2008-08-14T15:54:08Z<p>All you need is an HTTP client. In .Net, WebRequest works well. For classic ASP, you will need a specific component like <a href="http://www.coalesys.com/products/httpclient/features/default.asp" rel="nofollow">this one</a>.</p>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/11251#112515Answer by Kev for Calling REST web services from a classic asp pageKev2008-08-14T15:59:58Z2009-04-13T08:58:20Z<p>@<a href="http://beta.stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page#11238" rel="nofollow">KP</a></p>
<p>You should actually use <code>MSXML2.ServerXMLHTTP</code> from ASP/server side applications. <code>XMLHTTP</code> should only be used client side because it uses WinInet which is not supported for use in server/service apps. </p>
<p>See <a href="http://support.microsoft.com/kb/290761" rel="nofollow">http://support.microsoft.com/kb/290761</a>, questions 3, 4 & 5 and</p>
<p><a href="http://support.microsoft.com/kb/238425/" rel="nofollow">http://support.microsoft.com/kb/238425/</a>. </p>
<p>This is quite important, otherwise you'll experience your web app hanging and all sorts of strange nonsense going on.</p>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/11270#112702Answer by KP for Calling REST web services from a classic asp pageKP2008-08-14T16:17:14Z2008-08-14T16:17:14Z<p>@<a href="http://beta.stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page#11251" rel="nofollow" title="excanvas">Kevin</a></p>
<p>Thanks for the Catch. I updated the XMLHTTP answer.</p>
http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page/60343#603431Answer by garretmagin for Calling REST web services from a classic asp pagegarretmagin2008-09-13T05:14:17Z2008-09-13T05:14:17Z<p>Another possibility is to use the WinHttp COM object <a href="http://msdn.microsoft.com/en-us/library/aa384079(VS.85).aspx" rel="nofollow">Using the WinHttpRequest COM Object</a>.</p>
<p>WinHttp was designed to be used from server code.</p>