M
Marco
Hello,
I am realizing an application client in VisualStudio .NET 2002 with
Framework 1.1 in VisualBasic, and must communicate with a server
realized in java with Apache Axis version 1.2RC2.
I have used a console application and then I have added a webreference
and in the URL I have inserted the wsdl.
The code is simple:
Dim myStringa() As String
Dim i As Integer
Dim prova As New WebReference1.MySoapService
myStringa = prova.getStringArray("ok")
For i = 0 To myStringa.Length - 1
Console.WriteLine(myStringa(i))
Next
Console.In.Read()
When I execute the getStringaArray, It comes back the error "An
unhandled exception of type ' System.InvalidOperationException'
occurred in system.xml.dll".
Instead if I execute a getString it works correctly.
I have read of problems about deserialization of empty array but it is
not my case because the Array that would return is composed of 3
strings.
Which it could be the problem?
There are other parameters that I am ignoring?
From the server side, the user that has realized it says that it is a
my problem because the method getStringArray if called by a java
client works ccorrectly.
Thank you
Marco
I am realizing an application client in VisualStudio .NET 2002 with
Framework 1.1 in VisualBasic, and must communicate with a server
realized in java with Apache Axis version 1.2RC2.
I have used a console application and then I have added a webreference
and in the URL I have inserted the wsdl.
The code is simple:
Dim myStringa() As String
Dim i As Integer
Dim prova As New WebReference1.MySoapService
myStringa = prova.getStringArray("ok")
For i = 0 To myStringa.Length - 1
Console.WriteLine(myStringa(i))
Next
Console.In.Read()
When I execute the getStringaArray, It comes back the error "An
unhandled exception of type ' System.InvalidOperationException'
occurred in system.xml.dll".
Instead if I execute a getString it works correctly.
I have read of problems about deserialization of empty array but it is
not my case because the Array that would return is composed of 3
strings.
Which it could be the problem?
There are other parameters that I am ignoring?
From the server side, the user that has realized it says that it is a
my problem because the method getStringArray if called by a java
client works ccorrectly.
Thank you
Marco