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 Franz Fehringer <fe...@isogmbh.de> on 2007/05/04 12:39:45 UTC

compile errors

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;

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

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

mailto:Franz.Fehringer@isogmbh.de
http://www.isogmbh.de

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



Re: compile errors

Posted by Franz Fehringer <fe...@isogmbh.de>.
Thanks Nadir.
The AxisConfiguration problem is tracked with AXISCPP-1013 (including 
solution).

Cheers

Franz


Nadir Amra schrieb:
> Franz,
>
> Made changes except for the AxisConfiguration errors.   Not sure about 
> that....
>
> Nadir K. Amra
>
>
> Franz Fehringer <fe...@isogmbh.de> 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: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>   


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

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

mailto:Franz.Fehringer@isogmbh.de
http://www.isogmbh.de

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



Re: compile errors

Posted by Nadir Amra <am...@us.ibm.com>.
Done!

Nadir K. Amra


Franz Fehringer <fe...@isogmbh.de> 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 <fe...@isogmbh.de> 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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: compile errors

Posted by Franz Fehringer <fe...@isogmbh.de>.
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 <fe...@isogmbh.de> 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: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>   


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

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

mailto:Franz.Fehringer@isogmbh.de
http://www.isogmbh.de

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



Re: compile errors

Posted by Nadir Amra <am...@us.ibm.com>.
Franz,

Made changes except for the AxisConfiguration errors.   Not sure about 
that....

Nadir K. Amra


Franz Fehringer <fe...@isogmbh.de> 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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org