If I create an OM element as below in my client & invoke the
"getTreeviewXML" method, how do I read the "location" I passed in using
my Axis2 service?

        OMFactory fac = OMAbstractFactory.getOMFactory();
        OMNamespace omNs =
fac.createOMNamespace("http://metasolv.com/rv3d";, "rv3d");
        OMElement method = fac.createOMElement("getTreeviewXML", omNs);
        OMElement value = fac.createOMElement("location", omNs);
        value.addChild(fac.createText(value, "12345"));
        method.addChild(value);

I copied this from the echo client, but the echo service just does a
"detach" and doesn't actually read the value.

Thanks in advance.

Wayne
[EMAIL PROTECTED]

Reply via email to