The webrequest tag has no wiki summary.
0
votes
0answers
15 views
get cookies on a browser from winform c#
im building an app that after the the user logs in to my web site the app goes to a link to get his user name so i will recognize him on the app.
Now if i as a user login from a browser and then ...
0
votes
0answers
13 views
C# Oauth webrequest without token
I need to write an app that connects to an externam API. I got a consumerkey and secret. The API doesn't need a token, so i don't need to ask for a token. When I use the chrome plugin "Rest Plugin", ...
2
votes
3answers
35 views
non blocking webrequests vb.net
I am making a program that must process about 5000 strings as quickly as possible. about 2000 of these strings must be translated via a webrequest to mymemory.translated.net. (see code below, JSON ...
0
votes
1answer
30 views
URL forwarding using Chrome webRequest after response is received
I am attempting to create a Chrome extension that utilizes Chrome's webRequest module to perform a redirect to a URL obtained from an initially accessed URL. For this I would like to utilize only ...
0
votes
2answers
17 views
.NET How to Send WebRequet to Specified IP address in same domain
I have a problem. Whenever I'm sending WebRequest to https://myaddress.com, it resolves to the wrong IP address (this domain has several IP adresses).
How can I specify IP address, which I want to ...
0
votes
0answers
28 views
Error in getting the response from the web service
I want to post job directly on career builder through my website. For this work i create a web request to post job data on CareerBuilder using my test account(on career builder).
using System.IO;
...
0
votes
0answers
26 views
WebRequest in Windows 8 Corrupting XML Download
Summary:
I am using WebRequest to download XML files with FTP from my own internet DNS. This is my first time coding an app which downloads files from an FTP server. I have been experiencing a number ...
0
votes
0answers
20 views
WebRequest works in WPF application, but not in MVC application?
So, I am attempting to write an MVC application using some code I wrote from my WPF application. The below code is used in both.
System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
...
0
votes
1answer
48 views
Why is connection keep-alive only sent on first request with WebRequest?
I have the following code for testing purposes
for( int i = 0; i < 5 ; i++ ) {
var url = "http://myserver.com/Warmup";
var request = WebRequest.Create(url);
using (WebResponse response ...
0
votes
1answer
77 views
How to create an otrs ticket using a soap request
The lack of documentation on this subject coupled with the fact that I'm struggling with a learning curve on all fronts and making me really confused about where to start. I need to get this done ...
1
vote
0answers
28 views
C# login to a php based website with WebRequests
I am trying to login to a website, specifically http://www.probux.com/login.php, and retrieve the contents of http://www.probux.com/account.php which it automatically redirects you to after the login ...
0
votes
0answers
44 views
C# downloading from Web
I am trying to develop a TurboIt downloader with C#.
The program does the following correctly.
Given the file URL it sends initial web request.
Based on the response it sends regular download ...
0
votes
1answer
52 views
Powershell cmdlet Invoke-WebRequest chokes on wildcard?
Weirdness: I have a Powershell cmdlet here that seems for all the world to be choking on a wildcard character. I didn't know that was possible, to be honest--I mean, this thing says it doesn't ...
1
vote
1answer
35 views
chrome.webRequest.onAuthRequired Listener
i'm trying to intercept the proxy authorization inside a chrome extension.
Following the answer to here: Domain Authorization in Chrome Extension and reading the docs here my code looks like this:
...
0
votes
1answer
32 views
iPhone loading screen until web request is finished
I need to show "Loading screen" (just an image) at the start of application and when application gets all needed data from web, then first viewcontroller is shown. I have succeded doing it by setting ...