The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
12 views

Migrating client from wse 3.0 framwork 3.5 to WCF framework 4.0

Due to services provider reasons I had to upgrade my project (Framework 3.0) which uses Microsoft Web Services Enhancements 3.0 working fine to framework 4.0. Server side exposes Java web services, as ...
0
votes
0answers
8 views

Applying WS-I Basic Security Profile in WAS 7

There is no policy set labeled WS-I Basic Security Profile in WAS 7. Do you simply apply the WS-Security policy set to get this support? The "Basic Security Profile Compliance Tips" is not very ...
0
votes
1answer
11 views

Possible unicode interop issue between WCF and JEE when using signed messages over HTTPS?

I'm using the custom binding configuration below to sign the SOAP message with a certificate over HTTPS: System.ServiceModel.Channels.AsymmetricSecurityBindingElement asbe = new ...
0
votes
1answer
21 views

JAX-RS: Authenticate with multiple principals (more than just username)

Using a Jersey service, what would be the most elegant method to authenticate a user with more than just username and password? say, a Business Id, and username as the Principals, and password as the ...
1
vote
0answers
29 views

How to sign SOAP Message used ksoap2 library whit certificate x509 on Android app?

How I can sign my SOAP Message (for example UserToken in Header) used ksoap2 library for SOAP message and certificate x509 on Android app? I can send this message: <soap:Envelope ...
0
votes
0answers
7 views

How do I set PasswordType to PasswordText in my service-client

I am working with AXIS and SOAP to create a webserviceclient that updates the serverside with calendarevents. I got a .wsdl from my serviceprovider that I use to generate a Java API in Eclipse. When ...
0
votes
1answer
16 views

Error setting up ws-security (Apache Rampart/C) for UsernameToken authentication and NO encryption

I'm having problems setting up AXIS2/C web services (axis2/c 1.6.0) with Apache Rampart/C 1.3.0 (not to be confused with their java counterparts, aka just "axis2" and "rampart") for UsernameToken ...
0
votes
0answers
23 views

Consuming WS-Security protected webservice with WCF client

I'm trying to consume a soap webservice using a WCF/C# client. The server's wsdl defines its security policy in its wsdl file like this: <wsp:Policy wsu:Id="BindingSecPolicy"> ...
1
vote
0answers
52 views

How to send signed messages in BizTalk Server using WS-Security

I want BizTalk to send signed soap messages using WS-Security without encryption. My orchestration is using a dynamic send port. I have tried both, trying to configure a WCF-WSHttp Send Port like ...
0
votes
1answer
64 views

Client classes generated by cxf-codegen-plugin:wsdl2java missing Policies attached in WSDL

I used cxf-codegen-plugin to generate client classes: <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> ...
0
votes
0answers
52 views

HttpContext.Current.Request.ServerVariables[“REMOTE_ADDR”] Security

All,I have a stand-alone ePayment service which is implemented with an asp.net web service for my order management system , and I am using the CyberSource as the payment service, The responsiblity of ...
0
votes
1answer
58 views

username token in soap ws security http

This is the first part soap header I am trying to generate <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mhs="http://org/emedny/mhs/" ...
0
votes
0answers
32 views

Are X.509 certificates in WS-Security sent in clear or encrypted?

I have the following policy file on the client side, and Axis2 Rampart enforces it <wsp:ExactlyOne> <wsp:All> <sp:SymmetricBinding> <wsp:Policy> ...
1
vote
0answers
115 views

Custom authentication provider does not work after upgrade Symfony 2

Long time i was on Symfony 2.0 version and my custom authentication provider works. Now i decided to upgrade to newest version. First step was upgrade to 2.1, then 2.2 and so on. But i stuck during ...
0
votes
0answers
22 views

Cannot add service refererenc using WSDL

I am trying to connect to a service at some URL. The available documentation tells us to use WS-Security I have a service URl, wsdl. So now to create a service reference, it gives the following error ...
1
vote
0answers
36 views

Axis2 : Unable to engage Rampart module

I am getting the following error while trying to implement WS-Security using Rampart in Axis2. org.apache.axis2.AxisFault: Unable to engage module : rampart at ...
0
votes
1answer
101 views

Using Apache Rampart for Signature with JKS and Binary Security Token key identifier

I have to call a web service that was provided by a customer (some information below is masked for this reason). I've been provided with a java keystore that contains the private key that I need to ...
0
votes
0answers
10 views

include policy.xml in services.xml

Im developing several web services and policy configuration. Is there a way to have one policy.xml file and include it in the services.xml files? I have been trying to use just an import resource but ...
0
votes
0answers
66 views

Custom WCF binding for using HTTPS, WS-Security and X.509 Certificate

I need to consume a Java web service using a self-signed certificate. The certificate is being loaded properly but the server is always returning the fault response "An error was discovered processing ...
0
votes
1answer
25 views

SAML Service Provider Security

The Identify Provider within the system I am required to test is proprietary software, but the Service Provider is in house software. I have already implemented some basic attacks (removal of ...
0
votes
1answer
51 views

Set variable dynamically in flow is not working

I need to access a service using the JAX WS client. I need to provide a authentication token along with the call. I used the below configuration to pass a token in my Mule flow, but it is not ...
-1
votes
1answer
73 views

How to manually decrypt a SOAP message using openssl? [closed]

I asked this on Cypto Stack Exchange but no responses yet so thought I'd try my luck here too. I have a SOAP message like this (key data and encrypted data has been truncated): <s:Envelope ...
0
votes
0answers
31 views

Java Client for a web service that is using TransportWithMessageCredential security

I have a WCF web service with security mode set to TransportWithMessageCredential. My problem is how do you set the authentication header to a Java JAX-WS client. I generated the client using ...
0
votes
0answers
63 views

Consume a WebService with SoapClient using a local_cert

Hello all :) I have an Axis2 WebService with incoming request signing enabled (Rampart module using Signature in InflowSecurity setting). I'm trying to call it in PHP, using a local certificate: ...
0
votes
0answers
66 views

How to make WSS4J load the keystore password from a callback?

I'm using Apache CXF to build a Web Service. It uses Apache WSS4J to provide WS-Security functionality. I need to make a SOAP request and it must be signed. This is the content of the properties file ...
0
votes
0answers
29 views

Username Authentication with Symmetric Key with Metro Can not Work

Today,I want to try the Username Authentication with Symmetric Key Sample with Metro.When I use the default keystore and truststore,my service and my client work well.But when I use the keystore and ...
0
votes
1answer
137 views

Unable to invoke web service with security

I have crated a CXF JAXWS Service as below. I have provided a custom UserNameToken validator and a callback handler. But this is not working. It throws an error everytime. <http:inbound-endpoint ...
0
votes
3answers
113 views

Securing RESTful webservices (Jersey on TomCat)

I have implemented a number of web services using Jersey. What I need to do now is to secure them. This means I need to encrypt the data transferred and authenticate users. The server I'm using is ...
0
votes
0answers
11 views

InvalidSecurity response for soap request

i want to construct sample soap request for certain web service. Service requires ws-security with NO message encryption and message signing based on certificates. My sample query looks like ...
0
votes
0answers
30 views

SAMLToken (Signed) request failing because of WS Policy

I am implementing alternate authentication using UsernameToken or SAMLToken (Signed). I have configured below policy in my wsdl: <wsp:Policy wsu:Id="DoubleItPlaintextPolicy"> ...
0
votes
1answer
66 views

How to identify NAMESPACE, METHOD_NAME, URL and SOAP_ACTION from WSDL and SOAP message

I have some problem in parsing a SOAP web service. How can i identify the NAMESPACE, METHOD_NAME, URL and SOAP_ACTION from WSDL and also how can i handle using SoapObject. I want to call the soap in ...
3
votes
0answers
58 views

SOAP Super encryption WS-Policy

I want to encrypt the body of my SOAP message twice (super encryption). I am using Axis2 with Rampart. I am trying to change the policy of this scenario to encrypt it twice. I was looking at this ...
1
vote
0answers
78 views

How to implement WSS: X509 Token Profile 1.0 on a WCF Web Service (Server Side)

I'm newer at creating WCF web services and I'm trying to figure out how to create a WCF service that conforms to the WSS:X509 Token Profile 1.0. There are many posts about how to do the client ...
1
vote
0answers
111 views

Jax-ws client not detected by Websphere 7

we have a client jax-ws jar generated by a provider. when i put the jar inside a war (and then the war inside an ear) and i deploy the client in websphere inside RTC, the jar is not detected by the ...
2
votes
0answers
50 views

Sign of a SOAPMessage via SecurityTokenReference and Thumprint identificator with Apache CXF

Does someone could give an implementation idea for sighning of a SOAPMessage using Apache CFX library (like WSSecSignature and Crypto classes and related data structure) in order to have implemented ...
0
votes
1answer
84 views

stop WCF from caching / re-using security tokens (SecurityContextToken)

I am using WCF Message level security with the following wsHttpBinding <security mode="Message"> <message clientCredentialType="Windows" establishSecurityContext="false" /> ...
0
votes
0answers
383 views

WS-security UsernameToken. Howto set <wssse:Nonce> and <wsse:PasswordDigest> with Spring and CXF

I'm using Spring 3.2.0.Release, CXF 2.7.3 and Java JDK1.6.0_24. I'm using Wsse-security UsernameToken. This is working. Now a new requirement surfaced. The WS is going to implement 'replay attack ...
0
votes
0answers
90 views

Connect gsoap client with java soap server

I have a client that uses gSOAP that should interact with JAVA-based SOAP webservice. This webservice uses WS-Security. I already set up gSOAP so it can normally send requests to webservice, but i ...
0
votes
0answers
125 views

Writing a WS-Security policy for Axis2 Rampart

I am trying to write a WS Security policy for a webservice client and the webservice. I want to configure Rampart to include in the outgoing soap messages from the client the following: 1- An X.509 ...
0
votes
0answers
105 views

PHP implementation of SOAP ws-addressing and ws-security

I tried to call in PHP a SOAP webservice implemented in .Net using severals "extensions" like ws-security and ws-addressing. I used wsf/php (wso2), based on rampart and axis2, and I did not succed. We ...
1
vote
0answers
135 views

WebLogic JAX-WS EE client to WS-Security service on localhost

I have a JAX-WS endpoint which uses WS-Security, specifically the WebLogic pre-written Wssp1.2-2007-Wss1.1-UsernameToken-Plain-X509-Basic256.xml policy. I have a working command-line client where I ...
0
votes
0answers
73 views

org.jboss.util.NotImplementedException when consuming a soap webservice in jboss-5.1.0 GA server

I am testing my webservice client code which consumes a soap webservice which aslo needs ws-security authentication. I used apache cxf 2.3.0, wss4j 1.5.9,apache-cxf-rt-security 2.3.0 jars. However ...
0
votes
0answers
64 views

CXF- WS-Security with AES encryption

I might implement a webservice using CXF framework with this requirements: - UsernameToken - AES encryption The system might pass the secret key to WS before to call it. I tryed to config as follow ...
0
votes
0answers
53 views

Is WS-Security (XML Encryption) secure?

Reading the wikipedia page on WS-Security says it relies on XML encryption. The XML encryption page links to a site claiming that XML encryption has been broken (in 2011). How does this impact ...
1
vote
0answers
84 views

Mutual authentication with message protection in WCF

I'm trying to communicate with a web service that implements WS-Security with SOAP 1.1 and requires the client to sign both the body and the timestamp in the request. On the client-side, I'm using WCF ...
0
votes
1answer
131 views

java.lang.ClassNotFoundException when handling SOAP request with CXF on JBOSS

We have a web service implemented with CXF and runs on JBoss 5.1. Recently we've upgraded the CXF from 2.3.1 to 2.5.9. We have also added WS-Policy to our service so the soap request that comes from ...
0
votes
0answers
261 views

Error - MustUnderstand headers: [{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security] are not understood

I am trying to implement Digital Signature in WebServices. So I have used WSS4J Interceptors concept and I am getting this Error below. How to get rid of the Error? Is there anyway that we can ...
0
votes
0answers
55 views

WCF Service and OASIS Security

I have to develop a WCF Service and a client to consume it. The service must implement OASIS Username Token Profile security ...
2
votes
1answer
51 views

Choose automatically between two different policies in WS-SecurityPolicy

I would like to write an Optional policy for a web service using the WS-SecurityPolicy specifications, for example if the client has a certificate it can sign the Soap Header but if it doesn't it can ...
0
votes
0answers
127 views

WS-Security with SOAP and php

I'm trying to implement SOAP web service server with WS-Security. I looking for a complete example in how to implement WS-Security In SOAP web service using PHP. in both server side and client side. ...

1 2 3 4 5 9