Hi, pals!

I'm trying to use a VB application to execute XML requests thru HTTP. The
sample code follows:

------------------------------------------------------------------
Dim HttpReq As New MSXML2.ServerXMLHTTP

HttpReq...
HttpReq.Open "GET", "http://myserver/test.asp" , False
------------------------------------------------------------------
The 'HttpReq.Open' method always execute the request using the TCP port
80. But I need to execute it requesting in other ports. How can I do it???
Is it possible?

I could not find any method or property capable to set this behavior on.

Thanks in advance,

Filipo