You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org> on 2005/02/02 04:28:21 UTC

[jira] Updated: (AXISCPP-360) compilation error when using APIs in BasicNode

     [ http://issues.apache.org/jira/browse/AXISCPP-360?page=history ]

Samisa Abeysinghe updated AXISCPP-360:
--------------------------------------

    Description: 
IHeaderBlock *phb=ws.createSOAPHeaderBlock("Test","http://apache.com");
		BasicNode *bn=phb->createImmediateChild(ELEMENT_NODE,"Name","ns2","http://axis.com",NULL);	
		const BasicNode *bn1=phb->getFirstChild();
		printf("%s",bn1->getLocalName());

gives the following compilation error.
error C2662: 'axiscpp::BasicNode::getLocalName' : cannot convert 'this' pointer from 'const axiscpp::BasicNode' to 'axiscpp::BasicNode &'
The same error occurs if we call other APIs also.

This compilation problem occurs only when the calling object is of type 'const BasicNode *'.


  was:

IHeaderBlock *phb=ws.createSOAPHeaderBlock("Test","http://apache.com");
		BasicNode *bn=phb->createImmediateChild(ELEMENT_NODE,"Name","ns2","http://axis.com",NULL);	
		const BasicNode *bn1=phb->getFirstChild();
		printf("%s",bn1->getLocalName());

gives the following compilation error.
error C2662: 'axiscpp::BasicNode::getLocalName' : cannot convert 'this' pointer from 'const axiscpp::BasicNode' to 'axiscpp::BasicNode &'
The same error occurs if we call other APIs also.

This compilation problem occurs only when the calling object is of type 'const BasicNode *'.


      Component: SOAP

> compilation error when using APIs in BasicNode
> ----------------------------------------------
>
>          Key: AXISCPP-360
>          URL: http://issues.apache.org/jira/browse/AXISCPP-360
>      Project: Axis-C++
>         Type: Bug
>   Components: SOAP
>     Reporter: James Jose
>     Assignee: Roshan Weerasuriya

>
> IHeaderBlock *phb=ws.createSOAPHeaderBlock("Test","http://apache.com");
> 		BasicNode *bn=phb->createImmediateChild(ELEMENT_NODE,"Name","ns2","http://axis.com",NULL);	
> 		const BasicNode *bn1=phb->getFirstChild();
> 		printf("%s",bn1->getLocalName());
> gives the following compilation error.
> error C2662: 'axiscpp::BasicNode::getLocalName' : cannot convert 'this' pointer from 'const axiscpp::BasicNode' to 'axiscpp::BasicNode &'
> The same error occurs if we call other APIs also.
> This compilation problem occurs only when the calling object is of type 'const BasicNode *'.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira