473,657 Members | 2,453 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Internet transfer from behind a proxy

Hi

Does anyone have an example of using the Internet Transfer Control from
behind a proxy server on port 8080?

Thanks

Regards
Nov 12 '05 #1
5 5358
On Wed, 24 Sep 2003 21:43:25 +0100 in comp.databases. ms-access, "John"
<Jo**@nospam.in fovis.co.uk> wrote:
Hi

Does anyone have an example of using the Internet Transfer Control from
behind a proxy server on port 8080?


I assume you mean for FTP?
May depend on the proxy/firewall, some only allow read-only access for
FTP. Some proxies that support ftp will take the address as the ip
address of the proxy server and the username in the form of
<username>@<ftp serveraddress>

--
A)bort, R)etry, I)nfluence with large hammer.
Nov 12 '05 #2
Hi

I am using the execute method to post some data to a website. The problem is
that since I am behind ISA server the internet
transfer control does not want to work. The work around is to use
"Proxy-Connection: Keep-Alive" accordingly to this MS article;
http://support.Microsoft.com/default...b;en-us;254396. So this is
what I am trying to do, except I don't know the correct syntax. Is any of
the following any good?

objInet.Execute "http://wwww.mysite.com ", "POST", "Some Data",
"Content-Type: application/x-www-form-urlencoded Proxy-Connection:
Keep-Alive" & vbCrLf

OR

objInet.Execute "http://wwww.mysite.com ", "POST", "Some Data",
"Content-Type: application/x-www-form-urlencoded, Proxy-Connection:
Keep-Alive" & vbCrLf

OR

objInet.Execute "http://wwww.mysite.com ", "POST", "Some Data",
"Content-Type: application/x-www-form-urlencoded Proxy-Connection:" & vbCrLf
& "Keep-Alive" & vbCrLf

objInet is a reference to the internet transfer control.

Thanks

Regards
"Trevor Best" <bouncer@localh ost> wrote in message
news:16******** *************** *********@4ax.c om...
On Wed, 24 Sep 2003 21:43:25 +0100 in comp.databases. ms-access, "John"
<Jo**@nospam.in fovis.co.uk> wrote:
Hi

Does anyone have an example of using the Internet Transfer Control from
behind a proxy server on port 8080?


I assume you mean for FTP?
May depend on the proxy/firewall, some only allow read-only access for
FTP. Some proxies that support ftp will take the address as the ip
address of the proxy server and the username in the form of
<username>@<ftp serveraddress>

--
A)bort, R)etry, I)nfluence with large hammer.

Nov 12 '05 #3
On Thu, 25 Sep 2003 22:14:44 +0100 in comp.databases. ms-access, "John"
<Jo**@nospam.in fovis.co.uk> wrote:
Hi

I am using the execute method to post some data to a website. The problem is
that since I am behind ISA server the internet
transfer control does not want to work. The work around is to use
"Proxy-Connection: Keep-Alive" accordingly to this MS article;
http://support.Microsoft.com/default...b;en-us;254396. So this is
what I am trying to do, except I don't know the correct syntax. Is any of
the following any good?


[snip]

Sorry, but I only have experience of proxies in general, not the
internet transfer control.

--
A)bort, R)etry, I)nfluence with large hammer.
Nov 12 '05 #4
Hi

I have received this (below) from someone. Does ISA use NTLM authentication?
Thanks.

"If the proxy is using NTLM authentication you would first have to do a Get
on the page. Once the Get makes it through the proxy, the Post can follow.
This is what IE does to get through the NTLM as well. It is very important
that the Get is done first, otherwise a 12032 error will occur."

Regards

"Trevor Best" <bouncer@localh ost> wrote in message
news:hk******** *************** *********@4ax.c om...
On Thu, 25 Sep 2003 22:14:44 +0100 in comp.databases. ms-access, "John"
<Jo**@nospam.in fovis.co.uk> wrote:
Hi

I am using the execute method to post some data to a website. The problem isthat since I am behind ISA server the internet
transfer control does not want to work. The work around is to use
"Proxy-Connection: Keep-Alive" accordingly to this MS article;
http://support.Microsoft.com/default...b;en-us;254396. So this iswhat I am trying to do, except I don't know the correct syntax. Is any ofthe following any good?


[snip]

Sorry, but I only have experience of proxies in general, not the
internet transfer control.

--
A)bort, R)etry, I)nfluence with large hammer.

Nov 12 '05 #5
OK, I created a new All/All/All protocol rule in ISA Server and it worked.
Not sure why the default protocol rule 'BackOffice Internet Access Protocol
Rule' does not work in this case.

Thanks

Regards

"Trevor Best" <bouncer@localh ost> wrote in message
news:hk******** *************** *********@4ax.c om...
On Thu, 25 Sep 2003 22:14:44 +0100 in comp.databases. ms-access, "John"
<Jo**@nospam.in fovis.co.uk> wrote:
Hi

I am using the execute method to post some data to a website. The problem isthat since I am behind ISA server the internet
transfer control does not want to work. The work around is to use
"Proxy-Connection: Keep-Alive" accordingly to this MS article;
http://support.Microsoft.com/default...b;en-us;254396. So this iswhat I am trying to do, except I don't know the correct syntax. Is any ofthe following any good?


[snip]

Sorry, but I only have experience of proxies in general, not the
internet transfer control.

--
A)bort, R)etry, I)nfluence with large hammer.

Nov 12 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
980
by: Bill Hauver | last post by:
I am attempting to use a web service from my work pc which is behind a firewall. I have used wsdl.exe to create the web service reference class and added it to my project. (this seems to work without a hitch). Before I use this class, I make the necessary calls to instantiate a WebProxy class and then pass in my credentials to set the WebProxy.Credentials property so I can get through the proxy server.
6
2578
by: Matt Hawley | last post by:
I'm facing a problem where I need to verify that my windows forms application has access to the internet before it can do anything. Currently, the only way I can think of is by creating a HttpWebRequest and point it to the specified URL I wish to connect to later on, and if that throws an error, I know I don't have an internet connection. Is this the best method for detecting an internet connection, or is there some sort of routine that I need...
6
7923
by: harry | last post by:
Hi, I have a program that runs on multiple client pc's. Occasionally one or more of those pc's use VPN to connect to another corporate network. When using VPN they need to set proxy server in Internet Explorer connection settings (proxy:8080). However, as soon as this setting is enabled, the remoting program running on their pc stops communicating with the server it sends data to. I've disabled proxy setting on the affected pc, rebooted...
0
1908
by: John | last post by:
Hi I am trying to use the internet transfer control to send some data to a site. I want my MS ISA proxy server to keep the connection alive. What syntax should I use to send the 'keep alive' data to the proxy server? Is any of the following any good? objInet.Execute "http://wwww.mysite.com", "POST", "Some Data", "Content-Type: application/x-www-form-urlencoded Proxy-Connection: Keep-Alive" & vbCrLf
3
1769
by: John | last post by:
Hi I am using ms internet transfer control to access a website. Client pcs where app is running are connected to a small business server 20003/ISA Server 2000 server. The app works fine on all pcs with win xp sp1. However it does not work on a new pc with xp sp2 pre-installed. I have disabled the sp2 firewall but the app still does not work. The error I get is 'HTTP Error 407 - Proxy authentication required', ISA Server can not retrieve...
14
2979
by: John | last post by:
Hi Is itc the only option if one needs to post to a web site from within access? I am looking for something better if there is such a thing. Thanks Regards
2
3030
by: JezB | last post by:
I'm writing a windows forms application which accesses the internet at various points in two different ways: - calling a webservice (.wsdl), - using the WebRequest & WebResponse methods. I have a user that runs the software behind a firewall. He's getting proxy errors thrown, quite understandably since I simply assume an internet connection is available. So, how can I :
4
1567
by: adalton | last post by:
I've been trying to figure out how to test for a valid internet connection. I am able to connect to a valid internet connection, but when it drops, or if it is not there when my program starts, I get an exception. This probably is a newbie question, but I do not even know what or how I would trap that error.
0
2069
by: fiona | last post by:
Yucca Valley, CA, - October 2007: Catalyst Development Corporation, publisher of SocketTools, SocketWrench and LogicGem, today announced the release of Catalyst File Transfer .NET V5.0. For developers who are creating .NET applications, the File Transfer .NET component offers a comprehensive interface for uploading and downloading files. The Catalyst File Transfer .NET component is a managed code component that is fully compatible with...
0
8842
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8516
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7353
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.