Re: [Axis2]Guthtila XMLStreamWriter

2005-09-28 Thread nandika jayawardana
Hi , In java stax api implementation , both reader and writer API s are supported ,so if guththila also supports a Writer API it will be  complete and very useful. Regards Nandika On 9/28/05, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Hi Dinesh,Any plans to implement the writer API in gut

Re: [Axis2] Coding Style for Axis2/C

2005-09-28 Thread nandika jayawardana
Hi, I am also ok with axis2c prefix , Nandika On 9/28/05, Damitha Kumarage <[EMAIL PROTECTED]> wrote: Hi,Samisa Abeysinghe wrote:> Sanjiva Weerawarana wrote:>>> On Wed, 2005-09-28 at 21:44 -0600, Lilantha Darshana wrote:>>> IMHO, I would suggest prefixing all names with 'axis2c' makes difficu

[Axis2]patch

2005-09-29 Thread nandika jayawardana
Hi all, There is some changes to the om code please apply this patch Nandika patch Description: Binary data

[AXIS2] guththila

2005-09-30 Thread nandika jayawardana
Hi dinesh, Guththila currently supports a subset of stax api , is it possible to support the following methods... getPITarget() getPIData() getAttributeNamespace getText for DTD if other methods  can be supported it would be just great... Thanks Nandika

Axis2[ patch ]

2005-10-04 Thread nandika jayawardana
Hi all, I have some changes to axis2_om_node.h file. Please apply this patch. Thanks Nandika. diff Description: Binary data

AXIS2C [ stax_builder completed patch ]

2005-10-06 Thread nandika jayawardana
Hi all. The Guththila based builder for om is completed. Please apply this patch Nandika. patch.patch Description: Binary data

AXIS2 hashwrapper

2005-10-11 Thread nandika jayawardana
Hi All, Since apr is supposed to be kept outside the code of axis2 , I wrote a wrapper to apr_hash which has been used in the code. so pls commit this code Thanks nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License

AXIS2 hashwrapper

2005-10-11 Thread nandika jayawardana
Hi All Since apr is supposed to be kept out of axis2 code I wrote a wrapper to apr_hash. Please commit these two files Thanks Nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file exce

AXIS2 hashwrapper

2005-10-11 Thread nandika jayawardana
Hi all, since apr is supposed to be kept out of the axis2 code , i wrote a wrapper to apr_hash which has been used in the axis2 code I have atttached the axis2_hash.h and axis2_hash.c files and a test. Thanks Nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under

Axis2 [ changes to axis2_qname and axis2_om_attribute ] patch

2005-10-13 Thread nandika jayawardana
Hi all, I have made some changes to axis2_qname and axis2_om_attribute. pls apply this patch Thanks Nandika patch.patch Description: Binary data

Axis2 Patch [ axis2_om_node changed ]

2005-10-14 Thread nandika jayawardana
Hi all, I have changed axis2_om_node, pls apply this patch . Thanks nandika patch.patch Description: Binary data

Re: some additions to axis2_defines.h

2005-10-19 Thread nandika jayawardana
Sorry I guess this is meant for axis2 regards nandikaOn 10/19/05, Damitha Kumarage <[EMAIL PROTECTED]> wrote: Hi,I'll add following code into axis2_defines.h to identify callingconventions on different platforms#if defined(__GNUC__)#define AXIS2_CALL __attribute__((cdecl))#else /* unix or win32 */

[Axis2] some additions to axis2_defines.h

2005-10-19 Thread nandika jayawardana
-- Forwarded message --From: Damitha Kumarage <[EMAIL PROTECTED]>Date: Oct 19, 2005 2:04 AM Subject: some additions to axis2_defines.hTo: axis-c-dev@ws.apache.orgHi,I'll add following code into axis2_defines.h to identify callingconventions on different platforms #if defined(__GNUC_

[AXIS2] adding allocator stuff to guththila and removing apr

2005-10-19 Thread nandika jayawardana
Hi all, allocator, environment etc will be added to guththila code just like it was done to axis2 code, so if any one is going to make changes to guththila code pls use the code in svn so that changes can be easily applied . Regards nandika

[Axis2 ] How to free namespaces in om

2005-10-26 Thread nandika jayawardana
Hi all, In current om implementation, om nodes can be created programmatically as well as using the builder .When om elements are created programmatically , many om_elements will be pointing to the same namespace struct instance if it was given as the namespace in creating  elements. Now when axis

Re: [Axis2] New changes to environment

2005-11-02 Thread nandika jayawardana
Hi all, Adding a macro to check the environment null condition  in the axis2_environment.h will be useful in writing code , This macro would be like AXIS2_ENV_CHECK(env,error_return) , which will check the env passed and create a default environment if the environment is null and then set error co

[AXIS2C ] Using a macro to convert between impl_t structs and interface structs

2005-11-03 Thread nandika jayawardana
Hi All ,  By using a macro to convert between _impl_t struct and  interface struct can make life easier in writing code since we can replace castings with  macros. Eg To convert between axis2_om_node struct and axis2_om_node_impl_t struct we can use a macro AXIS2_INTF_TO_IMPL(node)  ((axis2_om_n

[AXIS2] Suggestion for change in coding convention

2005-11-03 Thread nandika jayawardana
Hi all, For formating function signature , can we use the follwing formatting eg axis2_status_t AXIS2_CALL axis2_om_node_set_parent(axis2_om_node_t *om_node, axis2_env_t **env, axis2_om_node_t *parent); This will

[AXIS2] using a macro for parameter checking

2005-11-03 Thread nandika jayawardana
Hi all, I think we can use a macro for parameter validation in the code, currently for all in parameters to functions we use if(!param) { (*env)->error->error_number = AXIS2_ERROR_INVALID_NULL_PARAMETER;     return NULL; /* or appropriate return type */ } these lines are repeatedly used eve

[AXIS2] patch qname modified with a clone method

2005-11-06 Thread nandika jayawardana
Hi all, I have changed axis2_qname.h and axis2_qname.c according to new coding style and added a clone method as well. Pls apply this patch. Thanks Nandika qname_patch.patch Description: Binary data

[Axis2] patch changes to om

2005-11-09 Thread nandika jayawardana
Hi all, I have made some changes to om code and corrected the test_om.c file to work with new changes. pls apply this patch Thanks . nandika omdiff Description: Binary data

[Axis2] patch OMNode serialize changed

2005-11-10 Thread nandika jayawardana
Hi all, I changed the om node serializing  to use get_first_child() , get_next_sibling() and removed  the code which used get_first_child , get_next_child methods . pls apply this patch thanks nandika serialize Description: Binary data

[Axis2] removing parser dependencies from axis2

2005-11-11 Thread nandika jayawardana
Hi all, It is time that we should remove guththila dependency from code and make an abstraction layer so that other parser can also be plugged in without having to change code . So the idea is to have a axis2_pull_parser.h header file which defines the xml pull parser api used by the axis2  which

Axis2[ patch ] xml_writer_for_axis2

2005-11-15 Thread nandika jayawardana
Hi all, I have written a wrapper api for guththila xml writer as well . so that guththila remains completely out of axis2 thanks .. nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use thi

[AXIS2] guththila parser wrappers

2005-11-15 Thread nandika jayawardana
Hi all, I wrote wrappers for guththila xml reader and guththila xml writer . pls commit this code . Thanks nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in complia

[AXIS2] libxml2 xmlwriter wrapper for axis2

2005-11-20 Thread nandika jayawardana
Hi all, I have written a parser wrapper to add libxml2 xmlreader support to axis2 . pls commit this code . Thanks nandika /* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in c

AXIS2 libxml support added

2005-11-29 Thread nandika jayawardana
Hi , Now we can use libxml2 in axis2 in addtion to guththila, libxml2 reader wrapper and libxml2 writer wrapper for axis2 is now complete. thanks nandika

[AXIS2] PHP extension for axis2 [ starting with om]

2005-12-02 Thread nandika jayawardana
Hi all,I have started writing a php extension for axis2c starting with om.For that I have added axis2_xml_reader api in this extension.Lot has to be done before everything in axis2 is supported. Pls commit this code.I think we can put it in a folder named c/bindings/php .Thanks nandika #ifndef AXIS

Re: [Axis2] axis2_om_constants.h or axis2_om.h

2005-12-11 Thread nandika jayawardana
Hi, yes , I think it should be axis2_om.h. I will rename it to axis2_om.h thanks, nandika On 12/12/05, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Devs,I would propose that we rename the header axis2_om_constants.h toaxis2_om.h, in sync with our policy to have short file names.e.g. The a

Re: [Axis2] SOAP Constants in C

2005-12-12 Thread nandika jayawardana
Hi, yes , that would make the names shorter as well. thanks nandikaOn 12/13/05, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: I would like to propose that we use the prefix "AXIS2_SOAP12_" forSOAP12Constantsand the prefix "AXIS2_SOAP11_" for SOAP11Constants.Thanks,Samisa...

Re: [Axis2] Re: PHP subproject

2005-12-19 Thread nandika jayawardana
hi Lee, It is greate tp  hear that you are interested  in axis2/php. We have done an initial implementation of AXIOM in php. But there remains a lot of work to be done. you can start with it by running the php scripts that are there in ./bindings/php/axis2/tests thanks nandikaOn 12/20/05, Samisa

Re: [Axis2] VOTE: Sahan Gamage for Committer

2006-01-11 Thread nandika jayawardana
+1 thanks nandika..On 1/11/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Hi All,I would like to nominate Sahan Gamage to be an Axis2/C committer.Sahan has already done a great deal of contributions to implement the server side and client side transports of Axis2C.I am

Re: [jira] Created: (AXIS2C-54) include files in src folders

2006-02-07 Thread nandika jayawardana
Hi , I think we need to add two more dll's to the above list. xml_parser_wrapper.dll and dll with platform specific stuff. so we can add    xml_parser_wrapper    axis2_unix OR axis2_windows Thanks nandika On 2/6/06, Sahan Gamage <[EMAIL PROTECTED]> wrote: Samisa Abeysinghe wrote:> Damitha Kumara

Re: [Axis2] patch - getopt functionality for windows

2006-02-08 Thread nandika jayawardana
hi Nabeel, I commited the code . thanks nandikaOn 2/7/06, Nabeel <[EMAIL PROTECTED]> wrote: Hi,Attached patch includes a cut-down version of getopt function in unixfor windows. These files should go to modules/platform/windows dir.Please review and apply.Thanks-Nabeel

Re: [jira] Commented: (AXIS2C-66) axis2_hash_t crashes while resizing

2006-02-16 Thread nandika jayawardana
AXIS2_ENV_CHECK macro error is now corrected , thanks for the fix. nandikaOn 2/10/06, Ed Slattery (JIRA) <[EMAIL PROTECTED]> wrote: [ http://issues.apache.org/jira/browse/AXIS2C-66?page=comments#action_12365871 ]Ed Slattery commented on AXIS2C-66: ---This macro

Re: [Axis2] Axis2C Milestone Release Plan M0.5

2006-03-08 Thread nandika jayawardana
+ 1 thanks nandikaOn 3/9/06, Damitha Kumarage <[EMAIL PROTECTED]> wrote: Sahan Gamage wrote:>Hi All>>We have been working hard on Axis2 C since the last milestone release (M0.4)>and could achieve the following>>1. Improving code quality by fixing memory leaks and reviewing the code. >2. Apache2 in

Re: [Axis2] VOTE: Sanjaya Ratnaweera for Committer

2006-03-16 Thread nandika jayawardana
+1 from me. Thanks. nandikaOn 3/17/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Hi All,I would like to nominate Sanjaya Ratnaweera to be an Axis2/C committer.Sanjaya has already done a great deal of contributions to the buildsystem and the test system of Axis2C project.He did lots

Re: Fwd: [Axis2] Mime implementation for MTOM support

2006-03-26 Thread nandika jayawardana
Hi Kapila, I think that most of the functions and member variables  in  om_output_format.c and are already there in om_output.c , so pls make necessary changes to om_output.c and om_output.h and get rid of om_output_format.c and om_output_format.h. Thanks nandika On 3/26/06, Sahan Gamage <[EMA

[Axis2] MTOM in AXIS2

2006-03-28 Thread nandika jayawardana
Hi kapila, Thanks for joining in to implement MTOM, I went through the code and made following changes, I removed om_output_format.c and om_output_format.h files since that data can be stored in om_output struct easily and I put the necessary functions to om_output.c. We have used om_output as a

Re: [Axis2][VOTE] Axis2C 0.90 Release Plan

2006-03-29 Thread nandika jayawardana
+1 from me, Thanks nandikaOn 3/29/06, Sahan Gamage <[EMAIL PROTECTED]> wrote: Hi Franz,We have removed that item since the standard libcurl API inverts thecontrol (it takes the control from Axis2 engine to itself until the dataarrives from the server). At the moment we do have a minimal stable ht

[Axis2] Implementing a XmlSchema Parser for Axis2 C

2006-04-03 Thread nandika jayawardana
Hi All, I plan to write a XmlSchema Parser for Axis2 C which will be based on Apache XmlSchema API. Apache XmlSchema creates an XML Schema Object model and we plan to create same kind of structures in C. Instead of using DOM , it will use Axis2 C OM to read XML. This is useful since it provides pa

Re: [Axis2] - problem with om_output when doing MTOM

2006-04-06 Thread nandika jayawardana
Hi Kapila, Thats fine with me Thanks nandikaOn 4/6/06, Kapila Dissanayake <[EMAIL PROTECTED]> wrote: Hi All,     There is a little problem when doing MTOM.     om_output writes directly to XML writer. But in case of MTOM, the binary contet goes outside XML. Hence wite_optimize should be writing

Re: Patch - new functions to libxml2 wrapper

2006-04-18 Thread nandika jayawardana
it is appropriate to change axis2_xml_reader_create_for_buffer function name to axis2_xml_reader_create_for_memory since we use a memory buffer . Then we need to change the name of the existing axis2_xml_reader_create_for_memory function name. I think we should name it as axis2_xml_reader_create_fo

Re: [Axis2] VOTE: Nabeel Yoosuf for Committer

2006-05-05 Thread nandika jayawardana
+1 from me. Thanks nandika On 5/5/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Hi All, I would like to nominate Nabeel Yoosuf to be an Axis2/C committer. Nabeel has contributed many patches to Axis2/C, starting from the improvements to the logging mechanism and the latest being the contributi

Re: [Axis2][VOTE] Axis2C 0.91 Release Plan

2006-05-08 Thread nandika jayawardana
+1 for the release. Thanks, nandika On 5/8/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: Hi All,We have been able to add several features and do severalimprovements over the past month after the 0.90 release.Here are some of the improvements we have done:1. Full Addressing 1.0 supp

Re: [jira] Updated: (AXIS2C-158) Add new reader/writer methods

2006-05-10 Thread nandika jayawardana
patch applied. Thanks for the patch. nandika On 5/10/06, Nabeel Yoosuf (JIRA) <[EMAIL PROTECTED]> wrote: [ http://issues.apache.org/jira/browse/AXIS2C-158?page=all ]Nabeel Yoosuf updated AXIS2C-158:- Attachment: patch.xml.parserThis patch changes the signat

Re: [Axis2][Fwd: Modified Axis2C folder structure]

2006-05-17 Thread nandika jayawardana
Hi, In addition to the above folder structure we will have to move out guththila as a seperate project ( at the moment guththila is also in xml folder). thanks nandika On 5/17/06, Damitha Kumarage <[EMAIL PROTECTED]> wrote: Samisa Abeysinghe wrote:> Samisa Abeysinghe wrote:>>> Correct prefix...

Re: [Axis2][Fwd: Modified Axis2C folder structure]

2006-05-17 Thread nandika jayawardana
o now the folder structure would bec/|- modules/||- core/||||- addressing/||||- wsdl/ ||- security/ (or rampart) - in the future|- util/|- axiom/|- xml-schema/|- woden/|- guththila/ThanksDamitha>- Sahan>>>Samisa Abeysinghe wrote: >>>>>nandika jayawarda

Re: [axis2] fixes for occurring multiple definitions when building firefox extension

2006-05-19 Thread Nandika Jayawardana
Hi Dimuthu I applied the patch. Thanks nandikaOn 5/19/06, Dimuthu Gamage <[EMAIL PROTECTED]> wrote: Hi, I got an error  some symbols ( transport_out, transport_in,axis2_stack_ops )defines twise, while I m building the firefoxextension. The fixes are attached with the mail.RegardsDimuthu Index: mo

Re: [Axis2]Replacing double pointer env param to a single pointer env param

2006-05-30 Thread Nandika Jayawardana
+1 for change. nandikaOn 5/31/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: If there are no objections, I would go ahead and make this change eithertoday or tomorrow.Thanks,Samisa...Samisa Abeysinghe wrote:> Hi All,>For almost all the method calls, we pass the environment as a > double poin

Re: [Axis2][VOTE] Axis2C 0.92 Release Plan

2006-05-31 Thread Nandika Jayawardana
+1 nandikaOn 5/31/06, Sahan Gamage <[EMAIL PROTECTED]> wrote: +1Davanum Srinivas wrote:> +1>> On 5/30/06, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote:>>> With the progress we have made since the 0.91 release, we have several>> new features and bug fixes that justifies another release. I update

Re: Status of the perl extension

2006-07-24 Thread Nandika Jayawardana
great work thanks nandikaOn 7/24/06, chanaka Wijesena <[EMAIL PROTECTED]> wrote: Hi all,    Currently I was able to implement a simple API for the perl using XS. Anyway I couldnt figure out the programming interface of the OM in perl. So I was little late in responding to the mailing list. I teste

Re: [Axis2] VOTE: Kaushalye Kapuruge for Committer

2006-08-02 Thread Nandika Jayawardana
great work .+1 from meThanks.nandikaOn 8/2/06, Sanjaya Ratnaweera <[EMAIL PROTECTED]> wrote: +1~sanjayaDamitha Kumarage wrote:> Hi,> I have closely reveiwed most of the work done by Kaushalye. > He well deserve the commitership.> +1> Damitha>>> Samisa Abeysinghe wrote:>>> Hi All,>>I would l

Re: [Axis2] Change function prefix of guththila

2006-08-08 Thread Nandika Jayawardana
+1 for the change, It will make guththila parser function names shoter.ThanksnandikaOn 8/8/06, Dinesh Premalal < [EMAIL PROTECTED]> wrote:Hi,   I would like to suggest to change guththila function prefix    "guththila_xml_pull_parser_" in to "guththila_". Because it is   unecessary to type xml_pull

Re: [Axis2][VOTE] Axis2C 0.93 Release Plan

2006-08-28 Thread Nandika Jayawardana
+1ThanksnandikaOn 8/29/06, Sanjaya Ratnaweera <[EMAIL PROTECTED]> wrote: +1 Thanks       ~sanjaya Dinesh Premalal wrote: +1 thanks, Dinesh On 8/29/06, Damitha Kumarage <[EMAIL PROTECTED] > wrote: +1 Damitha Samisa Abeysinghe wrote: > It is time to do the 0.93 release, w

VOTE Dimuthu Chathuranga for commiter

2006-09-10 Thread Nandika Jayawardana
Hi AllI would like to nominate Dimuthu Chathuranga to be an Axis2/C commiter.Dimuthu has contributed many patches to Axis2/C in implementing WSDL2C Code generation tool . eg ( AXIS2C-198)Thanks to him we now have a WSDL2C code generation  tool written in C .Also he has been very active in mailing l

Re: Axis2c, MS Windows

2006-09-18 Thread Nandika Jayawardana
Hi Krankurs,Due to some prefix replacements we did some time back, above file has axiom prefix instead of the axis2 prefix. It is an error and is now fixed in current svn code. If you are using .93 release above symbol should be in axis2_http_sender.lib. In attribute ordering problem, All attribut

Changing free function pointer in ops structs to free_fn

2006-09-18 Thread Nandika Jayawardana
Hi All,I have been developing a php exetension for axis2 , and when I use free macros of axis2 , I get the following error when comiling under debug mode.eg.    '_free_dbg' : is not a member of 'axis2_conf_ctx_ops'     e:\axis2\include\axis2_conf_ctx.h(58) : see declaration of 'axis2_conf_c

Re: [Axis2]Removing unwanted files from the axis2c code base

2006-11-10 Thread Nandika Jayawardana
I am also +1 for removing cuTest related unit tests.NandikaOn 11/10/06, Damitha Kumarage < [EMAIL PROTECTED] > wrote:Dinesh Premalal wrote:>Hi,>Does anyone use the CuTests releated unit testings? If not better >to remove them from the svn (and the build system). Those tests>give warning

Re: [Axis2] Removing macros and reducing OO code

2006-11-14 Thread Nandika Jayawardana
Hi all,As damitha has done to sandesha, If we can get rid of unneccesary OO code in axis2c core, the code would get much cleaner and small. In addition to thatwe can  remove some amount of memory leaks in the process because the memory allocations done for ops structures will be reduced. +1 for rem

Re: [Axis2]Add clone method to axis2_property

2006-11-22 Thread Nandika Jayawardana
hi, In addtion to a clone method, if we can change the property create function to accept other arguments as well, it would be lot more convenient to use properties, Instead of AXIS2_EXTERN axis2_property_t * AXIS2_CALL axis2_property_create(const axis2_env_t *env); have AXIS2_EXTERN axis2_pr

Re: [Vote][Axis2]Chris Darroch as a committer

2006-12-04 Thread Nandika Jayawardana
+1 Thanks Nandika On 12/5/06, Dinesh Premalal <[EMAIL PROTECTED]> wrote: definitely +1 ! thanks, Dinesh -- Dinesh Premalal [EMAIL PROTECTED] WSO2, Inc.; http://www.wso2.com/ GPG Key ID : A255955C GPG Key Finger Print : C481 E5D4 C27E DC34 9257 0229 4F44 266E A255 955C

Re: [Vote] [Axis2] Dinesh as Release Manager for Apache Axis2/C 0.96 Release

2006-12-05 Thread Nandika Jayawardana
+1 Nandika On 12/5/06, Kaushalye Kapuruge <[EMAIL PROTECTED]> wrote: +1 :) -Kau Samisa Abeysinghe wrote: > Hi All, >I would like to propose Dinesh Premalal as the release manager for > Apache Axis2/C 0.96 release. >Dinesh was the release manager for the past two releases and has > ag

Re: [Vote][Axis2] Supun Kamburugamuva as a committer

2007-01-11 Thread Nandika Jayawardana
+1 Thanks Nandika On 1/12/07, Deepal jayasinghe <[EMAIL PROTECTED]> wrote: +1 Thanks Deepal > > Hi All, > I would like to propose Supun Kamburugamuva as an Apache Axis2/C > commiter. > > Supun developed the IIS module on his own and contributed that to > Axis2/C. He also has provided

Re: [Vote][Axis2] Milinda Lakmal Pathirage as a committer

2007-01-11 Thread Nandika Jayawardana
+1 Thanks Nandika On 1/12/07, Deepal jayasinghe <[EMAIL PROTECTED]> wrote: +1 Thanks Deepal > > Hi All, > I would like to propose Milinda Lakmal Pathirage as an Apache > Axis2/C commiter. > > Milinda has helped us mainly to fix many bugs in the Java based > code generation tool. In ad

Re: [Vote][Axis2]Manjula Peiris as a committer

2007-02-14 Thread Nandika Jayawardana
+1 from me. Regards, Nandika On 2/14/07, Dushshantha Chandradasa <[EMAIL PROTECTED]> wrote: Here's my +1 Regards, Dushshantha On 2/14/07, Ruchith Fernando <[EMAIL PROTECTED] > wrote: > > +1 from me > > Thanks, > Ruchith > > On 2/14/07, Kaushalye Kapuruge < [EMAIL PROTECTED]> wrote: > > Hi l

Re: Windows build patch and other info

2007-02-15 Thread Nandika Jayawardana
hi Jared, Thanks for the patch. It would be great if you could contribute your static deployment engine to the project. Thanks Nandika. On 2/15/07, Jared Hanson <[EMAIL PROTECTED]> wrote: I've attached a short and simple patch that fixes the win32 makefile found in the current trunk revision

Re: Code for Axis2/C Static Deployment Engine

2007-02-19 Thread Nandika Jayawardana
I am +1 for using #ifdef s in the module directly. - Nandika On 2/19/07, Jared Hanson <[EMAIL PROTECTED]> wrote: Glad to hear you're interested in the code. It's one of my top priorities to get this building against svn head this week. I'll be submitting patches as I complete tasks. One qu

Re: Axis2c- error while building mod_iis.dll for IIS server settings.

2007-02-23 Thread Nandika Jayawardana
Hi , please do the following. Get the svn checkout, edit the configure.in file in w and then to a nmake dist. That should compile mod_axis2_IIS.dll to axis2c-bin-0.96-win32\lib directory. -Nandika On 2/23/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: Hi All, I have started compiling

Re: Memory leaks

2007-02-26 Thread Nandika Jayawardana
Hi Markus, Please provide the details about the tool and the test suit. I think it will of great use in fixing these problems before 1.0 release. Thanks Nandika On 2/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello, A couple of your postings during the last days were concerning memo

Re: [Axis2] Notes on memleak (jira AXIS2C-537)

2007-02-27 Thread Nandika Jayawardana
Hi Jared, Can you attach you fixes to the jira-537... Thanks Nandika On 2/27/07, Jared Hanson <[EMAIL PROTECTED]> wrote: An update: I implemented my suggestion within my own types. Any text values they read from axiom_element, they copy before setting them in their own structures. I also

Re: Thanks Nadika - Getting linker error while building web service dll in VC++7.0 for IIS

2007-03-09 Thread Nandika Jayawardana
Hi, Add axis2_util.lib and axis2_engine.lib to the project. --Nandika On 3/9/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: Hi, The below attached (previous mail)error solved after adding the lib of lib "axiom.lib" in the project option. But getting error in the files generated

Re: [Axis2][VOTE] Move Rampart/C out of Axis2/C

2007-03-21 Thread Nandika Jayawardana
+1 for moving rampart. --Nandika On 3/22/07, Kaushalye Kapuruge <[EMAIL PROTECTED]> wrote: Hi List, Since Rampart/C works as a module for Axis2/C and it is not part of the Axis2/C engine, I propose that we move Rampart/C out of Axis2/C project and place it under http://svn.apache.org/repos/as

Re: GSoC2007: JSON support for Axis2c: Application Accepted

2007-04-19 Thread Nandika Jayawardana
Hi Kasun, Congratulations . Please create a Wiki page here ( http://wiki.apache.org/ws/SummerOfCode )for your project and maintain it till the completion of the project. You can find year 2005 projects Wiki pages here. (http://wiki.apache.org/ws/SummerOfCode/2005/). We are pleased to provide any

Re: [VOTE2] Rampart/C 0.90 release

2007-05-07 Thread Nandika Jayawardana
+1 for the release. Thanks Nandika. On 5/8/07, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: +1 for the release. Samisa... Dinesh Premalal wrote: > +1 > > thanks, > Dinesh > > -- > Dinesh Premalal > [EMAIL PROTECTED] > WSO2, Inc.; http://www.wso2.com/ > http://xydin

Re: [Fwd: [VOTE2] Sandesha2/C 0.90 Release]

2007-05-21 Thread Nandika Jayawardana
Hi Damitha, I found few inconsistencies between linux binary and win32 binary due to differences in folder structure. So I fixed the win32 makefile. Is it possible to pack it again? regards, Nandika On 5/17/07, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: +1. Samisa... > > Hi Devs, > I've pac

Re: [VOTE3] Sandesha2/C 0.90 Release

2007-05-23 Thread Nandika Jayawardana
+1 - Nandika On 5/24/07, Sahan Gamage <[EMAIL PROTECTED]> wrote: +1 -sahan On 5/22/07, Damitha Kumarage <[EMAIL PROTECTED]> wrote: > > Hi Devs, > I've packed and uploaded the Apache Sandesha2/C 0.90 release here [1]. > The key used to sign can be found here[2]. > Please review and vote. > H

Fwd: JSON Support for Axis2C(GSoC2007)

2007-06-03 Thread Nandika Jayawardana
Hi Kasun, I think it is better to use axutil module.But if you have written large amout of code, don't try changing it. -- Nandika -- Forwarded message -- From: Kasun Indrasiri <[EMAIL PROTECTED]> Date: Jun 1, 2007 11:10 PM Subject: JSON Support for Axis2C(GSoC2007) To: axis-c-d

Fwd: JSON Support for Axis2C(GSoC2007)

2007-06-04 Thread Nandika Jayawardana
upport for Axis2C(GSoC2007) To: Apache AXIS C Developers List On 6/4/07, Nandika Jayawardana <[EMAIL PROTECTED] > wrote: I think it is better to use axutil module. Yes, I can use the axutil. How about the implementation of the StAX parser. I do have two options -implement the StAX

Re: JSON Support for Axis2C

2007-06-13 Thread Nandika Jayawardana
Hi Kasun, I think it is ok to specifically initialize the type of convension to use when creating the reader. -- Nandika -- Forwarded message -- From: Kasun Indrasiri < [EMAIL PROTECTED]> Date: Jun 13, 2007 12:14 PM Subject: JSON Support for Axis2C To: Apache AXIS C Developer

Re: [Axis2] Time for 1.1.0 Release?

2007-06-13 Thread Nandika Jayawardana
+1 for the release. Nandika On 6/14/07, Manjula Peiris <[EMAIL PROTECTED]> wrote: I have also fix some memory leaks in WS-Policy implementation and WS-SecurityPolicy extension. So +1 for the release and Samisa as the release manager. Thanks -Manjula On Wed, 2007-06-13 at 15:38 +0600, Samis

Re: JSON Support for Axis2C (GSoC2007)

2007-06-14 Thread Nandika Jayawardana
Hi Kasun, Yes, This should be a lot easier to interate to axis2. regards Nandika On 6/14/07, Kasun Indrasiri <[EMAIL PROTECTED]> wrote: Hi all, There are few issues on having a StAX parser for parse JSON strings. This is mainly due to the integration problems of JSON parser with Axis. There

Re: [Vote] [Axis2] Samisa as Release Manager for Apache Axis2/C 1.1.0 Release

2007-06-15 Thread Nandika Jayawardana
+1 thanks Nandika On 6/15/07, Dinesh Premalal <[EMAIL PROTECTED]> wrote: Here is my +1 thanks, Dinesh Kaushalye Kapuruge <[EMAIL PROTECTED]> writes: > Hi All, > I would like to propose Samisa Abeysinghe as the release manager for > Apache Axis2/C 1.1.0 release. > Samisa, who is an activ

Re: JSON-Axis2/C

2007-07-10 Thread Nandika Jayawardana
Hi Kasun, I think its ok to use the array technique. -- Nandika On 7/11/07, Kasun Indrasiri <[EMAIL PROTECTED]> wrote: Hi, I do have few issues in converting the JSON to XML using Badgerfish convention. · Currently the Badgerfish convention is not supporting the *XML Mixed Content*

Re: Possible to have two stubs active at the same time?

2007-09-11 Thread Nandika Jayawardana
Hi Jamie, Try adding the following line to your code before the call to send message. I think it should fix the problem. axis2_options_set_xml_parser_reset (client_options, env, AXIS2_FALSE); Regards Nandika On 9/11/07, Jamie Lyon <[EMAIL PROTECTED]> wrote: > Sorry, forgot to mention the erro

Re: Savan/C 0.90 release

2007-09-17 Thread Nandika Jayawardana
+1 -- Nandika On 9/18/07, Manjula Peiris <[EMAIL PROTECTED]> wrote: > > +1 > > -Manjula. > > On Mon, 2007-09-17 at 19:08 +0530, Dumindu Pallewela wrote: > > +1 > > > > -Dumindu. > > > > Sanjaya Ratnaweera wrote: > > > +1 > > > ~sanjaya > > > > > > > > > Damitha Kumarage wrote: > > >> Hi dev

Re: [Vote] [Axis2] Vote for Apache Axis2/C 1.1.0 Release - Take 3

2007-09-28 Thread Nandika Jayawardana
+1 -- Nandika On 9/28/07, Sanjaya Ratnaweera <[EMAIL PROTECTED]> wrote: > > I have tested and reviewed on Debian GNU/Linux 4.0. Here is my vote: +1 > > Thanks > >~sanjaya > > > Samisa Abeysinghe wrote: > > Hi Devs, > > > > After fixing the issues found with the second set of release > > a

Re: [Vote] [Savan-C] Vote for Apache Savan/C 0.90 Release - Take 2

2007-10-01 Thread Nandika Jayawardana
+1, I tested savan on windows -- Nandika On 9/25/07, Damitha Kumarage <[EMAIL PROTECTED]> wrote: > > Hi Devs, > > After fixing the issues found with the initial release artifacts, I > have re-packaged and uploaded the Apache Savan/C 0.90 release > artifacts at > > http://people.apache.org/~

Re: memory leak minis

2007-10-01 Thread Nandika Jayawardana
Hi Amadeus, The issue with AXIS2_SCANDIR is now fixed in the current svn. As for the libxml2 reader/writer wrapper codes, we have used libxml2 provided xmlFree function to free the memory allocated using libxml2's mechanism in most places. But there are few place's where this is an issue. Regards

Re: memory leak minis

2007-10-01 Thread Nandika Jayawardana
Yes , We fixed it for 1.1.0 release. -- Nandika On 10/2/07, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: > > Nandika Jayawardana wrote: > > Hi Amadeus, > > > > The issue with AXIS2_SCANDIR is now fixed in the current svn. > I thought that we fixed t

Re: [Vote][Rampart-C] Vote for Apache Rampart/C 1.0.0 Release - Take 2

2007-10-02 Thread Nandika Jayawardana
+1 Thanks Nandika On 10/3/07, Ruchith Fernando <[EMAIL PROTECTED]> wrote: > > +1 > > Thanks, > Ruchith > > On 10/1/07, Kaushalye Kapuruge <[EMAIL PROTECTED]> wrote: > > Hi Devs, > > > > I have re-packaged and uploaded the Apache Rampart/C 1.0.0 release > > artifacts here > > http://people.apache.

Re: Error while linking with DLL using /DLL in link command ...

2007-10-04 Thread Nandika Jayawardana
Hi Sanal, It is not possible to link DLL to object files. Instead you need to link the .lib file of the corresponding dll or a .def file which defines the exported symbols of the dll. So use the .lib file of VerificationCardDetail.dll for linking. Regards Nandika On 10/4/07, Sanal Kumaran <[E

Re: [Axis2] AXIS2_LOG_LEVEL_SERVICE

2007-11-05 Thread Nandika Jayawardana
+1 -- Nandika On 11/5/07, Damitha Kumarage <[EMAIL PROTECTED]> wrote: > > +1 > Damitha > Samisa Abeysinghe wrote: > > > I see that a new log level named AXIS2_LOG_LEVEL_SERVICE has been > > added lately. > > > > I think, not only the service writer, but also those who implement > > clients would b

Re: [Vote] [Axis2] Damitha as Release Manager for Apache Axis2/C 1.2.0 Release

2007-11-14 Thread Nandika Jayawardana
+1 - Nandika On Nov 15, 2007 10:18 AM, Kaushalye Kapuruge <[EMAIL PROTECTED]> wrote: > > +1 > -Kaushalye > > > Samisa Abeysinghe wrote: > > Hi All, > > I would like to propose Damitha as the release manager for Apache > > Axis2/C 1.2.0 release. > > Damitha, a WS PMC as well as an active commi

Re: [VOTE]Selvaratnam Uthaiyashankar as a committer

2007-11-21 Thread Nandika Jayawardana
+1 Nandika On Nov 21, 2007 3:49 PM, Dimuthu Gamage <[EMAIL PROTECTED]> wrote: > +1 > Dimuthu > > > > On Nov 21, 2007 3:31 PM, Deepal jayasinghe <[EMAIL PROTECTED]> wrote: > > +1 from me. > > > > Deepal. > > > > > Hi list, > > > > > > I would like to propose Selvaratnam Uthaiyashankar as an Apache

Re: [Axis2][VOTE]Bill Mitchell as a committer

2008-01-07 Thread Nandika Jayawardana
+1 -- Nandika On Jan 8, 2008 10:57 AM, Dimuthu Gamage <[EMAIL PROTECTED]> wrote: > Bill gave good suggestions to improve the WSDL2C as well. > > Here is my +1 to give him the commitership. > > Thanks, > Dimuthu > > > On Jan 8, 2008 10:47 AM, Supun Kamburugamuva <[EMAIL PROTECTED]> wrote: > > On

Re: [Vote] [Axis2-C] Vote for Apache Axis2/C 1.2.0 Release - Take 5

2008-01-10 Thread Nandika Jayawardana
+1 Thanks Nandika On Jan 10, 2008 1:25 PM, Sanjaya Ratnaweera <[EMAIL PROTECTED]> wrote: > +1 > > Thanks > > ~sanjaya > > > Manjula Peiris wrote: > > I tested the binary on Ubuntu 7.10. > Working fine. Here is my +1. > > -Manjula > > > On Thu, 2008-01-10 at 11:56 +0530, Dushshantha Chandrada

Re: [Vote][Rampart-C] Vote for Apache Rampart/C 1.1.0 Release - Take 1

2008-01-15 Thread Nandika Jayawardana
+1 Thanks Nandika On Jan 16, 2008 10:51 AM, Ruchith Fernando <[EMAIL PROTECTED]> wrote: > +1 > > Thanks, > Ruchith > > On Jan 11, 2008 5:54 PM, Kaushalye Kapuruge <[EMAIL PROTECTED]> wrote: > > Hi Devs, > > > > I have uploaded the Apache Rampart/C 1.1.0 release artifacts here > > http://people.

Re: [Axis2][VOTE]Senaka Fernando as a committer

2008-01-18 Thread Nandika Jayawardana
+1 Nandika On Jan 17, 2008 11:17 AM, Dushshantha Chandradasa < [EMAIL PROTECTED]> wrote: > Here's my +1 > > regards, > Dushshantha > > > On Jan 17, 2008 11:15 AM, Uthaiyashankar <[EMAIL PROTECTED]> wrote: > > > +1. > > > > Regards, > > Shankar. > > > > Manjula Peiris wrote: > > > +1. > > > > > >

Re: [Axis2] [Vote] Dinesh as Release Manager for Apache Axis2/C 1.2.1 Release

2008-01-24 Thread Nandika Jayawardana
+1 Nandika On Jan 25, 2008 11:47 AM, Dumindu Pallewela <[EMAIL PROTECTED]> wrote: > +1 > > On Jan 25, 2008 11:25 AM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: > > Hi All, > > I would like to propose Dinesh Premalal as the release manager for > > Apache Axis2/C 1.2.1 release. > > > > Si

  1   2   3   >