web-services-enhancements

WSE 3.0 on framework 3.5 under Program Files(X86)

I am deploying a web application to a windows server 2003 machine. The application uses WSE 3.0, and targets framework 3.5. WSE is installed on the server under C:\Program Files(X86)\Microsoft WSE\v3.0. WSE is installed in the GAC on the server also. when I run the application I get the following error: System.IO.FileNotFoundException:...

Is WSE2 obsolete?

I'm attempting to bring some .net 1.1 legacy code into .net 2.0 and some of it relies on the Microsoft.web.services2 web services enhancements. I could have swore I read somewhere about the objects in that dll being packaged into the .net 2.0 framework, or that they were replaced by something else in the .net 2.0 framework, but I'm not ...

How to report progress of a web service on windows mobile client?

I have tried to implement progress reporting using a soap extension as described at the following links: stackoverflow codeproject However, my "ProgressUpdate" method is not being called, and I believe that is because I haven't got an app.config file in my Windows Mobile project to tell the web service calls to be processed by the SOAP...

web service error ' it does not have a parameterless constructor '

I've created a web service , which can a method to set the user credential using Microsoft.Web.Services3.WebServicesClientProtocol. The sample code is : <WebMethod()> _ Public Sub ClientCredential1(Of TSecurityToken As SecurityToken)_ (ByVal UserCred As Microsoft.Web.Services3.Security.Tokens.UsernameToken) Dim cPr...