Questions tagged [wse]

WSE is the obsolete Web Services Enhancements code from Microsoft. It has been replaced with WCF, is barely supported, and has no tooling support in Visual Studio versions after VS2005. It should only be used if you have no other choices at all.

WSE is the obsolete Web Services Enhancements code from Microsoft. I has been replaced with WCF, is barely supported, and has no tooling support in Visual Studio versions after VS2005. It should only be used if you have no other choices at all.

Note from the bottom of What's New in Web Services Enhancements (WSE) 3.0 that WSE 2.0 support is aligned with support for .NET 1.1 (mainstream support ended 10/14/2008). WSE 3.0 support is aligned with support for .NET 2.0 (mainstream support ends 4/12/2011).

Interesting Links

From Microsoft:

Other Sites and Blogs:

140 questions
23
votes
5 answers

Calling .NET Web Service (WSE 2/3, WS-Security) from Java

I need to call a web service written in .NET from Java. The web service implements the WS-Security stack (either WSE 2 or WSE 3, it's not clear from the information I have). The information that I received from the service provider included WSDL,…
Michael Sharek
  • 5,043
  • 2
  • 30
  • 33
13
votes
4 answers

Primer for X.509 certificates on Windows

I am presently studying the topic of encrypting and signing SOAP messages via WSE 3.0 or WCF. Since I have not participated in distributed application development involving the public Internet, I find my knowledge on X.509 ceritificates lacking and…
icelava
  • 9,787
  • 7
  • 52
  • 74
13
votes
5 answers

How do I mix message encoding types (Text/MTOM) in the Request & Response of a Web Service client application using WCF (or WSE 3)?

Here is my problem. I am hitting a web service (hosted on a Java based server) that will only accept text encoded Requests, but it returns MTOM Responses. What I've found is that if I set the web service to RequireMtom, it sends an Mtom request!…
komma8.komma1
  • 1,250
  • 2
  • 14
  • 20
12
votes
1 answer

How Do I Call XML SOAP Service that Requires Signature from .Net Core?

I realize that this question refers to old technology. I am calling a vendor system and have no ability to change the service. We are required to call an XML/SOAP WS and then sign the request. 10 years ago, I would have used something like Web…
Pete
  • 3,991
  • 3
  • 31
  • 30
10
votes
1 answer

(Attempting to) migrate from WSE 3.0 to WCF for client code

I have been all over the net for this. I've just been having a devil of a time doing it, and the vendor whose web service I'm trying to consume refuses to officially support WCF as a method of consumption. I'm no web services expert, so I'll do my…
Brian Warshaw
  • 22,657
  • 9
  • 53
  • 72
9
votes
6 answers

Adding an attachment to SOAP request

I am at a loose end as to how to add an attachment in my SOAP request. We have to consume a thrid party web service, built in java, which is the most convoluted thing I have ever come across. Any other web services we have used, that required…
anothershrubery
  • 20,461
  • 14
  • 53
  • 98
8
votes
4 answers

Analyzing why WCF much slower than WSE webservice

We have a web service with both WSE 3.0 endpoints and the newer WCF endpoints on .NET Framework 4.5. WCF is using basicHttpBinding. The problem is that the new WCF bindings appear to be significantly slower (~3x). Does it use the same mechanism…
7
votes
3 answers

WCF client passing username token with mustUnderstand set to true

I'm tasked with creating a WCF service that will be consumed by an external client. The client is using WSSE security, specifically, they're passing a username token via a SOAP header. The WCF service is hosted on an IIS server with SSL enabled. At…
w s
  • 203
  • 2
  • 3
  • 7
7
votes
2 answers

WebService RequestSoapContext property not found

I have a asp.net website in visual studio 2013. I added a webservice. I need to send authentication parameter (username and password) as SOAP header. But it cannot find the property RequestSoapContext. I added using Microsoft.Web.Services3; in my…
masum7
  • 822
  • 6
  • 17
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
6
votes
2 answers

How do I add an EncodingType attribute to the Nonce element of a UsernameToken in WSE 3.0 (.NET)

I'm trying to call a Java Web Service from an MVC3 .NET web app using WSE 3.0. However, the web service requires an "EncodingType" attribute on the Nonce element of the UsernameToken. Following is a sample SOAP envelope that works correctly with…
dwoood
  • 81
  • 1
  • 4
6
votes
2 answers

What Is The Microsoft.Web.Services2.dll

Can someone explain what this does and why its needed?
Jack Kada
  • 24,474
  • 29
  • 82
  • 106
6
votes
2 answers

Connecting to a WSE 3.0 Web Service From a WCF Client

I'm having difficulty connecting to a 3rd party WSE 3.0 web service from a WCF client. I have implemented the custom binding class as indicated in this KB article: http://msdn.microsoft.com/en-us/library/ms734745.aspx The problem seems to have to…
Dave
5
votes
3 answers

Soap response, not well formed XML, no XOP parts located, using WSE

I am consuming a web service in which I send off a request with an attachment and we receive a response from the server with various information. I have documented some problems with getting the request together in another question Adding an…
anothershrubery
  • 20,461
  • 14
  • 53
  • 98
5
votes
1 answer

Converting WSE example code to WCF

I am new to both WSE and WCF and I am trying to consume a web service using WCF but all the example documentation is for VS2005 + WSE. This web service uses WS-Security 1.0. I have added a service reference through visual studio but I am at a loss…
user94547
1
2 3
9 10