I'm trying to use SOCKS5 proxy provided by PIA (https://www.privateinternetaccess.com). I generated user/pass for SOCKS5 on their site, but I can't use this information, since I don't know where to put it. I tried using ChromeOptions, but it's not wo
I am learning and working on building some wso2 sample prototypes. I have created a proxy service and tried using it with the tryit tool inside. But i don't know how to use it externally. i mean how to send data to the proxy service because in API th
(unnecessary backstory) I have a nodejs server with expressjs framework that's proxy streaming a webcam feed. The reason I need this is because the mjpg stream must come from this server due to complex CORS issues. //proxy from webcam server to avoid
I know CDNs like Cloudflare save bandwidth by caching static files as images, JS, and CSS files. I have a script that generates images on the fly and its location looks something like this: http://domain.com/image.php?id=1 With id being the image id.
I'm using grunt-connect-proxy "^0.2.0" to proxy to an api from my angularjs application. The project was started with yeoman angular-generator. I've followed the instructions here but when the proxy is used, I get: Failed to load resource: the s
Long story short: We have remote dev server. Which contains several Symfony2 instances. Like example.com/page1 and example.com/page2 are different AWS instances with different applications. One of those (i.e. /page1) is my responsibility. And I am ab
I am using this code to check proxy servers: def check_proxy(p): try: r = requests.get('https://httpbin.org/get', proxies={'https': 'https://%s' % p}, timeout=5) if r.status_code == 200: return True else: return False except: return False it works fi
i'm trying to request a GET via HTTPS trough a Proxy. The Proxy answers with 400:Bad Request. I sniffed the data with wireshark and i have seen, that the headers are not set. Because of security, i replaced some Values with <> Brackets. Can anybody
I need to download several packages through npm but our corporate proxy configuration is a .pac file (i'm on windows) i already tried npm config set proxy http://mydomain\username:
[email protected]:8181/proxy.pac npm config set https-proxy http://mydo
I followed the steps mentioned in the official documentation for full clustering of multiple ATS instances. I installed 2 instances of ATS on 2 different Ubuntu machines (having the same specs, OS versions and hardware), and both of these act as a re
Can I develop an app that uses a specified HTTP proxy for all web requests? If yes, how can I implement such feature in the app? (any similar links are also useful) And, can I set this proxy configuration to device level from within the app? Please d
How does the following code need to be modified to send the WebRequest via a specified proxy server and port number? Dim Request As HttpWebRequest = WebRequest.Create(url) Request.Method = "POST" Request.ContentType = "application/x-www-for
I'm trying to fetch data from my Local-Server Using an Android App. I established this using jtds.jdbc Connection. In Emulator It's working fine and fetching Data. While tried to connect using Android device through USB it's Giving the Following Erro
I'm trying listen on a port for a TCP packet and then take the data from it and forward that to a UDP port. The reason is the software listening on the UDP port only accepts UDP but I want to use javascript websockets to send it data which only uses
When I run a Java program with a command line option -DsocksProxyHost 10.123.76.20, I got an error : java.lang.NoClassDefFoundError: 10/123/76/20 Caused by: java.lang.ClassNotFoundException: 10.123.76.20 at java.net.URLClassLoader$1.run(URLClassLoade
I have written a forward proxy. I gonna use it for both windows and linux. I do have required changes as per the OS. However, I keep seeing some raise conditions. Mostly I believe they are due to my misunderstanding in guessing which is the last pack
We are using several proxies that are listening to different locations. But during develpment, we aren't having the same URI as in the production environment. Is it possible to have the URI (transport.vfs.File.URI) external defined? (Maybe local-entr
I have a simple Express based Node.js web server that I'm using for development of a JavaScript application. I set up the server to use node-http-proxy to proxy API requests the application makes to a Jetty server that is running on a different domai
My computer have a proxy server defined globally (in internet options configuration). I have a .Net 4 application that use a WCF client to a remote host. The client code has been generated by VS add service reference dialog. As my proxy can't reach t
I want to get at an actual instance of a domain object. That is, I need to serialize the object, and I'm trying to use the domain object on two sides of an httpinvoker chain. Is there a way to get a fully-loaded domain object that doesn't have any gr
I need to develop a system that would log into a website, at regular intervals, through a remote server (I believe "proxy" is the term) and collect data from that website. What would be the basic requirements, for a system like that, in terms of
I've been following this site with a lot of admiration especially on how questions are professionally answered so I decided to be fully involved. Please, I need urgent help on a project that I have been working on for a long time but it's almost stal
to access the internet I am behind a proxy that requires authentication. I know it's quite simple to pass the network credentials to the proxy like this: FtpWebRequest request = FtpWebRequest.Create( new Uri("ftp://upload.myserver.com") as FtpWe
our company provide internet access for us using proxy, but after configured http.proxy, i am keeping get HTTP code 417 After a little google, i guess it's because the libcurl that git use sent the "Expect: 100-continue" header, which the proxy(
I am using Seam to inject beans to my controller using @In annotation. The injected class has a custom annotation, when calling injectedClass.getClass().getAnnotation(annotationClass) it returns null. When debug I found that Seam passes a proxy insta
I'm trying to fetch some urls via urllib and mechanize through my proxy. With mechanize I try the following: from mechanize import Browser import re br = Browser() br.set_proxies({"http": "MYUSERNAME:*******@itmalsproxy.italy.local:8080&quo
I am getting above error in some machines but not in some machines while accessing the documents.More information in your question might help, but after a quick google I found this forum which may answer your question (there appears to be a hotfix th
We run a relatively high volume content site. Like most content sites, the majority of each page is relatively static. The articles rarely change, making them good candidates for some form of static/edge caching. There are two big problems, though. S
When dealing with mobile clients it is very common to have multisecond delays during the transmission of HTTP requests. If you are serving pages or services out of a prefork Apache the child processes will be tied up for seconds serving a single mobi
Has anybody managed to get the Android Emulator working behind a proxy which requires authentication? I've tried setting the -http-proxy argument to http://DOMAIN/USERNAME:
[email protected]:PORT but am having no success. I've tried following the docs to no