dbTalk Databases Forums  

oening web page

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss oening web page in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Neil Jarman
 
Posts: n/a

Default oening web page - 04-20-2005 , 05:56 AM






Hi,

I need to open a web page - so that I can mail a group of users
automatically - after a DTS has completed.

Is there a way of getting this done?

Thanks for any help,

NEIL



Reply With Quote
  #2  
Old   
Neil Jarman
 
Posts: n/a

Default Re: oening web page - 04-20-2005 , 09:00 AM






Hi Guys,

Thanks, I sorted it myself!











"Neil Jarman" <neil (AT) tNOiSPAMvPLEASEy (DOT) co.uk> wrote

Quote:
Hi,

I need to open a web page - so that I can mail a group of users
automatically - after a DTS has completed.

Is there a way of getting this done?

Thanks for any help,

NEIL




Reply With Quote
  #3  
Old   
Tarren
 
Posts: n/a

Default Re: oening web page - 04-21-2005 , 10:35 AM



Hi:

How were you able to do this? I am trying to figure out the same thing.

Thanks


"Neil Jarman" <neil (AT) tNOiSPAMvPLEASEy (DOT) co.uk> wrote

Quote:
Hi,

I need to open a web page - so that I can mail a group of users
automatically - after a DTS has completed.

Is there a way of getting this done?

Thanks for any help,

NEIL




Reply With Quote
  #4  
Old   
Darren Green
 
Posts: n/a

Default Re: oening web page - 04-26-2005 , 02:01 AM



How about an ActiveX Script Task that calls a COM object capable of
making the Http request for you. There's a few around but I normally use
ServerXmlHTTP

A quick example-

Dim xmlHTTP
Dim sURL

sURL = "http://someotherserver/respond.asp?Param1=" &
DTSGlobalVariables("MyVar").Value

Set xmlHTTP = CreateObject ("MSXML2.ServerXMLHTTP.4.0")
xmlHTTP.open "GET",, False
xmlHTTP.send ()
MsgBox xmlHTTP.responseXML.xml



Darren Green
http://www.sqldts.com
http://www.sqlis.com

"Tarren" <noemailplease (AT) thanks (DOT) com> wrote

Quote:
Hi:

How were you able to do this? I am trying to figure out the same thing.

Thanks


"Neil Jarman" <neil (AT) tNOiSPAMvPLEASEy (DOT) co.uk> wrote in message
news:d45ccc$bgp$1$8300dec7 (AT) news (DOT) demon.co.uk...
Hi,

I need to open a web page - so that I can mail a group of users
automatically - after a DTS has completed.

Is there a way of getting this done?

Thanks for any help,

NEIL






Reply With Quote
  #5  
Old   
Neil Jarman
 
Posts: n/a

Default Re: oening web page - 05-04-2005 , 04:19 AM



Hi Tarren,

I wrote a simple VB application which opened the required web page, then
waited a few seconds and then quit.

I called this from EM using a Execute Process task which I then scheduled.
It works perfectly!

If you don't have VB, mail me and I'll send you the necessary app and dll.

Neil

Quote:
Hi:

How were you able to do this? I am trying to figure out the same thing.

Thanks



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.