I suggest you ask a question on the PocketSoap discussion list. They
can help you fix your VB code.

On 2/21/07, Jose Benjamin Perez Soto <[EMAIL PROTECTED]> wrote:
Hello,

well, I've this problem, I'm generating code VB6 with "WSDL Wizard for
PocketSOAP 2.3.0" (
http://www.pocketsoap.com/wsdl/wsdl2.aspx), and wsdl I
generate it with axis2, but I have the following error:
------------------------------------------
 Run-time error '91'
 Object variable or With block variable not set
-------------------------------------------

But this error happens when I've the following class:

 package org.test;

 public class Test {
    public int add(int i1, int i2) {
        return i1 + i2;
    }

    public Persona getPersona() {
        return new Persona("asdf");
    }

    public void setPersona(Persona person) {
        System.out.println(person);
    }
 }

with the method setPersona gives the following error, with the client of
PocketSOAP.
Apparently when it receives a complex object as parameter is where it sends
the error.

Somebody knows of some other tool that generates code VB6, or as it could
solve this?

Thanks,

Ben

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to