Thu Feb 28, 2008 11:44 am |
Replies: 7 |
Views: 6962 |
|
 |
no, that's not an option. But that doesn't matter anyway since in the wrapper functions i catch thrown exceptions to convert them to soap faults. The classes used can be used locally too but there an ...
|
Wed Feb 27, 2008 7:38 am |
Replies: 7 |
Views: 6962 |
|
 |
ok, so i will wrap the class methods in standalone functions.
thanx
|
Wed Feb 27, 2008 7:37 am |
Replies: 1 |
Views: 4192 |
|
 |
Hi,
i'm trying to figure out how to have several bindings in one wsdl. Is that possible at all?
I'd like to do it like they do it here: auktionmaster.channeladvisor.de/api/1.0/docu/index.html
I ...
|
Tue Feb 26, 2008 6:10 pm |
Replies: 7 |
Views: 6962 |
|
 |
Hi,
is it possible to register a class method instead of a standalone function?
class myclass
{
function myfunction()
{
// do something
return true;
...
|
Sun Oct 14, 2007 5:25 am |
Replies: 0 |
Views: 6046 |
|
 |
Hi,
i have 3 questions concerning nusoap & WSDL generation:
1. I have a function that is supposed to return an array. But on occasion this array contains nothing (which is ok). The problem n ...
|
Tue Mar 06, 2007 7:47 am |
Replies: 4 |
Views: 7637 |
|
 |
If SOAP Header is what they expect, that's the way.
OK, thanx. That's basically the answer to my question. I was wondering if there are functions for adding soap headers.
|
Tue Mar 06, 2007 7:34 am |
Replies: 4 |
Views: 7637 |
|
 |
// create SOAP header for Newsgator API
$hdr = "<ng:NGAPIToken xmlns:ng='http://services.newsgator.com/svc/Subscription.asmx'>
<ng:Token>$token</ng:Token> ...
|
Tue Mar 06, 2007 4:34 am |
Replies: 4 |
Views: 7637 |
|
 |
Hi,
i want to use a webservice that obviously wants me to pass authentication information in the soap header. When i simply access a service using the soap proxy i get a soap fault saying "Exp ...
|
Thu Nov 02, 2006 3:23 am |
Replies: 14 |
Views: 34348 |
|
 |
Hi,
what do you mean? WSDL is not needed for the service to RUN properly. It is only needed to tell a client how to access the service correctly. In my case WSDL is only needed when there are chang ...
|
Wed Aug 16, 2006 2:01 am |
Replies: 7 |
Views: 11629 |
|
 |
I also set soap_defencoding to UTF-8 and called the WSDL with my own nusoap client:
/**
* charset encoding for outgoing messages
*
* @var string
* @access public
*/
//va ...
|
Wed Aug 16, 2006 1:43 am |
Replies: 7 |
Views: 11629 |
|
 |
For testing i changed the fallback branch to UTF-8, even AFTER the else part so it would definately end up with UTF-8 no matter what:
if(isset($this->headers['content-type'] ...
|
Tue Aug 15, 2006 6:04 am |
Replies: 7 |
Views: 11629 |
|
 |
i assume the first suggestion depends on the client (which is not on my end). decode_utf8 is set to true here which is the standard setting. To check myself i ran the wsdl page in firefox which produc ...
|