Archived Months
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet web services > april 2005 > threads for april 15 - 21, 2005

Filter by week: 1 2 3 4 5

Running batch file from webservice
Posted by Antonio at 4/21/2005 8:36:33 AM
I recently installed on my Windows 2003 Server the Support tools in order to create DNS using dnscmd.exe. I created a batch file called File.bat which I wanted to run from a webservice but it didn't work. Afterwards, I created a Windows Application to try and run the process using the follo...more >>

Running a batch file from a WebService
Posted by Antonio at 4/21/2005 8:33:52 AM
I recently installed on my Windows 2003 Server the Support tools in order to create DNS using dnscmd.exe. I created a batch file called File.bat which I wanted to run from a webservice but it didn't work. Afterwards, I created a Windows Application to try and run the process using the follo...more >>

Web Service returning types - BIG PROBLEMS
Posted by Matthias De Ridder at 4/21/2005 6:04:20 AM
Hello, I really hope that someone will be able to help me, because I'm desperate now! I'm a student, graduating this year, and I'm working on a thesis where C# Web Services are involved. I only have three weeks to finish it all! My GUI and Web services were finished, but I hadn't tested t...more >>

Deploying webservice
Posted by Peter Schmitz at 4/21/2005 4:41:04 AM
Hi, I just created my first .net web service and now I want to create an installation program for it. That's why I added a WebSetup project to my current solution and added the primary output of my web service project to it. But when I run this setup on a different computer (with IIS of cour...more >>

reading XML, SOAP problems
Posted by Jonathan [sbrodolo] at 4/21/2005 1:17:01 AM
Hi there, I am using a LOTUS/DOMINO Web Service in my ASP.Net application and I am having quite a lot of problems. I have managed to solve most of them but this one it really is giving me terrible headaches. Web Service send's me back an XML that I have managed to read with an enormous quantit...more >>

Class structure / VS.net question
Posted by aegis NO[at]SPAM bigpond.net.au at 4/21/2005 12:23:20 AM
Hi All, I'm new to VS.net, coming from Delphi, and there is something that I'm trying to clarify in my head about VS.net. Suppose you had a class Employee (Name, Age, Title, etc). Lets further assume that you are creating a web service, with a .net windows application as a client to tha...more >>

Passing arrays of structs from C# web service to raw C++?
Posted by WTH at 4/20/2005 5:59:57 PM
I have a C# webservice that returns an array of struct data back to a calling client. It works fine when tested via the ASMX page; however, I don't know how to make the call to this particular method from C++. If my web method is declared as: public MyStruct[] GetData() and returns bac...more >>

How to debug Web Service?
Posted by DQ at 4/20/2005 3:54:02 PM
Hi All, Is there a way to debug a web service program when I test a method via the DefaultWsdlHelpGenerator.aspx file. For example, I have a web service with a given name of "WSTest" that contains a web method with a name of "TestConnection." When I go to the following link (by typing...more >>



How to log raw SOAP response msg?
Posted by Bob at 4/20/2005 10:35:41 AM
The .NET web service proxy class is great for transparent app process via SOAP calls. I have a need to log the raw SOAP response messages. Is there an easy way to do this? I saw there is already a thread about intercepting SOAP request messages and someone suggested programming SOAP Extensions...more >>

WSDL gives the wsdl.exe tool problems.
Posted by Kevin Burton at 4/19/2005 11:49:03 AM
I am running wsdl.exe to try and generate some classes and I am getting: wsdl ppc.wsdl Microsoft (R) Web Services Description Language Utility [Microsoft (R) .NET Framework, Version 1.1.4322.573] Copyright (C) Microsoft Corporation 1998-2002. All rights reserved. Schema validation warning: ...more >>

WSE 2.0 and VS 2005 Beta2
Posted by Jed at 4/18/2005 4:09:03 PM
Does anyone know if the recently released VS 2005 Beta2 is compatible with WSE 2.0? Thx!...more >>

VS2005 Beta 2 Web Site Admin Tool?
Posted by yoDon at 4/18/2005 1:16:02 PM
I just installed the VS2005 Beta 2 bits, and I'm having a variety of issues with the Web Site Admin tool. If I create a test web service, I can't add users because: -- There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insuff...more >>

Calling WebService method from JavaScript
Posted by MSNews at 4/18/2005 12:00:00 AM
Hi, I have written a WebService using Visual Studio.Net's 'ASP.Net Web Service' project (ASMX). I want to call the exposed methods form a HTML client (using JavaScript) as a function. I do not want to prepare the Xml and make a SOAP call. One way is to use the webservice.htc but it will not work...more >>

ATL - Axis SOAP incompatibility?
Posted by Moshe Kravchik at 4/17/2005 12:00:00 AM
Hi all! I've encountered with what seems to be a compatibility problem between ATL SOAP Web Service and Axis client. The minimal scenario is like that. I create a service having the following function: struct SITest{ int val; }; [id(1)] HRESULT PassStructInt([in]SITest data); Wh...more >>

System.InvalidOperationException
Posted by Andreas Zita at 4/17/2005 12:00:00 AM
Hi! I keep getting this error message 'System.InvalidOperationException' whenever some exceptions is thrown in my web service code. Is there any way to configure IIS or my web service to display a little more detailed error messages? Im running .NET 1.1/VS03/XP/IIS/C# Thanks! /Andr...more >>

soap payload size exceeds the limit
Posted by Praveen Chandra at 4/17/2005 12:00:00 AM
Hi I was calling a third party webservice ( WSDL ) which is accepting some xml as input parameter. it works fine when the xml size is small but starts giving error when the xml size reached about 400KB. Error Description : The size of the request exceeds the limit allowed by the server. ...more >>

Enum design question
Posted by Stan at 4/15/2005 5:33:05 PM
Suppose there is class with enum public enum Color { Red = 20, Black = 13 } And suppose there is a method public void SetColor (int id, Color c) { } When web service proxy class is generated the value of the enums will be lost: public enum Color { Red, Blac...more >>

403 forbidden with web application, works with windows application
Posted by Christoffer at 4/15/2005 4:53:58 PM
Hi, I have a quick question. Why do I get a 403 Forbidden message when calling a Web Service from an ASP.NET web application but not from Windows Application (it works perfectly from the Windows Application)? The Web Service I'm calling requires a client certificate which I have installed i...more >>

C#.NET application does not respect IE proxy settings
Posted by Robb Gilmore at 4/15/2005 12:57:02 PM
Posting this again as: rgilmore@newsgroup.nospam (Also posted under dotnet.general) We have a C# .NET app which runs as a service. It posts data to a server using HttpWebrequest. According to the docs I 've read, it should use the proxy settings from IE on the server machine. But it does...more >>

Calling a batch file from a web service
Posted by JoelBrimm at 4/15/2005 12:19:04 PM
I have a batch file that executes a command line utility to do a secure file copy from our server to a 3rd party server. The batch file works fine, but when I call it from the web service the log file shows that it hangs up on the execution of the utility ( an exe ). Batch files without ...more >>


DevelopmentNow Blog