LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

http through proxy connection

Solved!
Go to solution
I'm trying to download an image from a website through a proxy server.  All the posts seem to refer to this article: How Can I Open a TCP/IP Connection Via a Proxy Server?  The only link that works on this article is the one to the internet toolkit, and this offers no help on proxy servers.  I have the Internet Toolkit, but there seems to be no VIs which can work through a proxy.  Has anyone been able to do this?
0 Kudos
Message 1 of 14
(13,713 Views)
Solution
Accepted by npro76

Basic proxy support is not so difficult. You can modify the VIs to do that for you. All you need to do is opening the connection to the proxy server instead of to the destination server and change the URI in the HTTP Get request to contain the entire URL with both the server name as well as the path on that server.

 

So as an example:

 

Direct connection to www.examples.com/mydoc.html

 

You open the connection to (usually port 80) on www.examples.com and pass a GET /mydoc.html HTTP request. This do all HTTP VIs you can find on the web.

 

Connection through a proxy server:

 

You open a connection to (whatever port your proxy uses such as 8080) to myproxy.mydomain.com and pass a GET www.examples.com/mydoc.html HTTP request to that proxy.

 

Rolf Kalbermatter

Rolf Kalbermatter
My Blog
Message 2 of 14
(13,696 Views)

I found your example files reference in an article you wrote in 2009. These are the example files for working with a proxy server to access a webpage in a LV vi. The links are broken such as www.example.com/mydoc.htm which I would expect after this much time. Is there a place I can access them?

0 Kudos
Message 3 of 14
(12,918 Views)

Those are imagininary URLs and only serve to show the principle. They were never meant to actually present any real data.

 

Replace www.example.com with whatever webserver you want to access, /mydoc.html with the document part of your URL, and so on.

Rolf Kalbermatter
My Blog
0 Kudos
Message 4 of 14
(12,903 Views)

Hi Rolf,

does this mean I can simply prefix the proxy to the URL? such as http://MyLocalProxy:8080/www.example.com/index.html?

I need to get this working using the http primitives, but have no means to test it at my office.

 

And how do you add user identification to it?

 

Thanks!

------------------------------------------------------------------------------------
Seriously concerned about the Labview subscription model
0 Kudos
Message 5 of 14
(12,782 Views)

It's a little more complicated

 

You have in fact three different items here.

 

1) The DNS name/IP address and port number to pass to TCP Open Connection.

2) The DNS name/IP address and port number from the webserver you want to get the info from

3) The path on that server

 

Without proxy server you use the DSN name and port number of the web server you want to get the data from to pass to TCP Open connection.

And the GET request line only contains the path on that server to the resource you want to receive.

 

With proxy you pass the DNS name and port number of the proxy to the TCP Open Connection function.

The GET request now contains the entire URL with webserver and path to the resource.

 

There is an example for a little VI library here that contains a subVI that seperates the various parts from the two input informations of the proxy server address (no proxy if empty) and the actual URL request address.

 

Authentification is an entirely different beast. It's also added to the HTTP Header as extra lines, but Basic authentication, while easy to implement is really a joke as it offers no security at all but rather gives the wrong sense that it is secure, and the more advanced authentications are a bit more involved to implement.

Rolf Kalbermatter
My Blog
Message 6 of 14
(12,769 Views)

Thanks Rolf!

I got started on the challange myself yesterday and got it to work with the http VIs. I tested the code with Fiddler (including the proxy basic authentication)

 

First, I take the URL apart and create a new URL aimed at the proxy:

parse webservice URL.png

 

Second, I run a POST method as follows:
http post simple example.png

Third, to provide basic proxy authentication, I created a subVI that I added to the code above (the base64 subvi below I found on this website):

Proxy-authenticate header.png

Fiddler is a great tool to get all this working. After installing it will provide you with a local proxy @ localhost:8888 and you can set it to require basic authentication (using username 1 and password 1)

Attached VI created with LV13f2

------------------------------------------------------------------------------------
Seriously concerned about the Labview subscription model
Message 7 of 14
(12,746 Views)

Not quite there yet!

The proxy responds with a 307 redirect.

It wants me to to repeat the post command, but targeted at another URI:

proxy server response 307.png

 

I am not sure how to format the header of this new request. As explained above, the initial request is targeted at the proxy server. I could target the "location" (mentioned in the image) instead, but that one contains a path and arguments. This would yield an invalid request for sure. like: POST http://localhost.locadomain:8080/auth?du=long...hash/mymethods/method1 HTTP/1.1 (This URI contains two paths and a parameter in between..)

 

Any suggestions?

------------------------------------------------------------------------------------
Seriously concerned about the Labview subscription model
0 Kudos
Message 8 of 14
(12,696 Views)

That doesn't look like a rederict but rather like an authentication request. Probably because localhost.localdomain doesn't allow for your Basic authentication. Is this your final location or your proxy server?

Rolf Kalbermatter
My Blog
0 Kudos
Message 9 of 14
(12,693 Views)

307 instruct that you have to do your request targeted at another URI , which it returns in the location header. So far so good. My Location header already contains a URI including an authentication string.

I am guessing that I need to authenticate at this new URI, keep the http session open and then re-issue my POST request with this new http://localhost.localdomain as the new proxy.

 

I created a test application for the customer, but this may become a lengthy process as long as I don't find any literature on the subject. 

------------------------------------------------------------------------------------
Seriously concerned about the Labview subscription model
0 Kudos
Message 10 of 14
(12,690 Views)