vote up 6 vote down star
2

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.

I haven't the slightest idea how to do that.

Thank you all for your time!

flag
closing this because it has become a spam magnet for WOW gold services, oddly enough.. sorry Louis, it's not you! – Jeff Atwood Apr 14 at 10:14
OK, enough time has passed. Let's reopen and resume the discussion. – DOK May 27 at 0:19

closed as no longer relevant by Jeff Atwood Apr 14 at 10:14

6 Answers

vote up 8 vote down check

You could use a combination of JQuery with JSON calls to consume REST services from the client

or

if you need to interact with the REST services from the ASP layer you can use

MSXML2.ServerXMLHTTP

like:

Set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP")
HttpReq.open "GET", "Rest_URI", False
HttpReq.send
link|flag
vote up 1 vote down

Another possibility is to use the WinHttp COM object Using the WinHttpRequest COM Object.

WinHttp was designed to be used from server code.

link|flag
vote up 2 vote down

@Kevin

Thanks for the Catch. I updated the XMLHTTP answer.

link|flag
vote up 5 vote down

@KP

You should actually use MSXML2.ServerXMLHTTP from ASP/server side applications. XMLHTTP should only be used client side because it uses WinInet which is not supported for use in server/service apps.

See http://support.microsoft.com/kb/290761, questions 3, 4 & 5 and

http://support.microsoft.com/kb/238425/.

This is quite important, otherwise you'll experience your web app hanging and all sorts of strange nonsense going on.

link|flag
vote up 0 vote down

All you need is an HTTP client. In .Net, WebRequest works well. For classic ASP, you will need a specific component like this one.

link|flag
vote up 5 vote down

Here are a few articles describing how to call a web service from a class ASP page:

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.