WS-Security, or web service security is a soap extension which provides eg signing of soap messages.
Questions tagged [wsse]
147 questions
0
votes
0 answers
Custom headers WSSE authentification Angularjs
I am new to angularjs. I am trying to make a REST API request that requires WSSE authorization. I have included it in the header of the request, but it is still not working. Any advice?
sectorProvider.js
var defer = $q.defer();
this.getSectors =…

Taieb Baccouch
- 75
- 3
- 12
0
votes
1 answer
Custom WebLogic Web Service Policy
I use Weblogic 12.1.2 as the JavaEE container. I want to use my custom ws-security policy (because weblogic predefined ws-plocies has IncludeTimestamp and I want to remove this tag). Therefore I need one of the policies' xml file, for example…

Ali Abazari
- 429
- 4
- 20
0
votes
1 answer
Nusoap PHP Client - Error 500
Hi i'm trying to get some data through a WSDL file using NuSoap.
the path to the wsdl file and the endpoint are below in the example.
So far what I have is the following:
try {
require_once('../includes/nusoap/lib/nusoap.php');
…

Alex Baur
- 165
- 1
- 2
- 11
0
votes
1 answer
Connecting to DynamicsCRM2011 with Python and subs
I have a problem connecting to DynamicsCRM2011 through Python using suds module. I am getting the following error:
suds.transport.TransportError: HTTP Error 401: Unauthorized
My current code:
from suds.transport.https import…

Ivan Bilan
- 2,379
- 5
- 38
- 58
0
votes
0 answers
Insert security header in WCF
I am making a WCF appliaction in C#. Its all new to me and I am not sure what I am looking for but I will try to explain it as best as I can. I am having a problem with inserting a security header in SOAP message.
Here is my App.config file`

Luka Kovac
- 45
- 1
- 8
0
votes
1 answer
How to add custom elements to Wsse Security / Username Token in Suds
Default SOAP Username Token has the following elements:
USERNAME
PASSWORD
For the same I would to like an additional tokens…

Deep
- 51
- 14
0
votes
1 answer
gSOAP files has stray @
I am compiling a program using gSOAP with g++ and qmake. After hours of working around it, I got to this error from the compiler:
/usr/share/gsoap/import/ds.h:89:2: error: stray ‘@’ in program
@char* Id;
^
Taking a look in the files in…

Sheric
- 416
- 2
- 16
0
votes
0 answers
org.apache.wss4j.common.ext.WSSecurityException
I am trying to connect with my client to my server and send a message which is encrypted and signed. I have checked all my configuration to make sure it is the same at both ends but I keep getting to following error. Any ideas of what I may be doing…

Emanshaun
- 37
- 1
- 11
0
votes
1 answer
Symfony 2 - WSSE - FOSUserBundle - FOSRestBundle - Javascript
I try to incorporate WSSE Authentification. I have a symfony in back, and an app Ionic - AngularJS in front.
I followed the cookbook about WSSE, and theses tutorials…

Florent Guenebeaud
- 77
- 1
- 3
0
votes
1 answer
Symfony Rest API, WSSE and Bcrypt
I have a Symfony 2.7 installation with FosUserBundle (users), FosRestBundle (API) and NelmioCorsBundle (CORS). I followed some guides which were written at a (recent if I understand well) time where FosUserBundle was using SHA512 with a salt for…

adari
- 33
- 4
0
votes
2 answers
How to use wsse soap service in c#?
I tried this code to use a wsse enable SAOP request,but it does not work. Can I get some help?
wsResponseWrapper res = new wsResponseWrapper();
NetworkCredential myCredentials = new NetworkCredential(username, password);
this.srv.Credentials =…

Amritesh Anand
- 893
- 11
- 22
0
votes
1 answer
Securing Symfony RESTful API consumed by angular front?
I have set up a Symfony based API which is being used by an Angular front end which is totally dependent of it (User registration included)
I have read multiple threads recommending using WSSE or FOSOAuthServerBundle but I'm not sure about the best…

adaba
- 374
- 1
- 18
0
votes
1 answer
Accessing orocrm REST API by using WSSE from a remote server
I implemented a WSSE client to access my orocrm implementation REST API. It works if I run it on the same server, so I can say that it is correct. It doesn't work if I run it from another server on the same LAN (so I'm sure that only the local httpd…

Alessandra
- 467
- 2
- 6
- 24
0
votes
1 answer
setRequestHeader works when URL is local but not when URL is distant
My goal is to connect to Symfony throughout a WSSE protocole.
I have a code which works perfectly when I try to connect to Symfony locally but not when I try to connect to the same Symfony on a distant server. (All the code are the same, the only…

Eygle
- 99
- 1
- 6
0
votes
0 answers
WSSE web service call from different servers?
I have written the WSSE authentication provider in synfony 2.3.
http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html
I have generated header and calling web service.
It is working properly in same machine and when…

Rakhitha
- 159
- 1
- 5
- 15