The soapfault tag has no wiki summary.
0
votes
1answer
420 views
resolve SoapFault exception: [HTTP] Unable to parse URL
I work on a projet which use a Soap based webservice queried by PHP and 2 native smartphone apps (ios and android) , after some edits made by the webservice development team, things were broken on PHP ...
0
votes
1answer
39 views
Please Help: PHP Fatal error: looks like we got no XML document
I'm getting crazy with this error I've tried all issues in forums nothing works I'm getting disappointed. Help Please with this
PHP Fatal error: Uncaught SoapFault exception: [Client] looks like we ...
0
votes
2answers
41 views
Catching the SOAP Fault error in custom interceptor (Soap12FaultOutInterceptor)
I wrote a custom CXF interceptor to log all the SOAP request and responses into the database and it seems to be working fine with positive test cases and server errors.
But when a SOAP Fault occurs ...
1
vote
0answers
34 views
Fatal error: Uncaught SoapFault exception: [Client] SOAP-ERROR: Encoding: object hasn't 'source' property in
I am trying to connect osticket support system with opencart.
I tried to integrate with this SOAP
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
$osticket = new ...
0
votes
1answer
783 views
Fatal error: Uncaught SoapFault exception: [HTTP] Error Fetching http headers
I'm trying to output "Hello World" using XML but I'm getting the following exception in my php page:
Fatal error: Uncaught SoapFault exception: [HTTP] Error Fetching http headers in ...
0
votes
0answers
46 views
reasons of SoapFault exception: [Client] looks like we got no XML document
I have tried to find where is the problem over three days. Does any one knows the main reason of this error
SoapFault exception: [Client] looks like we got no XML document
Stack trace:
[10:00:31] ...
0
votes
2answers
49 views
How to get faultstring in SoapFault?
I am calling Soap API in android and i get the below error,
SoapFault - faultcode: '2' faultstring: 'Access denied.' faultactor: 'null' detail: null
at ...
0
votes
2answers
49 views
How to parse soapfault's detail?
I am trying to get the values inside this soap fault's "detail", but I haven't found any ways of doing so.
The response from the server:
<?xml version="1.0" encoding="UTF-8"?>
...
-1
votes
2answers
3k views
Android 2.1 and Ksoap2-Android-assembly-2.4 — SoapFault Error
I am very new to Android and ksoap2 development. I have been searching on the forums for an answer to my error and still have not found a fix. Hopefully someone will be able to figure how to fix the ...
0
votes
0answers
71 views
PHP SoapServer addSoapHeader ignored with SoapFault
I have written a PHP SOAP Service that accepts Basic Authentication credentials as outlined at http://www.whitemesa.com/soapauth.html. I did this by defining a method BasicAuth inside the handler ...
0
votes
2answers
468 views
Spring Integration inbound webservices wsdl generation
I am trying to evaluate Spring Integration specially interested in exposing a simple POJO based service into a SOAP based webservice via service activator. Currently I am stuck & have issue ...
0
votes
0answers
81 views
How to add faultactor in the soapfault
I am using axis2 and I want to throw axis fault (SOAP1.1), my fault xml should be
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope ...
0
votes
0answers
65 views
FaultException in custom usernamepasswordvalidator
How can I send soapfault message to php soap inside my custom usernamepasswordvalidator and not make my program get unexpected exception... I want to deny access for clients that try to connect with ...
7
votes
1answer
204 views
Why WCF SoapFault responses are encrypted in some situations?
I am creating a WCF webservice whose requests/responses are supposed to be signed only.
For this, on ServiceContract attribute I have set
ProtectionLevel = ProtectionLevel.Sign
That works ok.
Due ...
0
votes
0answers
101 views
WCF SOAP Fault incorrect namespace
My web application (.Net 4.0) is hosting a WCF service, and communicating with an EAI Middleware (WebMethods I think)
When sending a Soap Fault (custom exception), the client is unable to handle it, ...