Calling REST web services from a classic asp page - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-20T14:25:16Z http://stackoverflow.com/feeds/question/11219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11219/calling-rest-web-services-from-a-classic-asp-page 6 Calling REST web services from a classic asp page [closed] Louis Salin 2008-08-14T15:34:26Z 2009-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#11237 5 Answer by SitWalkStand for Calling REST web services from a classic asp page SitWalkStand 2008-08-14T15:49:01Z 2008-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#11238 8 Answer by KP for Calling REST web services from a classic asp page KP 2008-08-14T15:49:27Z 2008-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#11242 0 Answer by Vincent Robert for Calling REST web services from a classic asp page Vincent Robert 2008-08-14T15:54:08Z 2008-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#11251 5 Answer by Kev for Calling REST web services from a classic asp page Kev 2008-08-14T15:59:58Z 2009-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 &amp; 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#11270 2 Answer by KP for Calling REST web services from a classic asp page KP 2008-08-14T16:17:14Z 2008-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#60343 1 Answer by garretmagin for Calling REST web services from a classic asp page garretmagin 2008-09-13T05:14:17Z 2008-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>