Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: accessing xml


Message #1 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Wed, 5 Dec 2001 09:32:55 +0000 (GMT)

I pass variable through XML component in ASP to other

site which works fine in my site.



 but the same thing is done through other site(one of

the client) it is giving error.



Server.CreateObject Failed 

Invalid ProgID.  



I am using component :



Set objXmlHttp 

Server.CreateObject("Msxml2.ServerXMLHTTP")

objXmlHttp.open "GET", str, false

objXmlHttp.send()

set objxmlhttp=nothing







                       Himanshu



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #2 by "Jason Salas" <jason@k...> on Thu, 6 Dec 2001 08:08:20 +1000
Hi Himanshu,



It looks like your server doesn't have the latest version of XMLHTTP.  Try

using this instead:



Set objXmlHttp = Server.CreateObject("Microsoft.XMLHTTP")



This should do the trick.  :)



HTH,

Jason





----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Wednesday, December 05, 2001 7:32 PM

Subject: [asp_web_howto] accessing xml





>

> I pass variable through XML component in ASP to other

> site which works fine in my site.

>

>  but the same thing is done through other site(one of

> the client) it is giving error.

>

> Server.CreateObject Failed

> Invalid ProgID.

>

> I am using component :

>

> Set objXmlHttp 

> Server.CreateObject("Msxml2.ServerXMLHTTP")

> objXmlHttp.open "GET", str, false

> objXmlHttp.send()

> set objxmlhttp=nothing

>

>

>

>                        Himanshu

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub')

>

>



Message #3 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Wed, 5 Dec 2001 11:55:23 +0000 (GMT)
it is also not working. which version should  i ask

for from my server.



             Himanshu



 --- Jason Salas <jason@k...> wrote: > Hi

Himanshu,

> 

> It looks like your server doesn't have the latest

> version of XMLHTTP.  Try

> using this instead:

> 

> Set objXmlHttp 

> Server.CreateObject("Microsoft.XMLHTTP")

> 

> This should do the trick.  :)

> 

> HTH,

> Jason

> 

> 

> ----- Original Message -----

> From: "Himanshu Chaudhari"

> <himanshuchaudhari@y...>

> To: "ASP Web HowTo" <asp_web_howto@p...>

> Sent: Wednesday, December 05, 2001 7:32 PM

> Subject: [asp_web_howto] accessing xml

> 

> 

> >

> > I pass variable through XML component in ASP to

> other

> > site which works fine in my site.

> >

> >  but the same thing is done through other site(one

> of

> > the client) it is giving error.

> >

> > Server.CreateObject Failed

> > Invalid ProgID.

> >

> > I am using component :

> >

> > Set objXmlHttp 

> > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > objXmlHttp.open "GET", str, false

> > objXmlHttp.send()

> > set objxmlhttp=nothing

> >

> >

> >

> >                        Himanshu

> >

> >

>

________________________________________________________________________

> > For Stock Quotes, Finance News, Insurance, Tax

> Planners, Mutual Funds...

> >                 Visit http://in.finance.yahoo.com/

> >



> jason@k...


> $subst('Email.Unsub')

> >

> >

> 

> 



> himanshuchaudhari@y...


> $subst('Email.Unsub')

>  



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #4 by "Jason Salas" <jason@k...> on Thu, 6 Dec 2001 10:11:07 +1000
To support XMLHTTP to need to be running at least VBScript 5.1.  Try running

this ASP script on your server and see what you get:



<%

response.write "I am running Version " &  ScriptEngineMajorVersion & "." &

ScriptEngineMinorVersion

%>



For the version of the XMLHTTP you initially wanted - Msxml2.ServerXMLHTTP -

you'll definetly need the latest.



You could download the latest scripting engine version (version 5.5) from:

http://www.microsoft.com/msdownload/vbscript/scripting.asp





jason



----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Wednesday, December 05, 2001 9:55 PM

Subject: [asp_web_howto] Re: accessing xml





> it is also not working. which version should  i ask

> for from my server.

>

>              Himanshu

>

>  --- Jason Salas <jason@k...> wrote: > Hi

> Himanshu,

> >

> > It looks like your server doesn't have the latest

> > version of XMLHTTP.  Try

> > using this instead:

> >

> > Set objXmlHttp 

> > Server.CreateObject("Microsoft.XMLHTTP")

> >

> > This should do the trick.  :)

> >

> > HTH,

> > Jason

> >

> >

> > ----- Original Message -----

> > From: "Himanshu Chaudhari"

> > <himanshuchaudhari@y...>

> > To: "ASP Web HowTo" <asp_web_howto@p...>

> > Sent: Wednesday, December 05, 2001 7:32 PM

> > Subject: [asp_web_howto] accessing xml

> >

> >

> > >

> > > I pass variable through XML component in ASP to

> > other

> > > site which works fine in my site.

> > >

> > >  but the same thing is done through other site(one

> > of

> > > the client) it is giving error.

> > >

> > > Server.CreateObject Failed

> > > Invalid ProgID.

> > >

> > > I am using component :

> > >

> > > Set objXmlHttp 

> > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > objXmlHttp.open "GET", str, false

> > > objXmlHttp.send()

> > > set objxmlhttp=nothing

> > >

> > >

> > >

> > >                        Himanshu

> > >

> > >

> >

> ________________________________________________________________________

> > > For Stock Quotes, Finance News, Insurance, Tax

> > Planners, Mutual Funds...

> > >                 Visit http://in.finance.yahoo.com/

> > >



> > jason@k...


> > $subst('Email.Unsub')

> > >

> > >

> >

> >



> > himanshuchaudhari@y...


> > $subst('Email.Unsub')

> >

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub')

>

>



Message #5 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Wed, 5 Dec 2001 12:44:37 +0000 (GMT)
it is running engine 5.1

but my code is still not running and though it is nt

giving error in 

Set objXmlHttp

=Server.CreateObject("Microsoft.XMLHTTP")



but it is not yielding result.



                    Himanshu



 --- Jason Salas <jason@k...> wrote: > To support

XMLHTTP to need to be running at least

> VBScript 5.1.  Try running

> this ASP script on your server and see what you get:

> 

> <%

> response.write "I am running Version " & 

> ScriptEngineMajorVersion & "." &

> ScriptEngineMinorVersion

> %>

> 

> For the version of the XMLHTTP you initially wanted

> - Msxml2.ServerXMLHTTP -

> you'll definetly need the latest.

> 

> You could download the latest scripting engine

> version (version 5.5) from:

>

http://www.microsoft.com/msdownload/vbscript/scripting.asp

> 

> 

> jason

> 

> ----- Original Message -----

> From: "Himanshu Chaudhari"

> <himanshuchaudhari@y...>

> To: "ASP Web HowTo" <asp_web_howto@p...>

> Sent: Wednesday, December 05, 2001 9:55 PM

> Subject: [asp_web_howto] Re: accessing xml

> 

> 

> > it is also not working. which version should  i

> ask

> > for from my server.

> >

> >              Himanshu

> >

> >  --- Jason Salas <jason@k...> wrote: > Hi

> > Himanshu,

> > >

> > > It looks like your server doesn't have the

> latest

> > > version of XMLHTTP.  Try

> > > using this instead:

> > >

> > > Set objXmlHttp 

> > > Server.CreateObject("Microsoft.XMLHTTP")

> > >

> > > This should do the trick.  :)

> > >

> > > HTH,

> > > Jason

> > >

> > >

> > > ----- Original Message -----

> > > From: "Himanshu Chaudhari"

> > > <himanshuchaudhari@y...>

> > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > Sent: Wednesday, December 05, 2001 7:32 PM

> > > Subject: [asp_web_howto] accessing xml

> > >

> > >

> > > >

> > > > I pass variable through XML component in ASP

> to

> > > other

> > > > site which works fine in my site.

> > > >

> > > >  but the same thing is done through other

> site(one

> > > of

> > > > the client) it is giving error.

> > > >

> > > > Server.CreateObject Failed

> > > > Invalid ProgID.

> > > >

> > > > I am using component :

> > > >

> > > > Set objXmlHttp 

> > > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > objXmlHttp.open "GET", str, false

> > > > objXmlHttp.send()

> > > > set objxmlhttp=nothing

> > > >

> > > >

> > > >

> > > >                        Himanshu

> > > >

> > > >

> > >

> >

>

________________________________________________________________________

> > > > For Stock Quotes, Finance News, Insurance, Tax

> > > Planners, Mutual Funds...

> > > >                 Visit

> http://in.finance.yahoo.com/

> > > >

> > > > ---

> > > > You are currently subscribed to asp_web_howto

> as:

> > > jason@k...


> > > $subst('Email.Unsub')

> > > >

> > > >

> > >

> > >

> > > ---

> > > You are currently subscribed to asp_web_howto

> as:

> > > himanshuchaudhari@y...


> > > $subst('Email.Unsub')

> > >

> >

> >

>

________________________________________________________________________

> > For Stock Quotes, Finance News, Insurance, Tax

> Planners, Mutual Funds...

> >                 Visit http://in.finance.yahoo.com/

> >



> jason@k...


> $subst('Email.Unsub')

> >

> >

> 

> 



> himanshuchaudhari@y...


> $subst('Email.Unsub')

>  



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #6 by "Jason Salas" <jason@k...> on Thu, 6 Dec 2001 11:02:42 +1000
what value do you have for the variable "str"?  is this a form field wherein

the user enters the URL of a remote site?  also, what error is being

generated?



jason





----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Wednesday, December 05, 2001 10:44 PM

Subject: [asp_web_howto] Re: accessing xml





> it is running engine 5.1

> but my code is still not running and though it is nt

> giving error in

> Set objXmlHttp

> =Server.CreateObject("Microsoft.XMLHTTP")

>

> but it is not yielding result.

>

>                     Himanshu

>

>  --- Jason Salas <jason@k...> wrote: > To support

> XMLHTTP to need to be running at least

> > VBScript 5.1.  Try running

> > this ASP script on your server and see what you get:

> >

> > <%

> > response.write "I am running Version " &

> > ScriptEngineMajorVersion & "." &

> > ScriptEngineMinorVersion

> > %>

> >

> > For the version of the XMLHTTP you initially wanted

> > - Msxml2.ServerXMLHTTP -

> > you'll definetly need the latest.

> >

> > You could download the latest scripting engine

> > version (version 5.5) from:

> >

> http://www.microsoft.com/msdownload/vbscript/scripting.asp

> >

> >

> > jason

> >

> > ----- Original Message -----

> > From: "Himanshu Chaudhari"

> > <himanshuchaudhari@y...>

> > To: "ASP Web HowTo" <asp_web_howto@p...>

> > Sent: Wednesday, December 05, 2001 9:55 PM

> > Subject: [asp_web_howto] Re: accessing xml

> >

> >

> > > it is also not working. which version should  i

> > ask

> > > for from my server.

> > >

> > >              Himanshu

> > >

> > >  --- Jason Salas <jason@k...> wrote: > Hi

> > > Himanshu,

> > > >

> > > > It looks like your server doesn't have the

> > latest

> > > > version of XMLHTTP.  Try

> > > > using this instead:

> > > >

> > > > Set objXmlHttp 

> > > > Server.CreateObject("Microsoft.XMLHTTP")

> > > >

> > > > This should do the trick.  :)

> > > >

> > > > HTH,

> > > > Jason

> > > >

> > > >

> > > > ----- Original Message -----

> > > > From: "Himanshu Chaudhari"

> > > > <himanshuchaudhari@y...>

> > > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > > Sent: Wednesday, December 05, 2001 7:32 PM

> > > > Subject: [asp_web_howto] accessing xml

> > > >

> > > >

> > > > >

> > > > > I pass variable through XML component in ASP

> > to

> > > > other

> > > > > site which works fine in my site.

> > > > >

> > > > >  but the same thing is done through other

> > site(one

> > > > of

> > > > > the client) it is giving error.

> > > > >

> > > > > Server.CreateObject Failed

> > > > > Invalid ProgID.

> > > > >

> > > > > I am using component :

> > > > >

> > > > > Set objXmlHttp 

> > > > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > objXmlHttp.open "GET", str, false

> > > > > objXmlHttp.send()

> > > > > set objxmlhttp=nothing

> > > > >

> > > > >

> > > > >

> > > > >                        Himanshu

> > > > >

> > > > >

> > > >

> > >

> >

> ________________________________________________________________________

> > > > > For Stock Quotes, Finance News, Insurance, Tax

> > > > Planners, Mutual Funds...

> > > > >                 Visit

> > http://in.finance.yahoo.com/

> > > > >

> > > > > ---

> > > > > You are currently subscribed to asp_web_howto

> > as:

> > > > jason@k...


> > > > $subst('Email.Unsub')

> > > > >

> > > > >

> > > >

> > > >

> > > > ---

> > > > You are currently subscribed to asp_web_howto

> > as:

> > > > himanshuchaudhari@y...


> > > > $subst('Email.Unsub')

> > > >

> > >

> > >

> >

> ________________________________________________________________________

> > > For Stock Quotes, Finance News, Insurance, Tax

> > Planners, Mutual Funds...

> > >                 Visit http://in.finance.yahoo.com/

> > >



> > jason@k...


> > $subst('Email.Unsub')

> > >

> > >

> >

> >



> > himanshuchaudhari@y...


> > $subst('Email.Unsub')

> >

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub')

>

>



Message #7 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Thu, 6 Dec 2001 04:52:49 +0000 (GMT)
in the str  i am having query string which is storing

the values taken from form fields. 

this is working in Response.redirect but tis passes

control to other site.



                        Himanshu





 --- Jason Salas <jason@k...> wrote: > what value

do you have for the variable "str"?  is

> this a form field wherein

> the user enters the URL of a remote site?  also,

> what error is being

> generated?

> 

> jason

> 

> 

> ----- Original Message -----

> From: "Himanshu Chaudhari"

> <himanshuchaudhari@y...>

> To: "ASP Web HowTo" <asp_web_howto@p...>

> Sent: Wednesday, December 05, 2001 10:44 PM

> Subject: [asp_web_howto] Re: accessing xml

> 

> 

> > it is running engine 5.1

> > but my code is still not running and though it is

> nt

> > giving error in

> > Set objXmlHttp

> > =Server.CreateObject("Microsoft.XMLHTTP")

> >

> > but it is not yielding result.

> >

> >                     Himanshu

> >

> >  --- Jason Salas <jason@k...> wrote: > To

> support

> > XMLHTTP to need to be running at least

> > > VBScript 5.1.  Try running

> > > this ASP script on your server and see what you

> get:

> > >

> > > <%

> > > response.write "I am running Version " &

> > > ScriptEngineMajorVersion & "." &

> > > ScriptEngineMinorVersion

> > > %>

> > >

> > > For the version of the XMLHTTP you initially

> wanted

> > > - Msxml2.ServerXMLHTTP -

> > > you'll definetly need the latest.

> > >

> > > You could download the latest scripting engine

> > > version (version 5.5) from:

> > >

> >

>

http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > >

> > >

> > > jason

> > >

> > > ----- Original Message -----

> > > From: "Himanshu Chaudhari"

> > > <himanshuchaudhari@y...>

> > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > Sent: Wednesday, December 05, 2001 9:55 PM

> > > Subject: [asp_web_howto] Re: accessing xml

> > >

> > >

> > > > it is also not working. which version should 

> i

> > > ask

> > > > for from my server.

> > > >

> > > >              Himanshu

> > > >

> > > >  --- Jason Salas <jason@k...> wrote: > Hi

> > > > Himanshu,

> > > > >

> > > > > It looks like your server doesn't have the

> > > latest

> > > > > version of XMLHTTP.  Try

> > > > > using this instead:

> > > > >

> > > > > Set objXmlHttp 

> > > > > Server.CreateObject("Microsoft.XMLHTTP")

> > > > >

> > > > > This should do the trick.  :)

> > > > >

> > > > > HTH,

> > > > > Jason

> > > > >

> > > > >

> > > > > ----- Original Message -----

> > > > > From: "Himanshu Chaudhari"

> > > > > <himanshuchaudhari@y...>

> > > > > To: "ASP Web HowTo"

> <asp_web_howto@p...>

> > > > > Sent: Wednesday, December 05, 2001 7:32 PM

> > > > > Subject: [asp_web_howto] accessing xml

> > > > >

> > > > >

> > > > > >

> > > > > > I pass variable through XML component in

> ASP

> > > to

> > > > > other

> > > > > > site which works fine in my site.

> > > > > >

> > > > > >  but the same thing is done through other

> > > site(one

> > > > > of

> > > > > > the client) it is giving error.

> > > > > >

> > > > > > Server.CreateObject Failed

> > > > > > Invalid ProgID.

> > > > > >

> > > > > > I am using component :

> > > > > >

> > > > > > Set objXmlHttp 

> > > > > >

> Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > objXmlHttp.open "GET", str, false

> > > > > > objXmlHttp.send()

> > > > > > set objxmlhttp=nothing

> > > > > >

> > > > > >

> > > > > >

> > > > > >                        Himanshu

> > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

>

________________________________________________________________________

> > > > > > For Stock Quotes, Finance News, Insurance,

> Tax

> > > > > Planners, Mutual Funds...

> > > > > >                 Visit

> > > http://in.finance.yahoo.com/

> > > > > >

> > > > > > ---

> > > > > > You are currently subscribed to

> asp_web_howto

> > > as:

> > > > > jason@k...


> > > > > $subst('Email.Unsub')

> > > > > >

> > > > > >

> > > > >

> > > > >

> > > > > ---

> > > > > You are currently subscribed to

> asp_web_howto

> > > as:

> > > > > himanshuchaudhari@y...


> > > > > $subst('Email.Unsub')

> > > > >

> > > >

> > > >

> > >

> >

>

________________________________________________________________________

> > > > For Stock Quotes, Finance News, Insurance, Tax

> > > Planners, Mutual Funds...

> > > >                 Visit

> http://in.finance.yahoo.com/

> > > >

> > > > ---

> > > > You are currently subscribed to asp_web_howto

> as:

> > > jason@k...


> > > $subst('Email.Unsub')

> > > >

> > > >

> > >

> > >

> > > ---

> > > You are currently subscribed to asp_web_howto

> as:

> > > himanshuchaudhari@y...


> > > $subst('Email.Unsub')

> > >

> >

> >

>

________________________________________________________________________

> > For Stock Quotes, Finance News, Insurance, Tax

> Planners, Mutual Funds...

> >                 Visit http://in.finance.yahoo.com/

> >



> jason@k...


> $subst('Email.Unsub')

> >

> >

> 

> 



> himanshuchaudhari@y...

> 

=== message truncated === 



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #8 by "Jason Salas" <jason@k...> on Thu, 6 Dec 2001 15:28:39 +1000
Can you send your entire script?  Maybe on both pages?  I'll see if I can

get it to work...



Jason





----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Thursday, December 06, 2001 2:52 PM

Subject: [asp_web_howto] Re: accessing xml





> in the str  i am having query string which is storing

> the values taken from form fields.

> this is working in Response.redirect but tis passes

> control to other site.

>

>                         Himanshu

>

>

>  --- Jason Salas <jason@k...> wrote: > what value

> do you have for the variable "str"?  is

> > this a form field wherein

> > the user enters the URL of a remote site?  also,

> > what error is being

> > generated?

> >

> > jason

> >

> >

> > ----- Original Message -----

> > From: "Himanshu Chaudhari"

> > <himanshuchaudhari@y...>

> > To: "ASP Web HowTo" <asp_web_howto@p...>

> > Sent: Wednesday, December 05, 2001 10:44 PM

> > Subject: [asp_web_howto] Re: accessing xml

> >

> >

> > > it is running engine 5.1

> > > but my code is still not running and though it is

> > nt

> > > giving error in

> > > Set objXmlHttp

> > > =Server.CreateObject("Microsoft.XMLHTTP")

> > >

> > > but it is not yielding result.

> > >

> > >                     Himanshu

> > >

> > >  --- Jason Salas <jason@k...> wrote: > To

> > support

> > > XMLHTTP to need to be running at least

> > > > VBScript 5.1.  Try running

> > > > this ASP script on your server and see what you

> > get:

> > > >

> > > > <%

> > > > response.write "I am running Version " &

> > > > ScriptEngineMajorVersion & "." &

> > > > ScriptEngineMinorVersion

> > > > %>

> > > >

> > > > For the version of the XMLHTTP you initially

> > wanted

> > > > - Msxml2.ServerXMLHTTP -

> > > > you'll definetly need the latest.

> > > >

> > > > You could download the latest scripting engine

> > > > version (version 5.5) from:

> > > >

> > >

> >

> http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > > >

> > > >

> > > > jason

> > > >

> > > > ----- Original Message -----

> > > > From: "Himanshu Chaudhari"

> > > > <himanshuchaudhari@y...>

> > > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > > Sent: Wednesday, December 05, 2001 9:55 PM

> > > > Subject: [asp_web_howto] Re: accessing xml

> > > >

> > > >

> > > > > it is also not working. which version should

> > i

> > > > ask

> > > > > for from my server.

> > > > >

> > > > >              Himanshu

> > > > >

> > > > >  --- Jason Salas <jason@k...> wrote: > Hi

> > > > > Himanshu,

> > > > > >

> > > > > > It looks like your server doesn't have the

> > > > latest

> > > > > > version of XMLHTTP.  Try

> > > > > > using this instead:

> > > > > >

> > > > > > Set objXmlHttp 

> > > > > > Server.CreateObject("Microsoft.XMLHTTP")

> > > > > >

> > > > > > This should do the trick.  :)

> > > > > >

> > > > > > HTH,

> > > > > > Jason

> > > > > >

> > > > > >

> > > > > > ----- Original Message -----

> > > > > > From: "Himanshu Chaudhari"

> > > > > > <himanshuchaudhari@y...>

> > > > > > To: "ASP Web HowTo"

> > <asp_web_howto@p...>

> > > > > > Sent: Wednesday, December 05, 2001 7:32 PM

> > > > > > Subject: [asp_web_howto] accessing xml

> > > > > >

> > > > > >

> > > > > > >

> > > > > > > I pass variable through XML component in

> > ASP

> > > > to

> > > > > > other

> > > > > > > site which works fine in my site.

> > > > > > >

> > > > > > >  but the same thing is done through other

> > > > site(one

> > > > > > of

> > > > > > > the client) it is giving error.

> > > > > > >

> > > > > > > Server.CreateObject Failed

> > > > > > > Invalid ProgID.

> > > > > > >

> > > > > > > I am using component :

> > > > > > >

> > > > > > > Set objXmlHttp 

> > > > > > >

> > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > > objXmlHttp.open "GET", str, false

> > > > > > > objXmlHttp.send()

> > > > > > > set objxmlhttp=nothing

> > > > > > >

> > > > > > >

> > > > > > >

> > > > > > >                        Himanshu

> > > > > > >

> > > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

> ________________________________________________________________________

> > > > > > > For Stock Quotes, Finance News, Insurance,

> > Tax

> > > > > > Planners, Mutual Funds...

> > > > > > >                 Visit

> > > > http://in.finance.yahoo.com/

> > > > > > >

> > > > > > > ---

> > > > > > > You are currently subscribed to

> > asp_web_howto

> > > > as:

> > > > > > jason@k...


> > > > > > $subst('Email.Unsub')

> > > > > > >

> > > > > > >

> > > > > >

> > > > > >

> > > > > > ---

> > > > > > You are currently subscribed to

> > asp_web_howto

> > > > as:

> > > > > > himanshuchaudhari@y...


> > > > > > $subst('Email.Unsub')

> > > > > >

> > > > >

> > > > >

> > > >

> > >

> >

> ________________________________________________________________________

> > > > > For Stock Quotes, Finance News, Insurance, Tax

> > > > Planners, Mutual Funds...

> > > > >                 Visit

> > http://in.finance.yahoo.com/

> > > > >

> > > > > ---

> > > > > You are currently subscribed to asp_web_howto

> > as:

> > > > jason@k...


> > > > $subst('Email.Unsub')

> > > > >

> > > > >

> > > >

> > > >

> > > > ---

> > > > You are currently subscribed to asp_web_howto

> > as:

> > > > himanshuchaudhari@y...


> > > > $subst('Email.Unsub')

> > > >

> > >

> > >

> >

> ________________________________________________________________________

> > > For Stock Quotes, Finance News, Insurance, Tax

> > Planners, Mutual Funds...

> > >                 Visit http://in.finance.yahoo.com/

> > >



> > jason@k...


> > $subst('Email.Unsub')

> > >

> > >

> >

> >



> > himanshuchaudhari@y...

> >

> === message truncated ===

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub').

>



Message #9 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Fri, 7 Dec 2001 05:17:12 +0000 (GMT)
thanks jason now it is working 



             Himanshu



 --- Jason Salas <jason@k...> wrote: > Can you

send your entire script?  Maybe on both

> pages?  I'll see if I can

> get it to work...

> 

> Jason

> 

> 

> ----- Original Message -----

> From: "Himanshu Chaudhari"

> <himanshuchaudhari@y...>

> To: "ASP Web HowTo" <asp_web_howto@p...>

> Sent: Thursday, December 06, 2001 2:52 PM

> Subject: [asp_web_howto] Re: accessing xml

> 

> 

> > in the str  i am having query string which is

> storing

> > the values taken from form fields.

> > this is working in Response.redirect but tis

> passes

> > control to other site.

> >

> >                         Himanshu

> >

> >

> >  --- Jason Salas <jason@k...> wrote: > what

> value

> > do you have for the variable "str"?  is

> > > this a form field wherein

> > > the user enters the URL of a remote site?  also,

> > > what error is being

> > > generated?

> > >

> > > jason

> > >

> > >

> > > ----- Original Message -----

> > > From: "Himanshu Chaudhari"

> > > <himanshuchaudhari@y...>

> > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > Sent: Wednesday, December 05, 2001 10:44 PM

> > > Subject: [asp_web_howto] Re: accessing xml

> > >

> > >

> > > > it is running engine 5.1

> > > > but my code is still not running and though it

> is

> > > nt

> > > > giving error in

> > > > Set objXmlHttp

> > > > =Server.CreateObject("Microsoft.XMLHTTP")

> > > >

> > > > but it is not yielding result.

> > > >

> > > >                     Himanshu

> > > >

> > > >  --- Jason Salas <jason@k...> wrote: > To

> > > support

> > > > XMLHTTP to need to be running at least

> > > > > VBScript 5.1.  Try running

> > > > > this ASP script on your server and see what

> you

> > > get:

> > > > >

> > > > > <%

> > > > > response.write "I am running Version " &

> > > > > ScriptEngineMajorVersion & "." &

> > > > > ScriptEngineMinorVersion

> > > > > %>

> > > > >

> > > > > For the version of the XMLHTTP you initially

> > > wanted

> > > > > - Msxml2.ServerXMLHTTP -

> > > > > you'll definetly need the latest.

> > > > >

> > > > > You could download the latest scripting

> engine

> > > > > version (version 5.5) from:

> > > > >

> > > >

> > >

> >

>

http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > > > >

> > > > >

> > > > > jason

> > > > >

> > > > > ----- Original Message -----

> > > > > From: "Himanshu Chaudhari"

> > > > > <himanshuchaudhari@y...>

> > > > > To: "ASP Web HowTo"

> <asp_web_howto@p...>

> > > > > Sent: Wednesday, December 05, 2001 9:55 PM

> > > > > Subject: [asp_web_howto] Re: accessing xml

> > > > >

> > > > >

> > > > > > it is also not working. which version

> should

> > > i

> > > > > ask

> > > > > > for from my server.

> > > > > >

> > > > > >              Himanshu

> > > > > >

> > > > > >  --- Jason Salas <jason@k...> wrote: >

> Hi

> > > > > > Himanshu,

> > > > > > >

> > > > > > > It looks like your server doesn't have

> the

> > > > > latest

> > > > > > > version of XMLHTTP.  Try

> > > > > > > using this instead:

> > > > > > >

> > > > > > > Set objXmlHttp 

> > > > > > > Server.CreateObject("Microsoft.XMLHTTP")

> > > > > > >

> > > > > > > This should do the trick.  :)

> > > > > > >

> > > > > > > HTH,

> > > > > > > Jason

> > > > > > >

> > > > > > >

> > > > > > > ----- Original Message -----

> > > > > > > From: "Himanshu Chaudhari"

> > > > > > > <himanshuchaudhari@y...>

> > > > > > > To: "ASP Web HowTo"

> > > <asp_web_howto@p...>

> > > > > > > Sent: Wednesday, December 05, 2001 7:32

> PM

> > > > > > > Subject: [asp_web_howto] accessing xml

> > > > > > >

> > > > > > >

> > > > > > > >

> > > > > > > > I pass variable through XML component

> in

> > > ASP

> > > > > to

> > > > > > > other

> > > > > > > > site which works fine in my site.

> > > > > > > >

> > > > > > > >  but the same thing is done through

> other

> > > > > site(one

> > > > > > > of

> > > > > > > > the client) it is giving error.

> > > > > > > >

> > > > > > > > Server.CreateObject Failed

> > > > > > > > Invalid ProgID.

> > > > > > > >

> > > > > > > > I am using component :

> > > > > > > >

> > > > > > > > Set objXmlHttp 

> > > > > > > >

> > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > > > objXmlHttp.open "GET", str, false

> > > > > > > > objXmlHttp.send()

> > > > > > > > set objxmlhttp=nothing

> > > > > > > >

> > > > > > > >

> > > > > > > >

> > > > > > > >                        Himanshu

> > > > > > > >

> > > > > > > >

> > > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

>

________________________________________________________________________

> > > > > > > > For Stock Quotes, Finance News,

> Insurance,

> > > Tax

> > > > > > > Planners, Mutual Funds...

> > > > > > > >                 Visit

> > > > > http://in.finance.yahoo.com/

> > > > > > > >

> > > > > > > > ---

> > > > > > > > You are currently subscribed to

> > > asp_web_howto

> > > > > as:

> > > > > > > jason@k...


> > > > > > > $subst('Email.Unsub')

> > > > > > > >

> > > > > > > >

> > > > > > >

> > > > > > >

> > > > > > > ---

> > > > > > > You are currently subscribed to

> > > asp_web_howto

> > > > > as:

> > > > > > > himanshuchaudhari@y...


> > > > > > > $subst('Email.Unsub')

> > > > > > >

> > > > > >

> > > > > >

> > > > >

> > > >

> 

=== message truncated === 



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #10 by "Jason Salas" <jason@k...> on Fri, 7 Dec 2001 16:11:12 +1000
Good to know...what did you do different?  Can you send me the URL to

jason@k... so that I could see your script?



Thanks...and congratulations!

Jason





----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Friday, December 07, 2001 3:17 PM

Subject: [asp_web_howto] Re: accessing xml





> thanks jason now it is working

>

>              Himanshu

>

>  --- Jason Salas <jason@k...> wrote: > Can you

> send your entire script?  Maybe on both

> > pages?  I'll see if I can

> > get it to work...

> >

> > Jason

> >

> >

> > ----- Original Message -----

> > From: "Himanshu Chaudhari"

> > <himanshuchaudhari@y...>

> > To: "ASP Web HowTo" <asp_web_howto@p...>

> > Sent: Thursday, December 06, 2001 2:52 PM

> > Subject: [asp_web_howto] Re: accessing xml

> >

> >

> > > in the str  i am having query string which is

> > storing

> > > the values taken from form fields.

> > > this is working in Response.redirect but tis

> > passes

> > > control to other site.

> > >

> > >                         Himanshu

> > >

> > >

> > >  --- Jason Salas <jason@k...> wrote: > what

> > value

> > > do you have for the variable "str"?  is

> > > > this a form field wherein

> > > > the user enters the URL of a remote site?  also,

> > > > what error is being

> > > > generated?

> > > >

> > > > jason

> > > >

> > > >

> > > > ----- Original Message -----

> > > > From: "Himanshu Chaudhari"

> > > > <himanshuchaudhari@y...>

> > > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > > Sent: Wednesday, December 05, 2001 10:44 PM

> > > > Subject: [asp_web_howto] Re: accessing xml

> > > >

> > > >

> > > > > it is running engine 5.1

> > > > > but my code is still not running and though it

> > is

> > > > nt

> > > > > giving error in

> > > > > Set objXmlHttp

> > > > > =Server.CreateObject("Microsoft.XMLHTTP")

> > > > >

> > > > > but it is not yielding result.

> > > > >

> > > > >                     Himanshu

> > > > >

> > > > >  --- Jason Salas <jason@k...> wrote: > To

> > > > support

> > > > > XMLHTTP to need to be running at least

> > > > > > VBScript 5.1.  Try running

> > > > > > this ASP script on your server and see what

> > you

> > > > get:

> > > > > >

> > > > > > <%

> > > > > > response.write "I am running Version " &

> > > > > > ScriptEngineMajorVersion & "." &

> > > > > > ScriptEngineMinorVersion

> > > > > > %>

> > > > > >

> > > > > > For the version of the XMLHTTP you initially

> > > > wanted

> > > > > > - Msxml2.ServerXMLHTTP -

> > > > > > you'll definetly need the latest.

> > > > > >

> > > > > > You could download the latest scripting

> > engine

> > > > > > version (version 5.5) from:

> > > > > >

> > > > >

> > > >

> > >

> >

> http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > > > > >

> > > > > >

> > > > > > jason

> > > > > >

> > > > > > ----- Original Message -----

> > > > > > From: "Himanshu Chaudhari"

> > > > > > <himanshuchaudhari@y...>

> > > > > > To: "ASP Web HowTo"

> > <asp_web_howto@p...>

> > > > > > Sent: Wednesday, December 05, 2001 9:55 PM

> > > > > > Subject: [asp_web_howto] Re: accessing xml

> > > > > >

> > > > > >

> > > > > > > it is also not working. which version

> > should

> > > > i

> > > > > > ask

> > > > > > > for from my server.

> > > > > > >

> > > > > > >              Himanshu

> > > > > > >

> > > > > > >  --- Jason Salas <jason@k...> wrote: >

> > Hi

> > > > > > > Himanshu,

> > > > > > > >

> > > > > > > > It looks like your server doesn't have

> > the

> > > > > > latest

> > > > > > > > version of XMLHTTP.  Try

> > > > > > > > using this instead:

> > > > > > > >

> > > > > > > > Set objXmlHttp 

> > > > > > > > Server.CreateObject("Microsoft.XMLHTTP")

> > > > > > > >

> > > > > > > > This should do the trick.  :)

> > > > > > > >

> > > > > > > > HTH,

> > > > > > > > Jason

> > > > > > > >

> > > > > > > >

> > > > > > > > ----- Original Message -----

> > > > > > > > From: "Himanshu Chaudhari"

> > > > > > > > <himanshuchaudhari@y...>

> > > > > > > > To: "ASP Web HowTo"

> > > > <asp_web_howto@p...>

> > > > > > > > Sent: Wednesday, December 05, 2001 7:32

> > PM

> > > > > > > > Subject: [asp_web_howto] accessing xml

> > > > > > > >

> > > > > > > >

> > > > > > > > >

> > > > > > > > > I pass variable through XML component

> > in

> > > > ASP

> > > > > > to

> > > > > > > > other

> > > > > > > > > site which works fine in my site.

> > > > > > > > >

> > > > > > > > >  but the same thing is done through

> > other

> > > > > > site(one

> > > > > > > > of

> > > > > > > > > the client) it is giving error.

> > > > > > > > >

> > > > > > > > > Server.CreateObject Failed

> > > > > > > > > Invalid ProgID.

> > > > > > > > >

> > > > > > > > > I am using component :

> > > > > > > > >

> > > > > > > > > Set objXmlHttp 

> > > > > > > > >

> > > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > > > > objXmlHttp.open "GET", str, false

> > > > > > > > > objXmlHttp.send()

> > > > > > > > > set objxmlhttp=nothing

> > > > > > > > >

> > > > > > > > >

> > > > > > > > >

> > > > > > > > >                        Himanshu

> > > > > > > > >

> > > > > > > > >

> > > > > > > >

> > > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

> ________________________________________________________________________

> > > > > > > > > For Stock Quotes, Finance News,

> > Insurance,

> > > > Tax

> > > > > > > > Planners, Mutual Funds...

> > > > > > > > >                 Visit

> > > > > > http://in.finance.yahoo.com/

> > > > > > > > >

> > > > > > > > > ---

> > > > > > > > > You are currently subscribed to

> > > > asp_web_howto

> > > > > > as:

> > > > > > > > jason@k...


> > > > > > > > $subst('Email.Unsub')

> > > > > > > > >

> > > > > > > > >

> > > > > > > >

> > > > > > > >

> > > > > > > > ---

> > > > > > > > You are currently subscribed to

> > > > asp_web_howto

> > > > > > as:

> > > > > > > > himanshuchaudhari@y...


> > > > > > > > $subst('Email.Unsub')

> > > > > > > >

> > > > > > >

> > > > > > >

> > > > > >

> > > > >

> >

> === message truncated ===

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub').

>



Message #11 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Fri, 7 Dec 2001 10:35:23 +0000 (GMT)
www.handygo.com .this is sms based site.



 How can I make my vbversion 5.5 if it is 5.1



          Himanshu



 --- Jason Salas <jason@k...> wrote: > Good to

know...what did you do different?  Can you

> send me the URL to

> jason@k... so that I could see your script?

> 

> Thanks...and congratulations!

> Jason

> 

> 

> ----- Original Message -----

> From: "Himanshu Chaudhari"

> <himanshuchaudhari@y...>

> To: "ASP Web HowTo" <asp_web_howto@p...>

> Sent: Friday, December 07, 2001 3:17 PM

> Subject: [asp_web_howto] Re: accessing xml

> 

> 

> > thanks jason now it is working

> >

> >              Himanshu

> >

> >  --- Jason Salas <jason@k...> wrote: > Can you

> > send your entire script?  Maybe on both

> > > pages?  I'll see if I can

> > > get it to work...

> > >

> > > Jason

> > >

> > >

> > > ----- Original Message -----

> > > From: "Himanshu Chaudhari"

> > > <himanshuchaudhari@y...>

> > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > Sent: Thursday, December 06, 2001 2:52 PM

> > > Subject: [asp_web_howto] Re: accessing xml

> > >

> > >

> > > > in the str  i am having query string which is

> > > storing

> > > > the values taken from form fields.

> > > > this is working in Response.redirect but tis

> > > passes

> > > > control to other site.

> > > >

> > > >                         Himanshu

> > > >

> > > >

> > > >  --- Jason Salas <jason@k...> wrote: >

> what

> > > value

> > > > do you have for the variable "str"?  is

> > > > > this a form field wherein

> > > > > the user enters the URL of a remote site? 

> also,

> > > > > what error is being

> > > > > generated?

> > > > >

> > > > > jason

> > > > >

> > > > >

> > > > > ----- Original Message -----

> > > > > From: "Himanshu Chaudhari"

> > > > > <himanshuchaudhari@y...>

> > > > > To: "ASP Web HowTo"

> <asp_web_howto@p...>

> > > > > Sent: Wednesday, December 05, 2001 10:44 PM

> > > > > Subject: [asp_web_howto] Re: accessing xml

> > > > >

> > > > >

> > > > > > it is running engine 5.1

> > > > > > but my code is still not running and

> though it

> > > is

> > > > > nt

> > > > > > giving error in

> > > > > > Set objXmlHttp

> > > > > > =Server.CreateObject("Microsoft.XMLHTTP")

> > > > > >

> > > > > > but it is not yielding result.

> > > > > >

> > > > > >                     Himanshu

> > > > > >

> > > > > >  --- Jason Salas <jason@k...> wrote: >

> To

> > > > > support

> > > > > > XMLHTTP to need to be running at least

> > > > > > > VBScript 5.1.  Try running

> > > > > > > this ASP script on your server and see

> what

> > > you

> > > > > get:

> > > > > > >

> > > > > > > <%

> > > > > > > response.write "I am running Version " &

> > > > > > > ScriptEngineMajorVersion & "." &

> > > > > > > ScriptEngineMinorVersion

> > > > > > > %>

> > > > > > >

> > > > > > > For the version of the XMLHTTP you

> initially

> > > > > wanted

> > > > > > > - Msxml2.ServerXMLHTTP -

> > > > > > > you'll definetly need the latest.

> > > > > > >

> > > > > > > You could download the latest scripting

> > > engine

> > > > > > > version (version 5.5) from:

> > > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

>

http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > > > > > >

> > > > > > >

> > > > > > > jason

> > > > > > >

> > > > > > > ----- Original Message -----

> > > > > > > From: "Himanshu Chaudhari"

> > > > > > > <himanshuchaudhari@y...>

> > > > > > > To: "ASP Web HowTo"

> > > <asp_web_howto@p...>

> > > > > > > Sent: Wednesday, December 05, 2001 9:55

> PM

> > > > > > > Subject: [asp_web_howto] Re: accessing

> xml

> > > > > > >

> > > > > > >

> > > > > > > > it is also not working. which version

> > > should

> > > > > i

> > > > > > > ask

> > > > > > > > for from my server.

> > > > > > > >

> > > > > > > >              Himanshu

> > > > > > > >

> > > > > > > >  --- Jason Salas <jason@k...>

> wrote: >

> > > Hi

> > > > > > > > Himanshu,

> > > > > > > > >

> > > > > > > > > It looks like your server doesn't

> have

> > > the

> > > > > > > latest

> > > > > > > > > version of XMLHTTP.  Try

> > > > > > > > > using this instead:

> > > > > > > > >

> > > > > > > > > Set objXmlHttp 

> > > > > > > > >

> Server.CreateObject("Microsoft.XMLHTTP")

> > > > > > > > >

> > > > > > > > > This should do the trick.  :)

> > > > > > > > >

> > > > > > > > > HTH,

> > > > > > > > > Jason

> > > > > > > > >

> > > > > > > > >

> > > > > > > > > ----- Original Message -----

> > > > > > > > > From: "Himanshu Chaudhari"

> > > > > > > > > <himanshuchaudhari@y...>

> > > > > > > > > To: "ASP Web HowTo"

> > > > > <asp_web_howto@p...>

> > > > > > > > > Sent: Wednesday, December 05, 2001

> 7:32

> > > PM

> > > > > > > > > Subject: [asp_web_howto] accessing

> xml

> > > > > > > > >

> > > > > > > > >

> > > > > > > > > >

> > > > > > > > > > I pass variable through XML

> component

> > > in

> > > > > ASP

> > > > > > > to

> > > > > > > > > other

> > > > > > > > > > site which works fine in my site.

> > > > > > > > > >

> > > > > > > > > >  but the same thing is done

> through

> > > other

> > > > > > > site(one

> > > > > > > > > of

> > > > > > > > > > the client) it is giving error.

> > > > > > > > > >

> > > > > > > > > > Server.CreateObject Failed

> > > > > > > > > > Invalid ProgID.

> > > > > > > > > >

> > > > > > > > > > I am using component :

> > > > > > > > > >

> > > > > > > > > > Set objXmlHttp 

> > > > > > > > > >

> > > > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > > > > > objXmlHttp.open "GET", str, false

> > > > > > > > > > objXmlHttp.send()

> > > > > > > > > > set objxmlhttp=nothing

> > > > > > > > > >

> > > > > > > > > >

> > > > > > > > > >

> > > > > > > > > >                        Himanshu

> 

=== message truncated === 



________________________________________________________________________

For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

                Visit http://in.finance.yahoo.com/

Message #12 by "Jason Salas" <jason@k...> on Sat, 8 Dec 2001 22:07:45 +1000
You can download the newest version of VBScript engine at:

http://www.microsoft.com/msdownload/vbscript/scripting.asp



Jason





----- Original Message -----

From: "Himanshu Chaudhari" <himanshuchaudhari@y...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Friday, December 07, 2001 8:35 PM

Subject: [asp_web_howto] Re: accessing xml





> www.handygo.com .this is sms based site.

>

>  How can I make my vbversion 5.5 if it is 5.1

>

>           Himanshu

>

>  --- Jason Salas <jason@k...> wrote: > Good to

> know...what did you do different?  Can you

> > send me the URL to

> > jason@k... so that I could see your script?

> >

> > Thanks...and congratulations!

> > Jason

> >

> >

> > ----- Original Message -----

> > From: "Himanshu Chaudhari"

> > <himanshuchaudhari@y...>

> > To: "ASP Web HowTo" <asp_web_howto@p...>

> > Sent: Friday, December 07, 2001 3:17 PM

> > Subject: [asp_web_howto] Re: accessing xml

> >

> >

> > > thanks jason now it is working

> > >

> > >              Himanshu

> > >

> > >  --- Jason Salas <jason@k...> wrote: > Can you

> > > send your entire script?  Maybe on both

> > > > pages?  I'll see if I can

> > > > get it to work...

> > > >

> > > > Jason

> > > >

> > > >

> > > > ----- Original Message -----

> > > > From: "Himanshu Chaudhari"

> > > > <himanshuchaudhari@y...>

> > > > To: "ASP Web HowTo" <asp_web_howto@p...>

> > > > Sent: Thursday, December 06, 2001 2:52 PM

> > > > Subject: [asp_web_howto] Re: accessing xml

> > > >

> > > >

> > > > > in the str  i am having query string which is

> > > > storing

> > > > > the values taken from form fields.

> > > > > this is working in Response.redirect but tis

> > > > passes

> > > > > control to other site.

> > > > >

> > > > >                         Himanshu

> > > > >

> > > > >

> > > > >  --- Jason Salas <jason@k...> wrote: >

> > what

> > > > value

> > > > > do you have for the variable "str"?  is

> > > > > > this a form field wherein

> > > > > > the user enters the URL of a remote site?

> > also,

> > > > > > what error is being

> > > > > > generated?

> > > > > >

> > > > > > jason

> > > > > >

> > > > > >

> > > > > > ----- Original Message -----

> > > > > > From: "Himanshu Chaudhari"

> > > > > > <himanshuchaudhari@y...>

> > > > > > To: "ASP Web HowTo"

> > <asp_web_howto@p...>

> > > > > > Sent: Wednesday, December 05, 2001 10:44 PM

> > > > > > Subject: [asp_web_howto] Re: accessing xml

> > > > > >

> > > > > >

> > > > > > > it is running engine 5.1

> > > > > > > but my code is still not running and

> > though it

> > > > is

> > > > > > nt

> > > > > > > giving error in

> > > > > > > Set objXmlHttp

> > > > > > > =Server.CreateObject("Microsoft.XMLHTTP")

> > > > > > >

> > > > > > > but it is not yielding result.

> > > > > > >

> > > > > > >                     Himanshu

> > > > > > >

> > > > > > >  --- Jason Salas <jason@k...> wrote: >

> > To

> > > > > > support

> > > > > > > XMLHTTP to need to be running at least

> > > > > > > > VBScript 5.1.  Try running

> > > > > > > > this ASP script on your server and see

> > what

> > > > you

> > > > > > get:

> > > > > > > >

> > > > > > > > <%

> > > > > > > > response.write "I am running Version " &

> > > > > > > > ScriptEngineMajorVersion & "." &

> > > > > > > > ScriptEngineMinorVersion

> > > > > > > > %>

> > > > > > > >

> > > > > > > > For the version of the XMLHTTP you

> > initially

> > > > > > wanted

> > > > > > > > - Msxml2.ServerXMLHTTP -

> > > > > > > > you'll definetly need the latest.

> > > > > > > >

> > > > > > > > You could download the latest scripting

> > > > engine

> > > > > > > > version (version 5.5) from:

> > > > > > > >

> > > > > > >

> > > > > >

> > > > >

> > > >

> > >

> >

> http://www.microsoft.com/msdownload/vbscript/scripting.asp

> > > > > > > >

> > > > > > > >

> > > > > > > > jason

> > > > > > > >

> > > > > > > > ----- Original Message -----

> > > > > > > > From: "Himanshu Chaudhari"

> > > > > > > > <himanshuchaudhari@y...>

> > > > > > > > To: "ASP Web HowTo"

> > > > <asp_web_howto@p...>

> > > > > > > > Sent: Wednesday, December 05, 2001 9:55

> > PM

> > > > > > > > Subject: [asp_web_howto] Re: accessing

> > xml

> > > > > > > >

> > > > > > > >

> > > > > > > > > it is also not working. which version

> > > > should

> > > > > > i

> > > > > > > > ask

> > > > > > > > > for from my server.

> > > > > > > > >

> > > > > > > > >              Himanshu

> > > > > > > > >

> > > > > > > > >  --- Jason Salas <jason@k...>

> > wrote: >

> > > > Hi

> > > > > > > > > Himanshu,

> > > > > > > > > >

> > > > > > > > > > It looks like your server doesn't

> > have

> > > > the

> > > > > > > > latest

> > > > > > > > > > version of XMLHTTP.  Try

> > > > > > > > > > using this instead:

> > > > > > > > > >

> > > > > > > > > > Set objXmlHttp 

> > > > > > > > > >

> > Server.CreateObject("Microsoft.XMLHTTP")

> > > > > > > > > >

> > > > > > > > > > This should do the trick.  :)

> > > > > > > > > >

> > > > > > > > > > HTH,

> > > > > > > > > > Jason

> > > > > > > > > >

> > > > > > > > > >

> > > > > > > > > > ----- Original Message -----

> > > > > > > > > > From: "Himanshu Chaudhari"

> > > > > > > > > > <himanshuchaudhari@y...>

> > > > > > > > > > To: "ASP Web HowTo"

> > > > > > <asp_web_howto@p...>

> > > > > > > > > > Sent: Wednesday, December 05, 2001

> > 7:32

> > > > PM

> > > > > > > > > > Subject: [asp_web_howto] accessing

> > xml

> > > > > > > > > >

> > > > > > > > > >

> > > > > > > > > > >

> > > > > > > > > > > I pass variable through XML

> > component

> > > > in

> > > > > > ASP

> > > > > > > > to

> > > > > > > > > > other

> > > > > > > > > > > site which works fine in my site.

> > > > > > > > > > >

> > > > > > > > > > >  but the same thing is done

> > through

> > > > other

> > > > > > > > site(one

> > > > > > > > > > of

> > > > > > > > > > > the client) it is giving error.

> > > > > > > > > > >

> > > > > > > > > > > Server.CreateObject Failed

> > > > > > > > > > > Invalid ProgID.

> > > > > > > > > > >

> > > > > > > > > > > I am using component :

> > > > > > > > > > >

> > > > > > > > > > > Set objXmlHttp 

> > > > > > > > > > >

> > > > > > Server.CreateObject("Msxml2.ServerXMLHTTP")

> > > > > > > > > > > objXmlHttp.open "GET", str, false

> > > > > > > > > > > objXmlHttp.send()

> > > > > > > > > > > set objxmlhttp=nothing

> > > > > > > > > > >

> > > > > > > > > > >

> > > > > > > > > > >

> > > > > > > > > > >                        Himanshu

> >

> === message truncated ===

>

> ________________________________________________________________________

> For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...

>                 Visit http://in.finance.yahoo.com/

>




$subst('Email.Unsub').

>




  Return to Index