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.
0
votes
0answers
49 views
consume Java Web Service in .NET Client
I have a Java Web Service at https://www.domain.com/service1
I need to consume this service in .NET Client.
This service requires WS Security UserName and/or RequestContext.username
I cannot add ...
0
votes
0answers
28 views
Troubles with WSE 3.0 when project upgraded to framework 4.0
At my company more o less 5 years ago I developed some applications over framework 3.5 to consume an exposed Oracle & Java web services (ASMX) from a company that follows certain SOAP standard ...
0
votes
0answers
54 views
Service Reference fails to deserialize correctly and puts null in fields (asp.net to asp.net)
So i'm having a weird issue with my service reference in my VS2010 project that i can't really figure out.
Any time i rebuild the soap service that the service reference is attached to i can no ...
0
votes
0answers
54 views
ASP.NET Web API and WSE 3.0 issue
I've built an API Layer the using ASP.NET Web API Framework. Everything's been working fine until recently when I had to integrate a 3rd party vendor's web service call into the API. It required WSE ...
0
votes
1answer
130 views
wsse Security Header with SAML
I need to consume the web service which is exposed by my service provider. I got the WSDL file from them. In SOAP request header I have to add the wsse:Security header with SAML assertion.
Please ...
1
vote
1answer
109 views
Using SAML2 Tokens with WCF channelfactory and Weblogic services
Help! :) I'm having no end of problems trying to get the following working(apologies in advance if I'm not using the exact correct terminology) :)
I need to get a .NET web application (client) ...
0
votes
1answer
82 views
How can I have a wcf service use my asp.net request/response filter?
I have an older soap web service using microsoft's WSE library. It's now not supported in our target .net framework and operating system. I have converted the service to use wcf on the server but ...
0
votes
1answer
296 views
“The signature or decryption was invalid” when trying to access web service over WSE or WCF
I've been given a WSDL and the URL of a webservice that I need to hit using C#. The webservice is accessed over HTTPS, and I was instructed that I need to sign the SOAP payload with a certificate ...
0
votes
1answer
53 views
NVP TransactionProcessorWse could not found
I am using a cybersource web service (http://www.cybersource.com/developers/).I am using simple order api.I have installed that software and wse 3.0.But in their sample project, i am getting error ...
0
votes
1answer
197 views
WSE Web Service Client SoapHeaderException
I am trying to build a client that interacts with a 3rd party SOAP Web Service. This web service requires WSE Security.
I generated an old school .asmx web service from the WSDL of the Service I ...
0
votes
1answer
69 views
Verifying the Tokens (WSE method) in WCF
My current method to verify the username and password (Tokens) in WSE is as follows:
public override void VerifyToken(SecurityToken token1)
{
if (token1 is UsernameToken)
{
string u1 ...
2
votes
1answer
208 views
How to consume a SOAP 1.1 web service with WCF and WSE Security?
The application that we are currently developing requires that we consume an antiquated web service. We don't have access to the server-side code, so we are having to probe the service in an effort to ...
2
votes
0answers
62 views
Issue migrating WSE 2.0 to 3.0
I am trying to migrating WSE 2.0 to 3.0 (This is a windows service that will consume WSDL)
For that I created a Custom policy PolicyAssertion, but in 'ProcessMessage' envelope I am not getting any ...
0
votes
0answers
99 views
Microsoft Web Services Extension 3: Custom UsernameTokenManager does not throw error if password is missing in SOAP Request
I am fairly familiar with how custom UsernameTokenManager works. It's all fine if a username & password is provided by the client in the SOAP request. If the client explicitly excludes the ...
0
votes
1answer
318 views
Is WSE supported in .NET framework 4 / 4.5? Will it ever be?
We have to interface with some third party software which uses WSE. We really need them to upgrade to WCF but first I need to check if WSE will ever be supported in .NET4 / VS2012?
Thanks,
Joe
1
vote
1answer
118 views
WS-security breaks signature in SOAP-message
I need to sign soap messages with one specific cryptoprovider. So I wrote a sub-class of SoapExtension that adds digital signature in stage SoapMessageStage.AfterSerialize and verifies it in stage ...
0
votes
1answer
1k views
Accidentally sticking SOAP Body inside of SOAP Header attempting to access WSE service with WCF client
I am attempting to hit a WSE secured web service using WCF. The SOAP header I need to generate to do this should contain a username, password, nonce, and created date... Here is a an example of a ...
0
votes
1answer
589 views
Problems while attempting to hit WSE secured webservice with WCF client: generating incorrect Header
This is a header that I would like to generate...
<soap:Header>
<wsse:Security soap:mustUnderstand="true" ...
0
votes
0answers
49 views
Different soapServerProtocolFactory for one [WebService] class
I'm trying to implement a Server-Side Asynchronous Web Method, and it works great with the normal .NET 2.0 web services stack. However, I need to integrate it into our existing, WSE 3-based web ...
0
votes
0answers
636 views
Consume Java weblogic web service having usernametoken and client certificate in ASP.Net
i need to consume a web service developed with java web logic server, usernametoken and client certificate are used to invoke the service.
and i got the java code to call web service as below
import ...
1
vote
0answers
246 views
wse3 PasswordDigest authentication from cxf
I'm extending a legacy .NET ASP application (it cannot be upgraded). It will have a SOAP web service which will be called from CXF (java). I have installed and configured WSE3 extensions on the .NET ...
0
votes
0answers
100 views
Getting Namespace error while accessing WSE service from WCF Client
I am trying to call third party service(WSE) from WCF Client using following custom binding dynamically.
public static CustomBinding GetCustomBindingFor509()
{
var httpsTransport = new ...
6
votes
1answer
1k views
(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 ...
1
vote
1answer
91 views
Do we need to implement some logic in Windows Identity Foundation's SecurityTokenService when user logs out?
I am implementing my own SecurityTokenService that's derived from the WIF's STS. Do I need to implement Cancel method compulsorily?
By default Windows Identity Foundation's SecurityTokenService is ...
0
votes
2answers
2k views
WSE 3.0 creates the UsernameToken but Username and Password values are empty
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
...
0
votes
1answer
99 views
What is WSE2QuickStartServer and can we use other certificate instead of this one?
In WSE, everywhere the WSE2QuickStartServer certificate is used to encrypt and sign the messages.
What is special about this certificate and can we use any other certificate? If yes, what ...
1
vote
1answer
171 views
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 ?
1
vote
1answer
955 views
Check if WSE 3.0 is already installed
I am ready to distribute a small utility to a large number of customers.
This utility requires WSE 3.0 (Web Service Enhancements) installed on the client machine because it needs to connect to a web ...
1
vote
0answers
178 views
Initializing WebServicesClientProtocol
I'm trying to use the WebServicesClientProtocol class to get a soapcontext to use dimeattachment (which is required for the ticketing system I'm working with). But as soon as I initialize the object ...
0
votes
0answers
270 views
Implementing WSSecurity/PasswordText authentication with WCF
I need to connect to a service written in Java that implements WSSecurity/PasswordText authentication. I'm having a difficult time implementing WSSecurity in a Visual Studio 2008 assembly.
I've tried ...
0
votes
0answers
240 views
RequestSoapContext.Current is always null
I need soapcontext to add an attachment to a request, yet whenever I call
Dim reqContext As SoapContext = RequestSoapContext.Current
RequestSoapContext.Current always gives me a null value and I ...
0
votes
2answers
231 views
Using SOAPContext in Visual Studio vb.net
I'm working on a form and need to use SOAPContext and DimeAttatchment. Neither classes are recognized. I tried adding 'Imports Microsoft.Web.Services2' but I get a green line and the package does not ...
0
votes
1answer
436 views
Migrate WSE 2.0 web services from Windows 2003 to Windows 2008 R2?
Just wondering if it is possible to migrate WSE 2.0 web services (.asmx) from a Windows 2003 server to a Windows 2008 R2 server (IIS 7)? A further complication is that the services uses x509 ...
1
vote
1answer
630 views
WSE 3.0 - Byte array being encoded as Base64 and not “MTOM-ing” to binary
I have a couple of other questions on here surrounding this area but they are a bit redundant now. Any answers to them would also be appreciated but this question is my main concern at the minute.
I ...
0
votes
0answers
751 views
Getting MTOM/XOP attachments to work in WSE, see Edit 3 - 5
I have 2 other questions on here surrounding this area, namely Adding an attachment to SOAP request and
Soap response, not well formed XML, no XOP parts located, using WSE.
The reason for this ...
5
votes
3answers
2k views
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 ...
0
votes
0answers
261 views
how to consume WSE Webservice in WCF client
Hi Can someone please help me consume the web service which expects something like the WSDL below which is using Microsoft WSE for security. I want to consume using WCF.
<?xml version="1.0"?>
...
0
votes
2answers
286 views
ASP.NET MVC 3 and WSE 2.0
I've an ASP.NET MVC 3 project and have been tasked with implementing a few UI controls. I need to call a few web services and bind the data to the UI controls. The problem is the web services host (we ...
0
votes
1answer
72 views
Is there a way to insert “wsmp:” in to the soap method request in c#?
I have need to build a c# web client that can consume an existing java weblogic web service that uses wsse security. Changing the existing java weblogic web service to work with C# is not an option. ...
3
votes
6answers
3k views
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 ...
0
votes
0answers
52 views
How to access a WCF service given only “Base address and Binding”
I am searching for a method to configure the client for the WCF service given only "Binding and Base Address". Please suggest some method for that.
1
vote
0answers
218 views
WSE 3.0 using x509 certificate for signing wcf message
Please can you please help to use x509 certificates for signing . I am using WSE 3.0 for visual sturio 2010 c#.
error message is
{"WSE101: An asynchronous operation raised an exception."}
and inner ...
0
votes
1answer
160 views
WS-Security Framework 1.1 .Net
I'm trying to consume a web service with WS-Security done in Java, from my ASP.NET 1.1 Application. When I call the method of the service, the app shows an error about the proxy, then I create a proxy ...
2
votes
3answers
3k views
New to 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 ...
2
votes
1answer
352 views
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 ...
0
votes
1answer
213 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 ...
2
votes
2answers
2k views
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 ...
1
vote
1answer
327 views
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 ...
0
votes
0answers
205 views
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 ...
1
vote
2answers
621 views
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 ...


