Click here to Skip to main content
15,885,985 members
Home / Discussions / C#
   

C#

 
AnswerRe: Databases Pin
originSH5-Sep-07 0:46
originSH5-Sep-07 0:46 
GeneralRe: Databases Pin
jblouir5-Sep-07 0:49
jblouir5-Sep-07 0:49 
Questionhow do I DeviceIoControl in C# Pin
gamitech4-Sep-07 23:31
gamitech4-Sep-07 23:31 
AnswerRe: how do I DeviceIoControl in C# Pin
Dave Kreskowiak5-Sep-07 5:13
mveDave Kreskowiak5-Sep-07 5:13 
QuestionSaving Animated Gifs Pin
pokabot4-Sep-07 23:20
pokabot4-Sep-07 23:20 
AnswerRe: Saving Animated Gifs Pin
Giorgi Dalakishvili4-Sep-07 23:38
mentorGiorgi Dalakishvili4-Sep-07 23:38 
QuestionSessionStateItemCollection.Dirty Pin
73amit4-Sep-07 23:17
73amit4-Sep-07 23:17 
QuestionWDSL Jagged array problem C# .net Pin
sander BB4-Sep-07 23:09
sander BB4-Sep-07 23:09 
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>
QuestionRegion Pin
Assaf824-Sep-07 23:03
Assaf824-Sep-07 23:03 
AnswerRe: Region Pin
Giorgi Dalakishvili4-Sep-07 23:14
mentorGiorgi Dalakishvili4-Sep-07 23:14 
AnswerRe: Region Pin
hotcodeking5-Sep-07 1:48
hotcodeking5-Sep-07 1:48 
Questionexporting data to excel Pin
lourensG4-Sep-07 23:01
lourensG4-Sep-07 23:01 
AnswerRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:16
mentorGiorgi Dalakishvili4-Sep-07 23:16 
GeneralRe: exporting data to excel Pin
lourensG4-Sep-07 23:42
lourensG4-Sep-07 23:42 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:51
mentorGiorgi Dalakishvili4-Sep-07 23:51 
GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:04
lourensG5-Sep-07 0:04 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili5-Sep-07 0:13
mentorGiorgi Dalakishvili5-Sep-07 0:13 
GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:16
lourensG5-Sep-07 0:16 
QuestiontxtBox_Leave Pin
Assaf824-Sep-07 22:56
Assaf824-Sep-07 22:56 
AnswerRe: txtBox_Leave Pin
I.explore.code5-Sep-07 0:05
I.explore.code5-Sep-07 0:05 
Questionhow to assign a Shortcut key for an Application ONLY in C#? Pin
pdoy07084-Sep-07 22:21
pdoy07084-Sep-07 22:21 
AnswerRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 22:28
mentorGiorgi Dalakishvili4-Sep-07 22:28 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 22:34
pdoy07084-Sep-07 22:34 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 22:44
mentorGiorgi Dalakishvili4-Sep-07 22:44 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 23:20
pdoy07084-Sep-07 23:20 

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.