Tagged Questions

WSE 3.0 is version 3.0 of the obsolete Web Services Enhancements product from Microsoft. See the WSE tag for more information.

learn more… | top users | synonyms

5
votes
2answers
848 views

HTTP 400 Bad Request error attempting to add web reference to WCF Service

I have been trying to port a legacy WSE 3 web service to WCF. Since maintaining backwards compatibility with WSE 3 clients is the goal, I've followed the guidance in this article. After much trial ...
3
votes
2answers
107 views

Removing certain Elements from Header - that were created by WSE 3.0

I am working with a wsdl which is automatically adding extra elements into the xml. In order for it to comply with an external web service that do not use these elements. See the following image: ...
3
votes
0answers
351 views

Preventing .NET Assembly Version Redirection for System.Web.Services as Referenced by WSE

I've got an ASP.NET web site application targeting the .NET 4.0 Framework and the application exposes some web services using WSE 3.0 (Microsoft.Web.Services3.dll) for security. I'm getting a ...
3
votes
1answer
484 views

WCF client to WSE 3.0 service

I try to create WCF client to WSE 3.0 service. I have already working WSE3.0 client to the same service. Here is it's configurations: <microsoft.web.services3> <security> ...
3
votes
2answers
9k views

Adding SOAP:HEADER username and password with WSE 3.0

I have successfully created a WS client that works correctly when NOT using authentication. However, the server (WebSphere) now requires adding a ws-security username token, and I'm having a hard ...
3
votes
1answer
2k views

WSE client project keeps reverting WebServicesClientProtocol to SoapHttpClientProtocol

Despite enabling WSE 3.0 on client projects in Visual Studio 2005, web references I make always end up with service proxies derived from SoapHttpClientProtocol. I have to manually change the ...
2
votes
2answers
432 views

'Microsoft.Web.Services3.Addressing.Address' cannot be serialized

I'm trying to write a WCF wrapper web service for a WSE3/ASMX web service. [The ugly reason why is that a 3rd party vendor won't support SSL and that is what's needed for BizTalk 2009 WCF adapter to ...
2
votes
6answers
5k views

Remove WS-Addressing/WS-Security sections from WSE 3.0 Client request

I've got a simple C# web service proxy class that I created with WSDL.exe. I am invoking a method on the remote web service, and it is including a bunch of WS-Addressing and WS-Security headers that ...
1
vote
1answer
386 views

AXIS Web svc., .NET client - WS Security problem

I'm using a .NET 2.0 Client to communicate with an AXIS Web service. The web service is not in my control and I can't request any modifications to it either. Now, I'm using WSE 3.0 to implement the ...
1
vote
2answers
250 views

Transferring files via ASP.Net webservice is super-slow

We have a legacy WSE3 ASP.Net webservice here that defines a method GetFileContent(string fileName). What it does is check a predefined path for a file with the passed name, read its content, ...
1
vote
1answer
202 views

SoapException in WSE 3.0 Webservice

I have this code and I'm getting - SoapException was unhandled: no such operation 'string'. What can be wrong? How to handle such exception? If I put it in try/catch block it doesn't help me a lot. ...
1
vote
1answer
214 views

Using generic collections as parameters in ASMX web services

I have an ASMX web service which has a method - void DoSomething(List<string> list); I have implemented this service, compiled and hosted in IIS. I used wsewsdl3.exe to generate the proxy. ...
1
vote
0answers
397 views

WebServiceBindingAttribute is required on proxy classes

I m facing an exception when call a web method of my web service , the exception generated when the method is creating object of Microsoft.Web.Services3.WebServicesClientProtocol. The code segment of ...
1
vote
1answer
1k views

“The specified type was not recognized” exception when trying to invoke a webservice call

I'm trying to call a third party webservice using WSE 3.0 as a client in Visual Studio 2005. The call works fine and I can see that I get a good response (I have tracing enabled), but apparently the ...
1
vote
1answer
95 views

An operation can have only one in or out header of a given type?

Situation: I am trying to consume a clients web service for CC authorization. They are not publishing the WSDL file on there site, but they have provided the WSDL file. I am using Visual Studio 2005 ...
1
vote
4answers
3k views

“Unable to connect to the remote server”

I'm able to call a 3rd party vendor's web service from a Windows form program just fine. When I try to call the same web service and web method and same URL from a WCF web service I get the following ...
1
vote
1answer
2k views

How do I prevent my .NET SOAP client from including “Connection: KeepAlive” in the HTTP headers. (using WSE3.0)

In the HTTP Connection header, my web service client is including: Connection: Keep-Alive I want to disable this. After doing some research, it appears the way to do this is to set the KeepAlive ...
1
vote
2answers
697 views

WSE 3.0 crashes when ClearHeaders is called

I'm developing a client-server application in c# using WSE web-service. One of the things that the user can do is send jpg images to the server for backup via the web-service. Recently strange errors ...
0
votes
1answer
79 views

Removal of HTTP webrequest elements

I'm looking to remove certain elements from a HTTPWebRequest I have attached the elements I need to remove in an image (elements are coloured red): I've tried: ...
0
votes
1answer
47 views

Microsoft.Web.Services2.SoapClient.SendRequestResponse timing out even though the server is responding with a SOAP message

As I understand it, the best way to post some useful info you've learned is to ask the question yourself and then answer it, so here goes. The scenario: we have an app that contructs a SOAP request ...
0
votes
0answers
178 views

Problems connecting to WSE3 service with usernameForCertifcate policy using Metro

I am connecting to a WSE3 service and have been battling for more than a week now using Metro 2.1.1. Part of the problem is that the wsdl did not contain the policy assertions and the guys at the ...
0
votes
0answers
188 views

Issue while consuming WSE3 Web Service using WCF Service Reference

I'm having issues consuming a WSE3 web service by adding a 'Service Reference' for it in a VS2008 project (WCF method). The WSE3 service requires a Client and service certificate. I have a working ...
0
votes
3answers
255 views

Type Redefinition With WSE Web Service Import

Consider the following Visual Studio project structure ProjectA.csproj AClass.cs ProjectB.csproj References ProjectA Web References AWebService AWebService.csproj References ProjectA ...
0
votes
1answer
625 views

WSE 3.0 and SoapExtensions

I'm trying to consume an Axis web service with a .NET client and I'm having some trouble setting up the WSE configuration to work with it. I know that WSE 3.0 is an outdated technology, but I'm stuck ...
0
votes
1answer
262 views

WSE 3.0 + C# - Visual studio 2005

I'm working on a .NET client to connect to an AXIS web service and as a part of this I'm trying to implement all the required security headers. My development environment is VS2005 and I'm using C#. ...
0
votes
2answers
298 views

How do I invoke a WSE3.0 service to be deployed to Windows Server 2008?

One of our C# ASP.Net projects has some dependencies on the Microsoft WSE 3.0 library, in order to consume a WSE3.0 web service. However, we're migrating the project to Windows Server 2008, which does ...
0
votes
1answer
134 views

What is the WCF equivalent?

I am trying to port some code that is based on WSE3.0 to WCF. Basically, the old code has the following configuration: <microsoft.web.services3> <diagnostics> <trace ...
0
votes
1answer
1k views

WSE032 error, WebServicesConfiguration cannot load config. section

I have developed a small tool to upload salary information to the swiss administration and I used WSE 3.0 with success. But now, one of my customers has reported that on his machine, my program ...
0
votes
1answer
80 views

Derived type unknown to WSE 3.0 web service

I have a WSE 3.0 based web service, and a WinForms client application that makes use of the types defined in that service's References.cs, but subclasses them to provide some additional functionality ...
0
votes
1answer
371 views

WSE3 Destination vs URL

I have a vendor telling me that the SOAP header should not have https in it, but that we can still communicate via SSL. Our concern is that we want to communicate via SSL and that their sample code ...
0
votes
1answer
130 views

Specify a Proxy in config vs code for a WSE/SOAP web service

Is there a way to specify a WSE3 proxy in the config file instead of code. I figured out how to get it working in code as follows: valservice.Proxy = new ...
0
votes
2answers
670 views

Microsoft.Web.Services3.ResponseProcessingException

I deployed a web service that used WSE 3.0 to a test server. I am getting the cryptic error below. Have any idea what this means and how to fix it? Thanks in advance! ...
0
votes
1answer
281 views

Connect to an asmx page behind https, requiring sign only, using WCF

I'm trying to connect to a web service that requires me to sign with a certificate before I connect. In WSE 3.0, all I had to do is create a certificate policy and choose the "sign only" radio ...
0
votes
1answer
620 views

WSE 3.0 set content type

I've a simple question, for you, that I just can't seem to get my head around. The situation is the following: We create and send a request to a web service, using WSE 3. The web service is written ...
0
votes
1answer
617 views

Web Service Security: What are the pros and cons of WSE3.0 and WCF?

I'm developing a new set of web services at my company. My manager asked me to provide a greater level of security for this, as the web services will handle sensitive informations. I've searched the ...
0
votes
2answers
137 views

good resource about assert policies in WSE3

Hi where can i find a good resource about assert policies in WSE3 ?
0
votes
2answers
1k views

How to sign custom Soap Header?

I've added a custom soap header <MyApp:FOO> element to the <soap:Header> element and the requirments states that i must sign this element , how would one do that? <MyApp:FOO> ...