proxy

I need a browser-compatible proxy that can do this

Hello, I am looking for a proxy server that can do this. If I set my firefox settings to that proxy, and go to google, then it should "proxy" to google normally. Just a normal proxy. But I want there to be rules. I want to redirect anything that matches http://google.com/... to http://12.34.56.78/... I was thinking about writing one ...

Detecting whether a user is behind a proxy

Hello all, I'm trying to figure out how I could detect whether people logging into my site are behind a proxy or not. I've read that you can detect a person's real IP address through embeddable objects (Flash and Java). However, I haven't been able to actually find any examples or source for this. I'm using PHP and I've read that loo...

Displaying a website in a website?

What I need to do is this: <iframe src="http://www.google.com" width="800" height="600"></iframe> But the constraint is, I want my website to fetch a requested website and display it in frame. That is, the clients browser must only have a connection with my web server. My website in turn will fetch requested url's and display them to ...

Proxy for RESTful WCF service

My standard WCF/ RESTful service is going to return big complex object. In WCF as and when someone adds the service reference it creates a proxy of it, i.e. I am exposing data contract to client and its strongly typed at the client level. How are we going to do with RESTful service, is there anyway to the same for RESTful service. ...

Proxying IIS

I'm getting XSS errors when trying to consume a .NET web service and I'm sure I can fix it with a bit of proxying. However, I've never proxied IIS before. Can anyone point me in the right direction for a good guide/tutorial please? UPDATE First off my apologies for being so vague! I have a website that is calling a web service in orde...

How to intercept HTTP requests and responses of a client machine (like fiddler does)

I thought that the only way to intercept a request is to use a proxy, but fiddler somehow can intercept HTTP requests and responses without configuring anything on any browsers. What's going on under the hood ? And do you know any library to do that ? (In any languages) ...

Problems with a web based browser

Hi everyone! I want to develop an asp.net website which gets an address as an input and fetches all contents of the website and changes links and js path and css paths which causes the content to be displayed correctly, and then Response.Write all of this content to my website. My question is that what's problems with this work, I mean...

BizTalk web-service call: unable to connect to remote server

I am trying to call a web service from a BizTalk (2006) orchestration. Having got the hang of the basics, I have been following this tutorial (page 74 onwards) in which i have a web reference to an external web service (I am using this web service instead of the one in the tutorial), I have my web message in a Send component, and have ...

Proxy server authentication for WCF service

Hello, I need to consume a WCF service but I'm behind a proxy server and this proxy server requires a username and password. I can't find a way to set it, if it was a Web Service, I could just do something like ws.Proxy = myProxyServer; How can I do this with a WCF service? thanks! ...

Detect proxy settings of default web browser - C#

MSDN sample HttpWebRequest myWebRequest=(HttpWebRequest)WebRequest.Create("http://www.microsoft.com"); WebProxy myProxy=new WebProxy(); // Obtain the 'Proxy' of the Default browser. myProxy=(WebProxy)myWebRequest.Proxy; Doesn't work. The error I get is: Unable to cast object of type 'WebProxyWrapper' to type 'System.Net.WebProxy' ...

Client-Server (web-server) app in LAN - should proxy be taken care of?

Within a LAN, an ASP .NET web application acts as the server. It is hosted internally on the organization's web server. It can be accessed - say like this - http://192.168.0.23/myApp The clients are desktop applications which need to constantly interact with the server (the web app residing on the intranet) Considering it's a LAN setu...

What is the difference between lazy="true" and lazy="proxy" in nhibernate?

What is the difference between lazy="true" and lazy="proxy" in nhibernate? ...

MySQLdb through proxy

I'm using the above mentioned Python lib to connect to a MySQL server. So far I've worked locally and all worked fine, until i realized I'll have to use my program in a network where all access goes through a proxy. Does anyone now how I can set the connections managed by that lib to use a proxy? Alternatively: do you know of another Py...

Should I connect my iPhone app directly to a web service or proxy through my own site?

What's the best approach for using a web service in an iPhone app? Should I connect directly to the service or proxy the request through my own web server and where I can cache the results and, if the service changes, make any updates in a single location without having to have my app update approved by Apple. ...

Does urllib2 in Python 2.6.1 support proxy via https

Does urllib2 in Python 2.6.1 support proxy via https? I've found the following at http://www.voidspace.org.uk/python/articles/urllib2.shtml: NOTE Currently urllib2 does not support fetching of https locations through a proxy. This can be a problem. I'm trying automate login in to web site and downloading document, I have ...

How to prevent cross domain issues by proxying in IIS?

I have a site written in Delphi that needs to get data from a .NET web service. In order to consume the web service I am attaching to a .NET web site first that contains a wizard that the end user has to fill out, which in turn is then calling the web service in order to populate AJAX drop-down lists and to return data to the calling Del...

Windows Authentication with basicHttpBinding of WCF

I am quite annoyed with this one for last 2 hours :( Folks, I am trying to access a SharePoint OOTB List web service from a Console application. My SharePoint site in IIS is set to Integrated Windows Auth mode, and anonymous access is disabled. Now at client side what I am doing is as follows try { BasicHttpBinding bin...

How to write my own proxy, anonymizer and host it to help when websites are blocked at work

I work as a contractor/freelancer. At most client sites a lot of websites are blocked. Specifically Gmail and Facebook which I really would like access to while on assignment. I know there are a lot of proxy/anonymiser websites out there that allow you to use their website to circumvent the website filtering of the business IT policy bu...

Ivy via Nexus proxy

Hi, does anyone knows how do I specify in Ivy something like mirror/mirrorOf in Maven? I'm working with a local Maven proxy (Nexus) and need the tool to specify which of the parent repositories should Nexus proxy be accessing. In Maven I do simply: <mirrors> <mirror> <id>central-mirror</id> <mirrorOf>central</mirrorOf> ...

how can I specify a proxy configuration using Microsoft.XMLHTTP?

I'm using Microsoft.XMLHTTP from a classic asp page to post info to another site... I'd like to be able to inspect what's going on with fiddler, and to do so I have to find a way to configure Microsoft.XMLHTTP to use a proxy... is it possible? where does Microsoft.XMLHTTP gets its configuration from? thanks a lot ...