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]



--
Dr. Franz Fehringer (Dipl. Math.)
Projektleiter Touristik-Systeme
____________________________________
ISO Software Systeme GmbH
Eichendorffstrasse 29
90491 Nürnberg
Germany

Tel.: +49/(911) - 99594-0

mailto:[EMAIL PROTECTED]
http://www.isogmbh.de

Amtsgericht Nürnberg HRB 18299
Geschäftsführer: Dipl.-Inform., Dipl.-Kaufm. Harald Goeb
Sitz: Nürnberg


begin:vcard
fn:Dr. Franz Fehringer
n:Fehringer;Franz
org:ISO Software Systeme
adr;quoted-printable:;;Eichendorffstrasse 29;N=C3=BCrnberg;;90491;Deutschland
email;internet:mailto:[EMAIL PROTECTED]
tel;work:+49/(911) - 99594-0 
tel;fax:+49/(911) - 99594-580
x-mozilla-html:TRUE
url:http://www.isogmbh.de/
version:2.1
end:vcard


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to