Questions tagged [wse3.0]

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

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

53 questions
8
votes
2 answers

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 and error, I can call the WCF service from my WSE 3…
Kevin Krueger
  • 669
  • 8
  • 16
8
votes
2 answers

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 time doing this. The resulting SOAP message is…
csl
  • 10,937
  • 5
  • 57
  • 89
7
votes
1 answer

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 member of the SoapHttpChannelOptions class to false.…
blak3r
  • 16,066
  • 16
  • 78
  • 98
5
votes
5 answers

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 I do not want (and that the server is choking…
Mike Marshall
  • 7,788
  • 4
  • 39
  • 63
4
votes
1 answer

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 inheritance to WebServicesClientProtocol, but updating it…
icelava
  • 9,787
  • 7
  • 52
  • 74
4
votes
4 answers

"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 error:…
NealWalters
  • 17,197
  • 42
  • 141
  • 251
4
votes
0 answers

Configuration of WSE 3.0 value in ASP.NET application

My ASP.NET web application uses the WSE 3.0 protocol by referencing the assembly Microsoft.Web.Services3.dll, v2.0.50727 namespace Microsoft.Web.Services3 { public class WebServicesClientProtocol : SoapHttpClientProtocol { public…
GilliVilla
  • 4,998
  • 11
  • 55
  • 96
3
votes
2 answers

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…
MMC
  • 99
  • 15
3
votes
0 answers

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 SoapHeaderException: SOAP header Security was not…
Martin Hollingsworth
  • 7,249
  • 7
  • 49
  • 51
3
votes
1 answer

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:
Polina
  • 153
  • 3
  • 10
2
votes
2 answers

Is WSE 3.0 Supported?

Our client claimed, that WSE 3.0 isn't supported by Microsoft anymore. Is it true ? Where can I find more info about that ?
Norbert Ozdoba
  • 525
  • 5
  • 12
2
votes
1 answer

Using generic collections as parameters in ASMX web services

I have an ASMX web service which has a method - void DoSomething(List list); I have implemented this service, compiled and hosted in IIS. I used wsewsdl3.exe to generate the proxy. In the generated proxy the method definition is changed to…
Unmesh Kondolikar
  • 9,256
  • 4
  • 38
  • 51
2
votes
2 answers

"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 xml parser chokes over it. I always get an…
2
votes
2 answers

'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 work with WS-Security. So if the vendor doesn't…
NealWalters
  • 17,197
  • 42
  • 141
  • 251
2
votes
2 answers

How to sign custom Soap Header?

I've added a custom soap header element to the element and the requirments states that i must sign this element , how would one do that? contains a number of things (username, preferences, etc) that identifies a…
Carl-Johan
  • 103
  • 1
  • 7
1
2 3 4