0
votes
2answers
25 views
C#: Using CookieContainer with WebClient class
I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in me …
1
vote
1answer
31 views
WebClient UploadFile errors
I am trying to upload files to a web server using System.Net.WebClient.UploadFile but I keep getting a WebException. Specifically, I am getting 3 errors. I have no idea why I am no …
0
votes
4answers
38 views
Open file and save
I want to download a file and save it locally without any pop ups for user to choose location since its predefined. File format will most probably be pdf. Download file path will b …
0
votes
1answer
49 views
Using a WebClient to download a file, but being able to get the download information in vb.net
Imports System.Net
Public Class DownloadStuff
Dim downloader As New WebClient()
Private Sub Progress_Validated(ByVal sender As Object, ByVal e As System.EventArgs) Handles …
0
votes
1answer
30 views
WCF + WebClient + Powershell
Hi,
I tried it works fine for the asmx (simple web services) but for WCf do we need to do some thing different.
Can the Same work for the WCF services as i get the error for the W …
1
vote
3answers
49 views
WebClient problem with URL which ends with a period
I'm running the following code;
using (WebClient wc = new WebClient())
{
string page = wc.DownloadString(URL);
...
}
To access the URL of a share price website, http://w …
1
vote
3answers
32 views
Stress testing with simulated browser behaviour
Hello,
I tried JMeter and it's great but fails in what I need.
Basically I'm testing an ASP script that returns frameset to the client. When frameset renders it calls a couple of …
1
vote
1answer
9 views
Sharepoint portal to ActiveX to WebClient back to Sharepoint
Got this problem - not sure if it is possible.
User is logged into the sharepoint portal server.
The user opens a page (webpart) in SPS - an ActiveX is started
The ActiveX recei …
1
vote
3answers
85 views
WebClient vs. HttpWebRequst/Response
It seems to me that most of what can be accomplished with HttpWebRequst/Response can also be accomplished with WebClient class. I read somewhere that WebClient is high-level wrappe …
3
votes
12answers
1k views
WebClient.DownloadDataAsync is freezing my UI
Hi,
I have in my Form constructor, after the InitializeComponent the following code:
using (WebClient client = new WebClient())
{
client.DownloadDataCompleted += new Download …
0
votes
1answer
40 views
Why is my Twitter web request bombing out?
I've been working my way through Tim Heuer's Silverlight tuturial, in which you set up a basic interface to search Twitter. I started on the tutorial yesterday, completing through …
1
vote
1answer
30 views
Easiest way to upload a collection of files to a server
Hi There,
Could anyone guide me as to the best way to upload a collection of files from a directory to a server from within a WPF client.
We have ftp access, and as such I have bee …
1
vote
1answer
220 views
XMPP web client for commercial web application
I have the task of choosing an XMPP server/client solution for an internal web application. The goal is for employees to be able to utilize it via desktop client or the web applic …
2
votes
4answers
66 views
How to download files in a blocking/synchronous manner?
Hi, I am pretty new to silverlight and was very surprised to see that only asynchronous file downloading can be done. Well, I've attempted to counter act this by just setting a fla …
0
votes
3answers
35 views
Should I provide Sync or Async methods for developers in my IMDB API library?
I'm going to make a DLL Library that'll alow developers to search and access IMDB movie pages.
How should I handle the freezing in the GUI, should I use async methods, or should I …
