proxy

Oracle Jinitiator connect mode

Hi, I am currently tracking connection issues with jinitiator but have limited experience with this technology. I want the applet to connect via a proxy, all is good at first. Console Output: Oracle Jinitiator: Version 1.3.1.13 User has overriden browser's proxy settings Proxy Configuration: Manual Configuration Proxy 192.168.1.230:3...

In QT, chaining models does not work as expected

Alright, I have a really basic QStandardItemModel, filled with some numbers. I managed to display it in a QTableView, it's ok. I created a new model ( subclass either of QAbstractItemModel or QAbstractProxyModel ), which is some kind of a layer of an existing model - it is needed to set the sourcemodel, and this new layer should do some ...

Read Java Internet Connections settings - jdk1.4

Is there a way of getting internet connection settings (proxy information) being used by java to connect to the internet? With Java 1.5 you can use the ProxySelector introduced then, is there any way of doing it in jdk1.4? I tried getting these seeting using the following code snippet, but returning nulls even though i have set my prox...

Any idea for running Qt signals/slots over network?

We're going to running remote GUI on a few PCs, all communicating with a central server where the main application is running. Instead of hacking our own manual network protocol and marshalling layer for button presses and various events, my hope is that this could be solved more cleverly somehow. Indeed, it'd be nifty if you could auto...

How can I configure HTTPClient to authenticate against a SOCKS proxy?

I need to set up proxy authentication against a SOCKS proxy. I found out this post giving instructions that appear to work with common HTTP proxies. httpclient.getHostConfiguration().setProxy("proxyserver.example.com", 8080); HttpState state = new HttpState(); state.setProxyCredentials(new AuthScope("proxyserver...

Qt4 DNS Proxy QUdpSocket

Hello, I'm essentially trying to make a DNS proxy application using Qt4. If I set my DNS nameserver to 'localhost' then I want to forward all DNS requests to the server specified in the remoteSocket object. Everything seems to be working fine except sending the data from the remoteSocket object back to the localSocket object which is ...

MSSOAP30 Object error: 0x80004002: Interface does not exist (VB)

Hi I'm well and truly stuck with MS SOAP 3.0, which I'm currently running from VBA Excel in Office 2003. I have used MS SOAP Toolkit 3 to create a proxy class which I am using. If I don't use it, I don't get the error, but then I'd have to write out the entire proxy class by hand and it's massive. When my program is first run, I get "C...

Enabling/disabling proxy app doesn't work properly with IE.

I have a really strange situation here: I've written an app that, among other things, switches connections' proxy from on to off and the other way round. It is done by changing the value in the registry: public void SetUpProxy(string proxy, bool enable) { RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Wind...

how to check netconnection in firewall & proxy environment in c#

i have used the following code to check for internet connection it works perfectly without firewall & proxy. how do i check net connection in firewall & proxy mode. please help me private static ManualResetEvent connectDone = new ManualResetEvent(false); public static bool IsInternetConnected() { int Desc; string[] sitesList = { "www....

Create an instance of an ASMX stub object from a real object

I have an ASMX web service that exposes several objects. I have a real instance of that object, and I would like to instantiate a stub object that is populated from it. Clearly there is such functionality already, because when the web service returns a value it is creating the stub and populating it. I just need to do the same thing man...

ASMX Object -> Proxy Object Conversion

Is there a way to convert an instance of an object to an instance of a web service proxy of the same type? It seems like this is something .NET has to be capable of under the hood, so I'm just trying to find and re-use this function. It's definitely a little awkward, but I have access to both types in my project through a common librar...

retrieve proxied instance from spring

I am interested in getting the class being proxied from spring, rather than the proxy. ie: public class FooImpl<KittyKat> { @Transactional public void doStuff() { getBar(); // java.lang.ClassCastException: $Proxy26 cannot be cast to // com.my.foo.Bar } } public abstract class AbstractFoo<T...

Castle Windsor: How to retrieve proxy for specific instance?

Hi! I'm using Castle Windsor in my project. Some registered components are intercepted. Because the components are registered through interfaces, Castle Windsor creates interface proxies (Castle Windsor creates a standalone type which implements the interface and delegates to the real implementation by using composition). Unfortunately ...

A light-weight test environment for applications behind corporate web proxies?

I have an application that requires an outgoing HTPPS connection to run, and allows for proxy settings to be automatically detected, manually set and used. Is there an easy way to create a test environment that will emulate desktops in corporations that have forced web proxies (i.e. without them, connections will fail). I find it hard ...

Getting underlying type of a proxy object

I'm using Castle DynamicProxy and my ViewModels are a proxy, something like this: namespace MyApplication.ViewModels { public class MyViewModel : BaseViewModel, IMyViewModel { } } a proxy of my viewmodel looks like this though: {Name = "IRootViewModelProxyffecb133f590422098ca7c0ac13b8f98" FullName = "IRootViewModelProxyffec...

combining proxy server modules with my webapplication

I want to implement a autmatic billing systen for one cybercafe.MEasning when some one want to surf net in my cafe he goes to attendent and attendent allocates him the pc and gives him the passswd which is generated by the applciation and the passswd will be valid for specific time(session of 1 hr or so depending on customer needs).Now ...

Can calling Abort() on an IClientChannel proxy throw an exception?

Based on documentation and articles it is recommended to call Abort() on a client proxy if an unexpected exception/fault is encountered. See the following (simplified): MyServiceClient proxy = null; try { proxy = new MyServiceClient(); proxy.DoSomething(); proxy.Close(); } catch (Exception ex) { if (proxy != null) ...

JavaFX url-proxy?

My computer is running behind proxy. I want to access url from JavaFX. for example say i want to show image from a url. But i haven't seen anyway to provide proxy settings for the connection(?). Please if someone can tell me how to do things in such situation? Thanks ...

Proxy for Google App Engine

I am looking for a basic open source http proxy server for Google App Engine. Preferably written in Python. Any suggestions? ...

Perform a simple HTTP request using C++ / Boost via a proxy?

I'm quite a newbie with Boost, and my only experience of surfing though a proxy using a library is using .NET (that is really convenient for that purpose). I'm now trying to perform a simple HTTP request through a HTTP proxy. Is there a tidy way to do it using boost directly? My proxy use a NTLM authentification. ...