Done!
Nadir K. Amra
Franz Fehringer <[EMAIL PROTECTED]> wrote on 05/09/2007 09:32:00 AM:
> Hi Nadir,
>
> Unfortunately the VC6 compiler environment is missing the clear()
> method in std::string.
> Therefore i would like to ask you to stick with erase().
>
> Cheers
>
> Franz
>
>
> Nadir Amra schrieb:
> Franz,
>
> Made changes except for the AxisConfiguration errors. Not sure about
> that....
>
> Nadir K. Amra
>
>
> Franz Fehringer <[EMAIL PROTECTED]> wrote on 05/04/2007 05:39:45 AM:
>
>
> Hello,
>
> Today i compiled the latest SVN using VC6SP6 on W2KSP4.
> I had to make the changes below to make this a success.
> Additionally AxisConfiguration cannot be linked due to a missing
> WinMain16 symbol.
> I think the latter error was fixed long ago by someone (Wayne Johnson?)
> on this list; seems the fix did not make it into SVN yet.
>
> Greetings
>
> Franz
>
>
> D:\Quellen\SVN\vc80\axis\c\src>svn diff
> Index: xml/XMLParser.h
> ===================================================================
> --- xml/XMLParser.h (Revision 535125)
> +++ xml/XMLParser.h (Arbeitskopie)
> @@ -197,7 +197,7 @@
> bool m_bCanParseMore;
> int m_iStatus;
> int m_iErrorCode;
> - string m_sErrorString;
> + std::string m_sErrorString;
> };
>
> #endif
> Index: transport/axis3/HTTPTransport.cpp
> ===================================================================
> --- transport/axis3/HTTPTransport.cpp (Revision 535125)
> +++ transport/axis3/HTTPTransport.cpp (Arbeitskopie)
> @@ -124,7 +124,7 @@
> {
> m_GetBytesState = eWaitingForHTTPHeader;
>
> - m_strReceived.erase(0);
> + m_strReceived.erase();
> m_iBytesLeft = 0;
> m_iChunkedDataLeftToConsume = 0;
> m_iNextChunkedDataSize = 0;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]