You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Rinsad Ahmed <ri...@opensource.lk> on 2005/01/03 05:15:45 UTC

Bug with Axis C++

The following Code segment doesn't compile properly with the AxisC++ 
libraries. Pls provide a quick solution for this issue
Regards
Rinsad 

Code:
const BasicNode * pChild = pIHeaderBlock->getChild(i);
        if(strcmp(pChild->getLocalName(),Constants.ADDRESS)==0)
            m_pAddress = new Address(pChild->getValue());

Error:
cannot convert from 'const class axiscpp::BasicNode *' to 'class 
axiscpp::BasicNode *'


Re: Bug with Axis C++

Posted by Samisa Abeysinghe <sa...@gmail.com>.
I fixed this in CVS, please test now.

Please report further problems, if any, through Jira.

BTW - Jira seems to be down - can you guys access it?

If it is down, you can always send a mail.

Thanks,
Samisa...


On Mon, 3 Jan 2005 10:15:45 +0600, Rinsad Ahmed <ri...@opensource.lk> wrote:
> The following Code segment doesn't compile properly with the AxisC++
> libraries. Pls provide a quick solution for this issue
> Regards
> Rinsad
> 
> Code:
> const BasicNode * pChild = pIHeaderBlock->getChild(i);
>         if(strcmp(pChild->getLocalName(),Constants.ADDRESS)==0)
>             m_pAddress = new Address(pChild->getValue());
> 
> Error:
> cannot convert from 'const class axiscpp::BasicNode *' to 'class
> axiscpp::BasicNode *'
> 
>