Questions tagged [wsse]

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

147 questions
2
votes
0 answers

PHP Set multiple SOAP Headers creates Error

I need to build the following XML in PHP.
monkee
  • 21
  • 2
2
votes
0 answers

Could not connect to host PHP SOAP fault for ws security enabled webservice

I am trying to fetch data from SOAP webservice but its giving me could not connect to host i tried many solutions in my code as following: require 'soap-wsse.php'; define('PRIVATE_KEY', 'technologyally.me.key.pem'); define('CERT_FILE',…
2
votes
1 answer

symfony2 skip urls from authentication

I am developing APIs with symfony2 and I have implemented WSSE authentication. I need to skip authentication for some the URLs as they will be publically accessible. Publically accessible URLs has format…
Rahul
  • 2,189
  • 7
  • 40
  • 60
2
votes
1 answer

Issue with Lumesse Web Services and WSSE plain text security

We're currently re-developing a legacy project that makes use of a SOAP web service from Lumesse, called over HTTPS. http://developer.lumesse.com/Getting_Started This is being consumed in a ASP.NET application; the original developer (who has long…
2
votes
0 answers

How to do a jQuery GET request to a cross domain WSSE REST web-service

I'm stuck with a CORS problem. I have developed a REST webservice using WSSE to secure it. The webservice has to be called from an hybrid mobile application throught a jQuery request. I'm trying to call the webservice methods via jquery but I got…
Gianluca78
  • 794
  • 1
  • 9
  • 24
2
votes
2 answers

Set token client side with Rest API in Symfony2

I made a Rest API with symfony2 on one server (S1). I made an application with symfony2 on one server (S2). S1 : Works well. It gives json response of user's informations, depends of url given. S2 : Works well. Ask url with curl. Use wsse in the…
ElJackiste
  • 4,011
  • 5
  • 23
  • 36
2
votes
1 answer

Sending a Public Key Encoded in Base 64 in Ruby using WSSE in SOAP

I'm trying to send a WSSE DSA public key encoded in base 64. I've been trying to use the Open SSL library to separate the public key from the cert file, but it seems that OpenSSL uses my entire cert file instead of extracting just the public key.…
John Kulp
  • 123
  • 1
  • 12
2
votes
2 answers

WSSE Authentication using FOSUserBundle

I have a problem when I want to authenticate a user with WSSE from my REST API created with Symfony. I followed the guide on the site symfony wsse authentication (http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html)…
Nept
  • 103
  • 2
  • 10
2
votes
3 answers

Create WSSE Auth SOAP call for WebServices API in PHP using SoapClient

I have the following from a vendor API: and I neeed to create a Soap call using php. How do I go about doing that? so far I have this: but it does not work: private function booking_soap_connect() { // the wsdl URL of your service to test …
CodeGodie
  • 12,116
  • 6
  • 37
  • 66
2
votes
0 answers

Creating custom firewall in Symfony 2.3

Creating custom firewall using WSSE is fine. But now I want to create custom firewall which doesn't contain methods like authenticate(TokenInterface $token) but contain custom methods which contain logic to authenticate and authorize.If we use WSSE…
stefun
  • 1,261
  • 3
  • 24
  • 54
2
votes
1 answer

Client for a WSSE-based service using C#

I have recently been writing a client for a WSS service. It is using the usernametoken profile according to it's documentation. And I have written something like this as a code to communicate it. But due to not allowing of anonymous authentication I…
Miad Abrin
  • 952
  • 7
  • 14
2
votes
1 answer

Symfony security strategy with two user providers?

I have an API that is in production being used by a single web site. We wish to open this up to other applications. The API is REST and uses Symfony 2. I have been looking at various security strategies and tested some out but am really stuck on how…
caxton
  • 203
  • 1
  • 3
  • 11
2
votes
1 answer

WSSE authentication paradox

I'm currently making some research on the WSSE protocol to secure my api. I've understood the basis and it is clear in my head. However I face to a problem. Let's say I want to generate a ONE-time Digest, I've to concatenate the timestamp, the nonce…
Trent
  • 5,785
  • 6
  • 32
  • 43
2
votes
0 answers

Use wsse soap locally

I have a problem of internet slowness and cutoff so I want to use the wsse soap file oasis-200401-wss-wssecurity-secext-1.0.xsd locally instead of using the link:…
1
vote
1 answer

weblogic.wsee.ws.init.WsDeploymentException: The WebLogic Server 9.x-style policy is not supported in JAX-WS

I have developed a webservice and deploy on weblogic 10.3 now i want to implement webservice security in that so that client provide username password token in header to access my webservice. I create file weblogic-webservices-policy.xml with policy…
ImranRazaKhan
  • 1,955
  • 5
  • 33
  • 74
1 2
3
9 10