| Web servive asynchronous call fails |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi I created a webservice with a simple we method to increment a number passed from the client(a console app) . Then i call this web service method asynchronus mode from the client. I create a callback function and call EndXXX(XXX denotes the function name) in the callback function. But the function call never ends. means the web service is not working in async mode I have added the web refernce p... |
|
| WebClient.UploadFile() -Urgent ! |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I am trying to upload a file using WebClient.Upload method.Here is the error message I am getting: The remote server returned an error: (405) Method Not Allowed. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Net.WebExc... |
|
| WebException: The underlying connection was closed: The server committed an HTTP protocol violation ... |
| microsoft.public.dotnet.general |
| Hi All, I've seen many posts regarding this problem I'm having a similar one: I'm using (C#) HttpWebRequest to post data to a custom (embedded) webserver. The connection to the webserver is direct and not thru a proxy. The server receives the posted data (after a 100 continue response). But after processing the posted data, when the server sends a response, my application generates the following: ... |
|
| WebRequest & WebResponse File Download |
| microsoft.public.dotnet.languages.csharp |
| I'm trying to download a file through WebRequest/WebResponse from an internet resource in my program. I'm trying to do this asynchronously and WebClient doesn't have these capabilities. Does anyone have an example or know how to do this? Thanks, Eric L. |
|
| WebRequest Problem |
| microsoft.public.dotnet.framework.aspnet |
| Hi there, I'm using VB.Net release version to develop a simple program with Web classes to download a file through HTTP. When I run this program, it seems hang and below error errors. Any idea? Please help. Many thanks. Eddy Mak CODE: Dim URL As String "http://www.microsoft.com" Dim request As HttpWebRequest WebRequest.Create(URL) Dim response As HttpWebResponse request.GetResponse() Dim reader As... |
|
| WebService Client Question |
| microsoft.public.dotnet.languages.csharp |
| Hi, I created a client that sends data to a WebService It works just fine but I have a simple problem The WebService Recieves an Object and returns the same object as success or a Soap Fault as error, All I want to return from the client is a boolean (true success, false error). How do I detect inside the client if I got the Soap Fault? Here is the client code (it uses user defined objects so it w... |
|
| WebService Client Question |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi, I created a client that sends data to a WebService It works just fine but I have a simple problem The WebService Recieves an Object and returns the same object as success or a Soap Fault as error, All I want to return from the client is a boolean (true success, false error). How do I detect inside the client if I got the Soap Fault? Here is the client code (it uses user defined objects so it w... |
|
| webservice problem: The underlying connection was closed: Unable to connect to the remote server |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello All! I also have the unfamous error described in subject. I created the HelloWorld webservice simplest way by uncommenting the HelloWorld source. I then create a client with the following code Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim ws As New Service1 Try MsgBox(ws.He... |
|
| webservice proxy error, new .net 1.1 behavior? |
| microsoft.public.dotnet.framework.webservices |
| I have an interesting variation on the "File or assembly name 98oas ou.dll, or one of its dependencies, was not found" issue that is causing me to thump my head against a wall. It is definately not a permissions issue and the chris sells xmlserializerprecompiler isnt shedding light on the why aspect. We have a proxy created by the wsdl generator that worked fine in .Net Framework 1.0, but dies wit... |
|
| Where can i find a good free obfuscator? |
| microsoft.public.dotnet.framework.aspnet |
| Where could i find a free and good obfuscator? Thanks... |
|
| where does IAsyncReturn object go, to be used later, in this code? |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello, I'm a newbie to Web Services and have a question about consuming XML Web Services asynchronously. I gather so far that the IAsyncResult object returned from BeginXXX method of a proxy class is important, as it gets used later by the EndXXX method. I'm working an example from Freeman and Jones "XML Web Services Step by Step", Chapter 15, and wonder where the important IAsyncResult object GOE... |
|
| Win Form crahses with Asynchronous Callbacks |
| microsoft.public.dotnet.framework.windowsforms |
| Hi there, I have one problem.When i use asynchronous delegats with win form application which is basically remoting clinet then the application simply crashes. I tried using same code in Console Application and it works perfectly. I have heard somewhere that while using asynchronous programming with Win forms , some sort of marshalling is required with delegates.I don't know how to do this? Does a... |
|
| Windows 2000 Server and ASP.NET |
| microsoft.public.dotnet.framework.aspnet |
| Hello All I have built an ASP.NET web application using VS2003 and v1.1 of the framework. On my development system, Windows XP SP1a, all works well. When I transfer the application to Windows 2000 Server (v1.1 of the framework) the application breaks. I am using "Deploying a Web Solution" walkthrough from VS on line help to install the app onto the 2k server and that seems to work fine on both the... |
|
| WinForms/web services and threading |
| microsoft.public.dotnet.framework.windowsforms |
| I've got a winform. When the user presses a button I want a web service (EndGetResultsForSql, which takes an SQL string and returns a dataset) to be called asyncronously so that the user can continue with other parts of the app while waiting on a datagrid to get filled with the dataset that comes back from the web service. Below is a snippet. The Invoke method never seems to call the delegate AddF... |
|
| ws Security |
| ASPFriends.com 'aspngwebservices' list |
| I have set up a Web Service on Box A. I have consumed it on Box B (Development) When I move the code over to Box C (Production) I get the following error : "The underlying connection was closed: Could not establish trust relationship with remote server." ON BOX C The Web.Config file has authentication of "NONE" The Firewall is wide open between the two boxes I am able to establish the Web Referenc... |
|
| WSDL / VB Compiler Problem |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I created a web service that reads in all employees from the pubs database. I then return that result in a dataset. This works fine from the browser. I then decided to create a .dll for it to be consumed by ASP.Net forms, I am trying to figure out how to do things programmtically. I used the wsdl.exe to create vb code of the web service. That worked great. The problem is with the VB compiler, when... |
|
| wsdl compile into standalone exe client to consume web service |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Newbie question. I wrote a very simple .net web service and consumed it with remote ..aspx after compiling the output of the wsdl produced .vb to .dll file. It works as expected. Question Can I access that webservice from dos with standalone exe file (no dll on the client). The run of the exe would then display the returning string. If so, how? The Service: %@ WebService Language "vb" Class "nws1.... |
|
| XML Web Services Step by Step tutorial HTTP Client |
| microsoft.public.dotnet.general |
| Did anyone even get to study the MS Press book "XML Web Services Step by Step" by Adam Freeman and Allen Jones. The book is very good to learn how to program XML Web Service but I got into a snag for getting the sample in Chapter 05 to work. The SOAP WebFormsClient in Chapter 4 works but the HTTP simple sample in Chapter 5 failed to get the creditcard validation to work. The only difference is tha... |
|