User login

WSDL Mode wsf_wsdl_util.php

Forums :

In the function wsf_parse_payload_for_class_map(DomNode $payload, array $parameter_struct, $element_name, $class_map), neither $current_child or $parse_tree get set. It does not appear to stop whatever is happening from happening, but it does throw annoying errors.

 

    /* for now, we only support complex type sequences */

    //$child_nodes = $payload->childNodes;

    $current_child = $payload->firstChild;

    while($current_child != NULL && $current_child->nodeType != XML_ELEMENT_NODE)

    {

        $current_child = $current_child->nextSibling;

    }

    if($current_child == NULL)

    {

        return $parse_tree;

    }

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Hi, Looks like you are using

Hi,

Looks like you are using wsf/php 1.2.1. There are some schema constructs that are not supported in that version.

Can you send us the WSDL, so we may able to find what is wrong, And most of th popular constructs are going to be supported in the next release, (1.3.0), which is almost ready to ship. So it may straight away with the new release

 

Thanks

Dimuthu

It is problematic with

It is problematic with wrapperDeleteDatabase. Thanks!

 

Sean

AttachmentSize
FESDK_ID_SOAP.wsdl23.49 KB

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.