Tagged Questions
The wss4j tag has no wiki summary.
7
votes
3answers
308 views
Webservice Security and Windows Certificates
I want to sign webservice requests using Apache CXF and WSS4J. As far as I know, I would need a JKS store containing the certificate I want to use for signing.
There's the requirement to be able to ...
1
vote
1answer
77 views
ClassCastException with multiple wars deployed in Tomcat
I have two WARs deployed to the same Tomcat 7 instance, and both use CXF + WSS4J. The two apps communicate via SOAP, and WSS4J interceptors handle SAML assertions in the SOAP headers. When testing ...
1
vote
0answers
180 views
Cannot read the token from the 'SignatureConfirmation' element..(Java-WCF)
I have a WCF(3.5) client talking to a Java Web Service (Spring-WS, WSS4J), the client fails while recieving the response from server giving the following exception message
Cannot read the token ...
1
vote
1answer
110 views
What is the alternate to PasswordDigest when clear text password is not stored on the web-service producer?
Scenario:
Web-service producer have only SHA-1 hash of passwords stored in database. We need to authenticate Web-service users using User Name/Password combination.
Web Services Security ...
1
vote
0answers
263 views
How to encrypt a SOAP envelope in WSDL2JAVA generated client
I have been provided with some documentation for connecting to a 3rd party system and a wsdl. The documentation says to generate the client code using WSDL2JAVA, which I have done. but now it says to ...
1
vote
2answers
602 views
how to insert a SAML Assertion to SOAPHeader
NB-6.8 jdk-1.6.14 WSS4j-1.5.8 ,OpenSAML-2.3.0
I try to modify WSS4J-1.5.8 to operate SAML 2.0, and I could not insert a generated assertion to existing SOAP Header, the code like this:
Assertion ...
1
vote
1answer
2k views
Spring + SOAPExceptionImpl: Error during saving a multipart message
I have a spring web application with jsp pages that calls different web services and displays the results in a jsp page. The spring web application has username/login spring security attached to it.
...
0
votes
0answers
21 views
How to make wss4j to not create expires element in soap header
Is there any option in wss4j or cxf that controls whether <expires> element from ws-security is included in SOAP header.
What I want to achieve is that SOAP header contains only <created> ...
0
votes
1answer
42 views
How to turn off SecureConversationToken in WCF web service
I have a WCF web service with WS-* security and I need to write a Java client for it using WSS4J API.
But, as it turns out WSS4J does not support the <SecurityContextToken> and ...
0
votes
1answer
77 views
common webservice interceptor and UsernameTokenValidation compatible with Spring-WS and CXF
I have a scenario, where I want to configure a webservice security interceptor, and a UsernameTokenValidator and put this into say myws-security.jar. Which can be then be used by any webservice (be it ...
0
votes
1answer
94 views
Configure a common webservice interceptor and usernameTokenValidator compatible with Spring-WS and CXF
Right now I have below configuration for one of my WS endpoints.
<jaxws:endpoint id="myService" implementor="#myServiceImpl" address="/myService">
<jaxws:inInterceptors>
<bean ...
0
votes
2answers
252 views
Configuring WSS4J with CXF
I was doing pretty well with setting up a contract first set of web services using CXF until I started adding in the WSS4J piece.
I'm trying to debug sending a password and login in the soap header. ...
0
votes
0answers
102 views
place my custom interceptor after default org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor in cxf
I want to create a custom interceptor to access the x.509 certificate, and as I have read here:
...
0
votes
2answers
196 views
How to enable SignatureConfirmation element in an Apache CXF SOAP server
I have a soap client and also a soap server both using CXF. I have message signing working correctly. When I point my soap client at a different SOAP server using an IBM SOAP appliance, the reply ...
0
votes
0answers
252 views
Using keystores with Websphere and WSS4j
I am implementing a solution that includes using WSS4j for signature validation and decryption.There will be two key stores, one for each of these purposes.This is being done in a servlet webapp. For ...
0
votes
1answer
1k views
Apache CXF reverts to HTTP when should be using HTTPS
I'm trying to write a SOAP client to connect to a PeopleSoft web service that is expecting HTTPS with WS-security. I'm using Apache CXF for the client. Here's what I've done:
1) Added the server ...
0
votes
1answer
373 views
Invalid or Expired Security Context Token
I am trying to write a client to consume a .NET service secured through https and WS-security. (I don't have control over the server.)
We got everything communicating properly when we drop SSL and ...
0
votes
1answer
209 views
WSS4J kills SOAP envelope when used with SSL
I am trying to consume a .NET web service (secured with SSL and WS-Security - UsernameToken) with Axis (in Java).
I don't operate the service, I'm just building the client.
The operator of the ...
0
votes
1answer
537 views
Convert XML namespace prefixes with C#?
I have run into an exasperating problem getting a Java service client to communicate successfully with a WCF service. I have overcome many hurdles, and I believe that this is my last one. The problem ...
0
votes
2answers
612 views
Signing SOAP messages using WSS4J
We need to sign a SOAP message with a certificate in Websphere 7. Currently we are looking at using WSS4J from Apache and are approaching this in the java code itself.
Does anyone have any ...
0
votes
1answer
2k views
Inserting Username token in security header of already generated SOAP envelope gives me two headers!
I'm using WSS4J to add a Username token in the header of an already formed SOAP request envelope.
Here is what the SOAP request looks like:
<soapenv:Envelope ...