[ 
http://issues.apache.org/jira/browse/AXISCPP-757?page=comments#action_12316747 
] 

Oleg Yurkevich commented on AXISCPP-757:
----------------------------------------

So, we have next situation.

NodeIO class is automatically generated stub for axis service.
gdi class is wrapper for stub methods.

char* gdi::getOpenDataNode(char* path)
{
    .....

    try {
        NodeIO ws;

        iResult = ws.getOpenDataNode(path);

        ......

        return iResult;
    }
    catch (AxisException & e)
    {
      ......
    }
}

In all methods of gdi class we create new NodeIO object and try to use it. 
Exception is thrown when NodeIO class tries to extends Stub class of axis.

On that step there is no any usage of Axis server. We just want to create new 
instance of NodeIO (Stub) object.

Is AXISCPP_DEPLOY variable necessary in this case?


> DLOPEN FAILED in loading parser library
> ---------------------------------------
>
>          Key: AXISCPP-757
>          URL: http://issues.apache.org/jira/browse/AXISCPP-757
>      Project: Axis-C++
>         Type: Bug
>     Reporter: Oleg Yurkevich

>
> Mistake "DLOPEN FAILED in loading parser library" is in <here>
> NodeIO::NodeIO()
> :Stub(" ", APTHTTP1_1)
> {         //   <here>
>       m_pCall->setEndpointURI("http://localhost:65535/axis/services/NodeIO";);
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to