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
0
votes
1 answer

How can you interop WSE 2.0 and 3.0 in a single project

As a part of my job, I need to add a new webservice to one our existing projects. Currently all of the services are ASMX webservices using WSE 3.0, but the new service needs to use WSE 2.0 SP3 because the vendor that will be calling it refuses to…
Jeffrey Lott
  • 7,171
  • 6
  • 28
  • 28
0
votes
0 answers

Consume WebService using RobRichards resources

I have to consume an ASP.net webservice. I have the definition of it in url: https://wsproves.orgt.diba.cat/AutoliquidacioGenerica/AutoliquidacioGenericaService.svc/mex?singleWsdl I need to call method called ConsultaAutoliquidacio. A…
0
votes
0 answers

Routing WSE 3.0 SOAP request through NAT

I'm trying to send a soap request to a WSE 3.0 service but can't get the request to work. It's working great when there is a direct connection between computer A and B. When there is a NAT device between them (A -> NAT -> B), I get an error in the…
Teh Swish
  • 99
  • 1
  • 12
0
votes
0 answers

SOAPEnvelope class replacement after WSE 3.0 decomission

I ran into an issue recently when in an existing Console Application project we're forced to remove a reference to WSE 3.0. When I tried to remove it from references (because I could not find where it's used) it turned out there is only one place…
Cosmin
  • 152
  • 3
  • 18
0
votes
0 answers

Consuming a Web Service in .Net with X509 token

Consuming a web service seems pretty straight forward in .net, you create the proxy and then use in code. The web service I am trying to hit has token security, so straight out of MSDN documentation I created the following method: public void…
Mark Kadlec
  • 8,036
  • 17
  • 60
  • 96
0
votes
1 answer

In WSE services, with custom types, do constructors work on the consuming client's side?

I have custom types in a WSE web service. the consuming client can't seem to see my constructor when instantiating a class, is this normal?
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
0
votes
1 answer

Partial use of WSE2

I'm coding a .Net web service that will replace an old one. In order not to break existing clients, I must not change the interface. That means no WSE to access this web service. The "old" web service was accessing directly to database. The "new"…
Johnny5
  • 6,664
  • 3
  • 45
  • 78
0
votes
1 answer

Problem while using MessageContract attribute : Exception -> End element 'Body' from namespace 'http://schemas.xmlsoap.org/soap/envelope/' expected

I am moving my WSE3 web services to the WCF. But the client is WSE3 client. All the Operation Contracts return an instance of the MessageContract classes. This works for 2 operations but somehow fails for one operation of the same service contract.…
Learner
  • 4,661
  • 9
  • 56
  • 102
0
votes
1 answer

IIS 10 Application permissions to access a Cert in Certificate Manager

I am a ASP and IIS noob. I live in a Linux terminal, so this is been a steep learning curve... I have a C# Web API written in .Net 4.6. The Web API communicates with a 3rd Party SOAP Web Service which requires SOAP requests to be signed using a…
LorneCurrie
  • 282
  • 3
  • 11
0
votes
3 answers

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 ReturnAClassViaWebService.asmx The issue occurs when…
matheeeny
  • 1,714
  • 2
  • 17
  • 32
0
votes
1 answer

WSE3.0 usage via PHP scripts

Is it possible to have PHP communicate with WSE3.0 (microsoft). I know it runs a RBO/LBO system for communicating between current software and the server. But I'm trying to integrate a web based version via PHP.
Michael Mikhjian
  • 2,760
  • 4
  • 36
  • 51
0
votes
1 answer

Add Microsoft WSE 2.0SP3 to Microsoft .NET container

I am trying to containerize a legacy application which relies on Microsoft WSE 2.0 SP3. I wrote a nupkg for the WSE 2.0 SP3 .msi and the application, and am able to install via the nupkg to a 2012R2 server (full GUI). However, when I try to…
justlearning
  • 49
  • 1
  • 1
  • 8
0
votes
2 answers

How to find X509SerialNumber

I'm building soap message which requires wse security and for some reason, the client requires KeyInfo, subject and serial #. but the serial # displayued for the x509 is hex and doesn't fit the xsd requirements for X509SerialNumber node which is…
Dustin Davis
  • 14,482
  • 13
  • 63
  • 119
0
votes
0 answers

Outgoing SOAP message encryption for WS

I need to access a WS method by C# and one of its requirements is encrypting the SOAP message with the server's certificate public key. They sent me, for testing, that certificate, but it expired some months ago. My questions are: How can I get the…
SySc0d3r
  • 652
  • 1
  • 6
  • 18
0
votes
2 answers

Calling WSE service from a .net 3.5 application

I am trying to call a .asmx (WSE) web service from a .net 3.5 application. This is possible correct? It seems when I add a web reference the API is completely different than when I add a reference in a .net 2.0 app.
Blankman
  • 259,732
  • 324
  • 769
  • 1,199