RE : WSDL2C: structure definition is generated in C file so sizeof fails compilation

2008-04-21 Thread Lefrancois, Carl
Hi Alebu, I may be mistaken, but there will be some type redefinition problems if the struct is defined in a header that is included by many other files. Is it possible to create an instance of the struct and use sizeof() on that at run-time? HTH -Message d'origine-

RE: RE : WSDL2C: structure definition is generated in C file so sizeof fails compilation

2008-04-21 Thread Kamath, Navin
better wait for more comments from experts before implementing it rapidly Regards, Navin From: Lefrancois, Carl [mailto:[EMAIL PROTECTED] Sent: 21 April 2008 14:26 To: Apache AXIS C User List Subject: RE : WSDL2C: structure definition is generated in C file

Re: WSDL2C: structure definition is generated in C file so sizeof fails compilation

2008-04-21 Thread Dimuthu Gamage
Hi alebu, It is really encouraged to use adb_my_type_create instead of explicitly using malloc to create the adb objects. I think create/free function should be completely able to fulfill your needs in managing object life. Thanks Dimuthu On Mon, Apr 21, 2008 at 6:08 PM, alebu [EMAIL PROTECTED]

Re: RE : WSDL2C: structure definition is generated in C file so sizeof fails compilation

2008-04-21 Thread Dimuthu Gamage
, Navin From: Lefrancois, Carl [mailto:[EMAIL PROTECTED] Sent: 21 April 2008 14:26 To: Apache AXIS C User List Subject: RE : WSDL2C: structure definition is generated in C file so sizeof fails compilation Hi Alebu, I may be mistaken