Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
172 views

HTTP tunneling (of RTP) for cameras

My company is developing a system that interfaces with several network cameras. The way we stream video from the cameras is over HTTP (mainly because of camera limitations combined with the fact that ...
2
votes
2answers
236 views

How to do proxy tunnelling in java signed applet

how to make persistent connections behind proxy in an applet?** is Using URLConnection will do all the job? I know what i am asking is very general but i am desperate for any ideas. Acording to ...
2
votes
2answers
848 views

Can I use http tunnel to ping or traceroute through a proxy with firewall?

I don't know if there is a way to ping a target outside my LAN proxy which accepts only Http requests through a squid proxy... I read somewhere that one way to deal with such problem is to use a http ...
2
votes
1answer
166 views

getting started with http tunneling

I will soon start work on software which runs on different machines and communicates over the network. I'd like the communication to happen using HTTP tunneling, so no firewall ports need to be ...
1
vote
0answers
177 views

soapUI as Http tunnel to record iOS (iPhone/iPad) client-server discussions

I am trying to use soapUI as Http tunnel (https target) to record iOS client-server discussions, and then use it for service mocking to test my client which is an iOS app (iPhone and iPad) using the ...
1
vote
2answers
101 views

Can client JavaScript use its own HTTP proxy?

My server, server.example.com, isn't accessible from the Internet. However, there's an accessible HTTP proxy, proxy.example.com, that can talk to the server. If users configure their browser to go ...
1
vote
0answers
156 views

how does HTTP Tunneling work?

I was taking a look at the JHttpTunnel library and this piece of code in OutBoundSocket.java got me a bit confused. public void connect() throws IOException{ close(); String host=getHost(); int ...
1
vote
1answer
1k views

Http tunneling to pass firewall in C# (TCP)

My need is to communicate between 2 client behind NAT using http tunneling. Is it possible? What all setup is needed to achieve this (like http proxy server etc.)? Is there any library or sample code ...
0
votes
2answers
125 views

C# MYSQL Connection

Briefly, I want to connect remote MYSQL firewalled database to my C# program I tried lots of scripts, also I made my script but it was too difficult to be true made a whole web service based DMS ...
0
votes
0answers
71 views

Socket program blocked by firewall

I have a .NET server that uses socket connection to connect to a XMLSocket on my Flash game. It works great except for people trying to play on schools and workplaces using routers with strict ...
0
votes
0answers
146 views

Create a HTTP tunnel proxy (using Squid perhaps)

I've developed a small game in Flash that opens a constant XMLSocket to connect to a .NET server - everything works very well - however, anyone trying to connect to the game from school/work usually ...
0
votes
2answers
106 views

Asp.net http tunelling Application

Is there any open source http tunneling software written in asp.net ? I know i can simply get http response and display it in an iframe, but this is not the result want. The links should be replaced, ...
0
votes
3answers
369 views

Is there an Java library for sending binary data over HTTP, HTTP Tunneling?

I would like to send quite large chunks of data in a binary format over HTTP, also called HTTP Tunneling. I would like to use this technique using Java for a few Java Swing applications and maybe an ...