Thanks Jim,

good solution, but the opposite of what we need!!!

the html pages that will contain the scripts that request the XML are 
on FirstClass Internet Services (which is an embedded appache server, 
so its pre-compiled and not updateable)

the XML comes from IIS/ASP

onwards and upwards!

Garry

--- In [email protected], "Jim Ley" <[EMAIL PROTECTED]> wrote:
>
> 
> "Garry Haywood" <[EMAIL PROTECTED]> wrote in message 
> news:[EMAIL PROTECTED]
> > --- In [email protected], "Jim Ley" <[EMAIL PROTECTED]> wrote:
> >
> >> site to the other, so all requests go to the one server.
> >
> >
> > does any body have a recomendation of good, cheap/free , proxy 
for w2000
> 
> You don't really need anything so complicated, in fact, the more of 
a 
> general purpose proxy you have the harder it will be to secure it 
to only 
> requesting the subset of files you want.
> 
> Assuming you don't need to map http success codes, and it's just a 
straight 
> GET, then the below JScript ASP page is a perfectly reasonable 
proxy.
> 
>    var file=decodeURIComponent(Request.ServerVariables
("QUERY_STRING"));
>    xmlhttp=new ActiveXObject("MSXML2.ServerXMLHTTP")
>    xmlhttp.open("GET","http://otherserver.com/"+file,false);
>    xmlhttp.send();
>    Response.Write(xmlhttp.responseText)
> 
> call it moomin.asp, then you can request pages on the other server 
with
> 
> xmlhttp.open('GET','moomin.asp?/somefile.xml',false);
> 
> Of course, you may need a slightly more complicated proxy if you 
want to 
> handle post etc.  but I'd've thought you could manage it easily 
enough in a 
> similar way.
> 
> Cheers,
> 
> Jim.
>






------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/1U_rlB/TM
--------------------------------------------------------------------~-> 

-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to