Click here to Skip to main content
15,894,896 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralFound where the bug is now Pin
Rocky#6-Sep-07 21:20
Rocky#6-Sep-07 21:20 
GeneralRe: Calling a template recursively?? Pin
Rocky#7-Sep-07 0:09
Rocky#7-Sep-07 0:09 
GeneralRe: Calling a template recursively?? Pin
George L. Jackson7-Sep-07 2:49
George L. Jackson7-Sep-07 2:49 
GeneralRe: Calling a template recursively?? Pin
Rocky#8-Sep-07 0:10
Rocky#8-Sep-07 0:10 
GeneralRe: Calling a template recursively?? Pin
Rocky#10-Sep-07 21:45
Rocky#10-Sep-07 21:45 
GeneralRe: Calling a template recursively?? Pin
George L. Jackson11-Sep-07 0:30
George L. Jackson11-Sep-07 0:30 
GeneralRe: Calling a template recursively?? Pin
Rocky#11-Sep-07 0:49
Rocky#11-Sep-07 0:49 
QuestionWDSL Jagged array problem Pin
sander BB4-Sep-07 23:20
sander BB4-Sep-07 23:20 
Hello,



i have a problem with retrieving a jagged array from my webservice the array looks like this:

Array ( [0] => Array ( [0] => id [1] => int(11) [2] => YES [3] => [4] => ) [1] => Array ( [0] => name [1] => varchar(255) [2] => YES [3] => [4] => ) )





SyncITSoap SyncITSoap = new SyncITSoap();

object columns = SyncITSoap.getColumns("", "", "syncit","test");

error message when the methode is called getColumns = {"The specified type was not recognized: name='Columns', namespace='http://server.e-ss.nl:8100/service', at <columns xmlns=''>."}



can somebody help me out? thx in advance


wdsl is this:

WDSL Jagged array problem

<?xml version="1.0" encoding="utf-8"?>
<definitions
name="SyncIT"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
targetNamespace="http://server.e-ss.nl:8100/service"
xmlns:tns="http://server.e-ss.nl:8100/service"
xmlns="http://schemas.xmlsoap.org/wsdl/">

<types>
<xsd:schema targetNamespace="http://server.e-ss.nl:8100/service" xmlns:impl="http://server.e-ss.nl:8100/service" xmlns="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="Database">
<xsd:all>
<xsd:element name="name" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="DatabaseArray">
<xsd:complexContent mixed="false">
<xsd:restriction base="soapenc:Array">
<xsd:attribute foobar:arrayType="tns:Database[]" ref="soapenc:arrayType" xmlns:foobar="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Table">
<xsd:all>
<xsd:element name="name" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="TableArray">
<xsd:complexContent mixed="false">
<xsd:restriction base="soapenc:Array">
<xsd:attribute foobar:arrayType="tns:Table[]" ref="soapenc:arrayType" xmlns:foobar="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Columns">
<xsd:complexContent mixed="false">
<xsd:restriction base="soapenc:Array">
<xsd:attribute foobar:arrayType="xsd:string[]" ref="soapenc:arrayType" xmlns:foobar="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ColumnArray">
<xsd:complexContent mixed="false">
<xsd:restriction base="soapenc:Array">
<xsd:attribute foobar:arrayType="tns:Columns[]" ref="soapenc:arrayType" xmlns:foobar="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>
</types>


<message name="getDatabasesRequest">
<part name="login" type="xsd:string"/>
<part name="password" type="xsd:string"/>
</message>

<message name="getDatabasesResponse">
<part name="databases" type="tns:DatabaseArray"/>
</message>

<message name="getTablesRequest">
<part name="login" type="xsd:string"/>
<part name="password" type="xsd:string"/>
<part name="db" type="xsd:string"/>
</message>

<message name="getTablesResponse">
<part name="tables" type="tns:TableArray"/>
</message>

<message name="getColumnsRequest">
<part name="login" type="xsd:string"/>
<part name="password" type="xsd:string"/>
<part name="db" type="xsd:string"/>
<part name="table" type="xsd:string"/>
</message>

<message name="getColumnsResponse">
<part name="columns" type="tns:ColumnArray"/>
</message>

<portType name="SyncITPort">
<operation name="getDatabases">
<input message="tns:getDatabasesRequest"/>
<output message="tns:getDatabasesResponse"/>
</operation>
<operation name="getTables">
<input message="tns:getTablesRequest"/>
<output message="tns:getTablesResponse"/>
</operation>
<operation name="getColumns">
<input message="tns:getColumnsRequest"/>
<output message="tns:getColumnsResponse"/>
</operation>
</portType>

<binding name="SOAP" type="tns:SyncITPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="getDatabases">
<soap:operation soapAction="urn:syncitsoap#getDatabases"/>
<input>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
<operation name="getTables">
<soap:operation soapAction="urn:syncitsoap#getTables"/>
<input>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
<operation name="getColumns">
<soap:operation soapAction="urn:syncitsoap#getColumns"/>
<input>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:syncitsoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>

<service name="SyncITSoap">
<port name="SyncITPort" binding="tns:SOAP">
<soap:address location="http://server.e-ss.nl:8100/service/service.php"/>
</port>
</service>

</definitions>

QuestionProblem in using call-template Pin
Rocky#4-Sep-07 23:13
Rocky#4-Sep-07 23:13 
AnswerRe: Problem in using call-template Pin
George L. Jackson5-Sep-07 1:51
George L. Jackson5-Sep-07 1:51 
QuestionHow to Check whether we can use XSL 2.0? Pin
Rocky#3-Sep-07 21:39
Rocky#3-Sep-07 21:39 
AnswerRe: How to Check whether we can use XSL 2.0? Pin
George L. Jackson4-Sep-07 0:34
George L. Jackson4-Sep-07 0:34 
GeneralRe: How to Check whether we can use XSL 2.0? Pin
ChrisKo4-Sep-07 13:40
ChrisKo4-Sep-07 13:40 
GeneralRe: How to Check whether we can use XSL 2.0? Pin
George L. Jackson4-Sep-07 16:26
George L. Jackson4-Sep-07 16:26 
Questionread xml using javascript Pin
pradeep kumarappagari3-Sep-07 1:37
pradeep kumarappagari3-Sep-07 1:37 
Questionhow to put a space between the word e,g 'LogConfig' = 'Log Config' Pin
Rocky#3-Sep-07 1:27
Rocky#3-Sep-07 1:27 
Questionxmlbulkload Pin
Panchal Hardik3-Sep-07 1:16
Panchal Hardik3-Sep-07 1:16 
AnswerRe: xmlbulkload Pin
Panchal Hardik3-Sep-07 2:40
Panchal Hardik3-Sep-07 2:40 
QuestionProblems with converting large .csv files to xml... Pin
tiasoft2-Sep-07 20:41
tiasoft2-Sep-07 20:41 
QuestionProblem in displaying the names of XML nodes Pin
Rocky#31-Aug-07 0:20
Rocky#31-Aug-07 0:20 
AnswerRe: Problem in displaying the names of XML nodes Pin
George L. Jackson31-Aug-07 10:52
George L. Jackson31-Aug-07 10:52 
GeneralRe: Problem in displaying the names of XML nodes Pin
Rocky#2-Sep-07 20:29
Rocky#2-Sep-07 20:29 
GeneralRe: Problem in displaying the names of XML nodes Pin
George L. Jackson3-Sep-07 4:39
George L. Jackson3-Sep-07 4:39 
GeneralRe: Problem in displaying the names of XML nodes Pin
Rocky#3-Sep-07 19:11
Rocky#3-Sep-07 19:11 
AnswerRe: Problem in displaying the names of XML nodes Pin
George L. Jackson31-Aug-07 11:41
George L. Jackson31-Aug-07 11:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.