Questions tagged [wsse]

WS-Security, or web service security is a soap extension which provides eg signing of soap messages.

147 questions
0
votes
0 answers

Canonicalization node not closed properly

TL;DR node winds up with too many children when using wse-php I'm using wse-php to sign a SOAP request. I've used plain XmlSecLib to sign Saml in the past, but when using wse-php to construct my security node and sign a…
ginc
  • 1
  • 2
0
votes
1 answer

org.apache.http.client.ClientProtocolException while working with WSSE Security Service in JMeter

I am working on WSSE Security Service and trying to apply load on the load using JMeter. Followed the below steps: First executed the WSSE Security service request in SoapUI. Now using JMeter proxy in SoapUI recorded the WSSE Security request date…
Sri
  • 3
  • 4
0
votes
0 answers

wsse:Security Apache-cxf SOAP Web-services exception

We have a legacy SOAP web-services that we are rewriting so we have taken the WSDL files from old web-services and wrote the service side web-services using apache cxf. There are several clients that are using these web-services (so we cannot change…
0
votes
0 answers

soapui binarysecuritytoken not matching the one generated in C#

We are trying to connect to an external api from our organisation via soap. When we do the connection via soap ui with the wsse security as binarysecuritytoken(using pfx certificate) it works fine and yields the expected output. Since we are going…
mavrav
  • 550
  • 2
  • 6
  • 13
0
votes
0 answers

SOAP webservice call returning null but Postman it give result

Calling a SOAP webservice as below. Security used by the client is Wsse security DD.WritePortTypeClient client = new DD.WritePortTypeClient(); using (OperationContextScope scope = new…
Sachu
  • 7,555
  • 7
  • 55
  • 94
0
votes
0 answers

SOAP Request with WSSE-Header in Javascript

I have the following code to execute a SOAP request with an wsse header but it seems not to work. I get a error response but I am not able to get the fault/error out of the response. Does the below code look correct or do I miss something? var…
0
votes
0 answers

Setting up WSSE for WCF service

I´m looking for a way to add the following WSSE XML data into a SOAP request to a service:
0
votes
1 answer

How to generate wsse header in flutter (dart)?

I want wsse header generated in flutter like this https://doc.oroinc.com/api/authentication/wsse/
0
votes
0 answers

How to add WSSE header in web service request

I have to add password text in WSSE header request before sending the request to another system from BizTalk. Have coded a helper class to generate the Nonce and send attached it to WCF headers inside orchestration. When testing getting error saying…
0
votes
1 answer

Use WCF to consume a SOAP service protected by basic auth & certificate

I'm trying to build a client in Visual Studio 2019 that will consume a SOAP Service that is protected using an id/pass and cert. I created a SoapUI project by importing the WSDL and then configured the ws-security settings on the project to have…
user263097
  • 294
  • 1
  • 4
  • 15
0
votes
0 answers

Generate web service security using binary security token in ColdFusion

I need to access the SOAP web service methods via ColdFusion CFHTTP. I can able to access the SOAP web service method. But, It's asking Wsse security header. I need to pass the wsse security header in the SOAP request. So, I searched with Google and…
jawahar N
  • 462
  • 2
  • 13
0
votes
1 answer

How can I generate the CipherValue of an EncryptedKey with rsa-oaep-mgf1p encryption method and sha1 digest method?

Anyone know how can I generate the CipherValue of the EncryptedKey? This example was generated with VB.Net I suppose there is something like encrypt a token with the public key and a SHA1 of this token but I have no idea how it combined. I want to…
0
votes
1 answer

Where does IContextChannel client.InnerChannel come from this WSDL?

I am trying to overwrite the headers to have the push method called in this WebService but the IContextChannel InnerChannel argument does not exist in the definition. I made the SecurityHeader class as indicated by the response of the article in the…
0
votes
0 answers

gSOAP wsse plugin - what is the proper procedure for signing requests?

I'm using gSOAP (2.8.16 - yes it's old) to develop a C++ client on RHEL that talks to a service that requires messages to be digitally signed. The signature is based on a wsu:Timestamp element. I'm using an X509 (PEM) certificate with an RSA…
John Bode
  • 119,563
  • 19
  • 122
  • 198
0
votes
1 answer

Why can't I decrypt this xmlsec encrypted WSSE enhanced soap message?

I have used py-wsse from PIP but it seems broken. I've refactored/fixed it up to Add X509 standards : Signature block with signing, and public/private key usage via a certificate I was able to encrypt/decrypt this using plain old XMLSEC, after…
Kent Wong
  • 566
  • 1
  • 6
  • 20