Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It may be that I'm not understanding the UDP protocol...

I'm trying to receive data from a server using the UDP protocol, but I'm sitting behind a firewall. The URLConnection constructor can take an instance of Proxy (as well as a way to set up user name and password of such a proxy server).

How do I connect through a proxy server using the UDP protocol (DatagramSocket)?

Best regards, TX

share|improve this question
This link (interhack.net/projects/deschall/archive/199705/0489.html) is a class that sends datagrams with Proxy – Lobo Dec 31 '10 at 10:49

1 Answer

up vote 0 down vote accepted

Most Proxy servers support the HTTP protocol which is TCP based, so you don't have to do anything with the proxy server to do this.

To pass UDP over a proxy server, you need a proxy which supports UDP. I don't know of any proxy server which supports this so you may have to write one yourself. It is worth noting that UDP is a connectionless protocol which means you have have to authenticate every packet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.