|
 |
asp_web_howto thread: Call JSP or Servlet page from ASP Page
Message #1 by Patrick Low Sie Faat <patrick.low@k...> on Thu, 13 Dec 2001 11:35:13 +0800
|
|
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C18387.2C55D210
Content-Type: text/plain;
charset="windows-1252"
Hi Guys,
Does anyone know how to call a JSP page or Servlet page by passing value to
it, And then continue with the rest of the ASP statement.
example: -
--ASP statement 1
--call Jsp page with value pass over.
--ASP statement 2
--call Servlet page with value pass over.
--ASP statement 3.
--done (write to client).
Thank you,
Patrick Low.
Privileged and or confidential information may be contained in this e-mail.
If you are not the intended recipient, you are hereby notified that any use,
dissemination, copying or retention of this e-mail and or its contents
herein is strictly prohibited.
If you received this e-mail in error, please delete this e-mail permanently
from your system, and notify the sender.
Message #2 by "Ken Schaefer" <ken@a...> on Thu, 13 Dec 2001 16:19:01 +1100
|
|
Use a HTTP component? Microsft ServerXMLHTTP for example...
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Patrick Low Sie Faat" <patrick.low@k...>
Subject: [asp_web_howto] Call JSP or Servlet page from ASP Page
: Hi Guys,
:
: Does anyone know how to call a JSP page or Servlet page by passing value
to
: it, And then continue with the rest of the ASP statement.
:
: example: -
:
: --ASP statement 1
: --call Jsp page with value pass over.
: --ASP statement 2
: --call Servlet page with value pass over.
: --ASP statement 3.
: --done (write to client).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #3 by Patrick Low Sie Faat <patrick.low@k...> on Thu, 13 Dec 2001 13:24:28 +0800
|
|
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C18396.6F702C80
Content-Type: text/plain;
charset="windows-1252"
Hi Ken,
Any example?
I cannot find the component. It this a server component or a client
component?
Thank you,
Patrick Low
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: 13 December, 2001 1:19 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Call JSP or Servlet page from ASP Page
Use a HTTP component? Microsft ServerXMLHTTP for example...
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Patrick Low Sie Faat" <patrick.low@k...>
Subject: [asp_web_howto] Call JSP or Servlet page from ASP Page
: Hi Guys,
:
: Does anyone know how to call a JSP page or Servlet page by passing value
to
: it, And then continue with the rest of the ASP statement.
:
: example: -
:
: --ASP statement 1
: --call Jsp page with value pass over.
: --ASP statement 2
: --call Servlet page with value pass over.
: --ASP statement 3.
: --done (write to client).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$subst('Email.Unsub').
Privileged and or confidential information may be contained in this e-mail.
If you are not the intended recipient, you are hereby notified that any use,
dissemination, copying or retention of this e-mail and or its contents
herein is strictly prohibited.
If you received this e-mail in error, please delete this e-mail permanently
from your system, and notify the sender.
Message #4 by =?iso-8859-1?q?Himanshu=20Chaudhari?= <himanshuchaudhari@y...> on Thu, 13 Dec 2001 05:30:29 +0000 (GMT)
|
|
str="http://www.abc.com?id=id"
Set objXmlHttp
Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open "GET", str, false
objXmlHttp.send()
set objxmlhttp=nothing
U can use this server object
Himanshu
--- Patrick Low Sie Faat
<patrick.low@k...> wrote: > Hi Ken,
>
> Any example?
> I cannot find the component. It this a server
> component or a client
> component?
>
> Thank you,
> Patrick Low
>
> -----Original Message-----
> From: Ken Schaefer [mailto:ken@a...]
> Sent: 13 December, 2001 1:19 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] Re: Call JSP or Servlet
> page from ASP Page
>
> Use a HTTP component? Microsft ServerXMLHTTP for
> example...
>
> Cheers
> Ken
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> From: "Patrick Low Sie Faat"
> <patrick.low@k...>
> Subject: [asp_web_howto] Call JSP or Servlet page
> from ASP Page
>
>
> : Hi Guys,
> :
> : Does anyone know how to call a JSP page or Servlet
> page by passing value
> to
> : it, And then continue with the rest of the ASP
> statement.
> :
> : example: -
> :
> : --ASP statement 1
> : --call Jsp page with value pass over.
> : --ASP statement 2
> : --call Servlet page with value pass over.
> : --ASP statement 3.
> : --done (write to client).
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
>
> $subst('Email.Unsub').
>
>
>
> Privileged and or confidential information may be
> contained in this e-mail.
> If you are not the intended recipient, you are
> hereby notified that any use,
> dissemination, copying or retention of this e-mail
> and or its contents
> herein is strictly prohibited.
>
> If you received this e-mail in error, please delete
> this e-mail permanently
> from your system, and notify the sender.
>
>
>
> $subst('Email.Unsub').
>
________________________________________________________________________
For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds...
Visit http://in.finance.yahoo.com/
Message #5 by "Ken Schaefer" <ken@a...> on Thu, 13 Dec 2001 22:49:50 +1100
|
|
http://www.google.com/search?q=Microsoft+ServerXMLHTTP
has the following as the 2nd link
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q290761
Frequently Asked Quesionts about ServerXMLHTTP
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Patrick Low Sie Faat" <patrick.low@k...>
Subject: [asp_web_howto] Re: Call JSP or Servlet page from ASP Page
: Any example?
: I cannot find the component. It this a server component or a client
: component?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
 |