Nov 25, 2005 #1 travisbrown Technical User Joined Dec 31, 2001 Messages 1,016 How viable is xmlhttp in jsp? Anyone know of some good samples? I've worked with it in asp, but wondering it there is something comparable in jsp. Thanks.
How viable is xmlhttp in jsp? Anyone know of some good samples? I've worked with it in asp, but wondering it there is something comparable in jsp. Thanks.
Nov 26, 2005 #2 sedj Programmer Joined Aug 6, 2002 Messages 5,610 Do you mean as in the new buzzword AJAX ? -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
Do you mean as in the new buzzword AJAX ? -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
Nov 26, 2005 Thread starter #3 travisbrown Technical User Joined Dec 31, 2001 Messages 1,016 Well, yes and no. It's used in AJAX. I just need to pull some content in crossdomain. I'm not looking for a full AJAX implementation. On an IIS server I'd do this: Code: <% Response.Buffer = True Set xml = Server.CreateObject("Microsoft.XMLHTTP") xml.Open "GET", "[URL unfurl="true"]http://www.domain.com",[/URL] False xml.Send Response.Write xml.responseText Set xml = Nothing %> Upvote 0 Downvote
Well, yes and no. It's used in AJAX. I just need to pull some content in crossdomain. I'm not looking for a full AJAX implementation. On an IIS server I'd do this: Code: <% Response.Buffer = True Set xml = Server.CreateObject("Microsoft.XMLHTTP") xml.Open "GET", "[URL unfurl="true"]http://www.domain.com",[/URL] False xml.Send Response.Write xml.responseText Set xml = Nothing %>