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
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
0 answers

What's the difference between Request.Security.Tokens and Request.Security.Elements in WSE 3?

So I'm trying to get a WSE 2.0 SP3 client to work with a WSE 3.0 server. I'm running into an issue with this line of code on the client: transaction.RequestSoapContext.Security.Elements.Add(new MessageSignature(token)); I'm wondering how important…
Jeffrey Lott
  • 7,171
  • 6
  • 28
  • 28
2
votes
1 answer

Can you connect to ASP.net soap service using Kerberos authentication using MonoTouch?

I am trying to connect to an ASP.net soap service using Kerberos authentication using MonoTouch but it does not support WSE extensions. it returns a 401 auth failure. Was planning on doing something like…
2
votes
1 answer

Connecting legacy WSE client to WCF service... with no changes to client

We have a .NET 2.0 Forms App client, which connects to a asmx web service using WSE. We'd like to upgrade the service to WCF and utilise VS 2010 and .NET 4, however we're unable to force existing (corporate) customers to update their client…
user934503
2
votes
2 answers

Web service call slow from dev solution

Ok, I got an asp.net web service using WSE2. It runs on a xp machine. And I got the front end asp.net application in my win7 machine. both in Framework 3.5. In production environnement everthing is fine. The problem is, when I run the…
Johnny5
  • 6,664
  • 3
  • 45
  • 78
2
votes
0 answers

Invoking a Web Service Without using Web Reference with SOAP authencation in asp.net

I need to bind web service reference at run time with SOAP or WSE authentication in ASP.NET. i can handle this without authentication, but not getting the way to do this with SOAP or WSE authentication. Any one can help me please...
Pankaj
  • 4,419
  • 16
  • 50
  • 72
2
votes
2 answers

SetClientCredential visible in vs.net 2005 but not 2008

I add a web reference to my wse 3.0 service in Visual Studio 2005 and my intellisense shows the name of my service like MyServiceWse (it adds the WSE extension to the name). I also have access to SetClientCredentials() where I pass in my…
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
2
votes
1 answer

WSE2 to WCF: Signing a SOAP message

I need to covert code from WSE2 to WCF and need a few tips on how to implement signing a SOAP message with a X509Certificate2 object. WSE2 code: X509SecurityToken tok = new X509SecurityToken(cert); SoapContext cont =…
MacKee
  • 21
  • 1
2
votes
1 answer

Making the switch from WSE-enabled Web Services, is WCF the way to go?

We currently have a half a dozen of project which originally have been built using .NET Framework 1.1 and WSE 2.0. But Microsoft's support for WSE is lacking and the latest version of it (3.0) only targets .NET Framework 2.0. Our new projects will…
Mikael Koskinen
  • 12,306
  • 5
  • 48
  • 63
2
votes
0 answers

WSE 2.0 How do i generate digestvalue for the body

I am trying to generate a soap-message manually with python, without using anything like suds. I have examples from the partner i'm sending the message to and i can run for example the timestamp part through my c14n and sha1 function and get the…
2
votes
0 answers

"Action for ultimate recipient is required", unable to consume SOAP service

I have a SOAP web service I am trying to test but am unable to get anything to work. I do have access to the service's code, have tried calling from SoapUI, VS's service reference, and rolling my own XML, all to no avail. No matter what I do I am…
Joshua Ohana
  • 5,613
  • 12
  • 56
  • 112
2
votes
3 answers

WSE 2.0 SP2 on VS 2008

Is it possible to use WSE 2.0 SP2 under VS 2008? I realise that the add-in (that generates the proxy classes/configuration) is not compatible but there are work-arounds to this (copying over the files from a VS 2003 solution). Our web services are…
Colin Hardie
  • 23
  • 1
  • 4
2
votes
1 answer

Issue with Lumesse Web Services and WSSE plain text security

We're currently re-developing a legacy project that makes use of a SOAP web service from Lumesse, called over HTTPS. http://developer.lumesse.com/Getting_Started This is being consumed in a ASP.NET application; the original developer (who has long…
2
votes
0 answers

WSE 3.0 failed parsing the policy document

I am working on WebService Authentication with UsernameToken in WSE 3.0 using asp.net mvc in VS 2012. I created a sample application for authorized login. Error i get is "Failed parsing the policy document." on …
user1700961
  • 129
  • 2
  • 8
2
votes
2 answers

Importing wsdl using svcutil fails for security config

I try to access a java-webservice which uses ws-security (wsse). I tried to consume it using svcutil: svcutil *.wsdl *.xsd /language:C# /tcv:Version35 This works well, but I get an error importing this block in wsdl-file
UNeverNo
  • 549
  • 3
  • 8
  • 29
1 2
3
9 10