Re: axutil_env_t in multi-threaded environment

2008-09-04 Thread Manjula Peiris

On Thu, 2008-09-04 at 18:06 -0700, Tammy Martin wrote:
> Hello,
>  
> When I create a axutil_env_t , axutil_env_create_all axis2c call. Can
> I use the same enviroment for multiple web service clients or do I
> need to create a new environment for each new web service client that
> I create?

No you can use the same enviornment.

>  Inside of the code for axutil_env_create_all, I saw some code for
> thread pools...does this mean it handles multiple threads?

If you want to have multiple threads in your service or client code you
can create threads from the thread pool. Axis2/C client side is single
threaded unless you are using a separate listener or a callback.

>  
> Thanks for your help,
> Tammy


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



Re: problem with upload to REST-enabled service

2008-09-04 Thread Manjula Peiris
Can you capture the message which is sent to the server ?

On Thu, 2008-09-04 at 17:19 -0400, Arnie Chien wrote:
> Hi,
> I'm trying to upload an image to an axis2c server.  The image is handled by
> a service which is REST-enabled (modeled after the echo sample).  The
> services.xml is
> 
> 
> KIPSvc
> 
> 
> POST
> getVC
> 
>  
> 
> The client is written in Java, but does not use the axis2 API; it just
> constructs a POST request using the java HttpConnection class.  (My
> understanding of REST is that this should be okay.)  It sets content-type to
> text/xml, and sends the image data as a sequence of bytes.
> 
> Processing gets into the service dll, such that the getVC operation
> 
> axiom_node_t *
> axis2_KIPSvc_getVC(
> const axutil_env_t * env,
> axiom_node_t * node)
> 
> is called.  But the "node" argument is null.  Could someone could tell me
> what the problem might be?  Many thanks in advance- 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


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



Re: forward declaration in generated adb files causes a C++ error

2008-09-04 Thread Dimuthu Gamage
Hi Tammy,

I m not sure this time your suggestion is a valid one.

Just check this header,
https://svn.apache.org/repos/asf/webservices/axis2/trunk/c/axiom/include/axiom_attribute.h

and the source file,
https://svn.apache.org/repos/asf/webservices/axis2/trunk/c/axiom/src/om/om_attribute.c

which is the model we should follow in our generated code. There the typedef
is done inside the header and the struct declaration is in source. So can
you please let us know the error you are getting in this approach? and your
platform?

In a case you still want to move the struct to the header (it is not a much
recomandad approach in c programming), Check the struct declration in the
CADBBeanTemplateSource and move that block to CADBBeanTemplateHeader. And
you can pack them in the axis2-adb-codegen-xxx.Jar and put in the axis2 java
lib directory to load the new library.

Thanks
Dimuthu




On Fri, Sep 5, 2008 at 6:20 AM, Tammy Martin <[EMAIL PROTECTED]>wrote:

> Hello Dimuthu,
>
> Sorry for the delay in response...I tried your fix but unfortunately it did
> not work for me.
>
> It appears that the structure definition and the typedef need to be in the
> header file in order for the C++ to compile...
> Like this:
>
>
> #include 
> #include 
> #include 
> #include 
> #include 
>
> struct adb_return
> {
>   axutil_qname_t* qname;
>   axis2_char_t* property_return;
>   axis2_bool_t is_valid_return;
> };
> /**
>*  adb_return class
>*/
> typedef struct adb_return adb_return_t;
>
> #ifdef __cplusplus
>   extern "C"
> {
>  #endif
>
> And there can be NO structure definition in the generated .c file other
> wise it is duplicated...
>
> It doesn't seem to matter if it is in the extern "C" declaration or not..
>
> I am getting these errors because I am including the adb_return.h inside my
> C++ code. and then I get errors regarding a forward declaraion of struct
> adb_return...
>
> error: invalid use of undefined type `struct adb_return'
>
> error: forward declaration of `struct adb_return'
>
> I am trying to fix this by modifying the CADBBeanTemplateHeader.xsl and
> CADBBeanTemplateSource.xsl any help you could provide would be greatly
> appreciated.
>
> If there are any other workarounds for this error, compiler flags or
> anything I may be missing, please let me know.
>
> Thanks,
>
> Tammy
>
> On 8/25/08, Dimuthu Gamage <[EMAIL PROTECTED]> wrote:
>>
>> Hi,
>> Yea it is a bug, and i just fixed it in the SVN. In fact you can fix it
>> without needing to compile the source.
>> extract the adb-codegen-*.jar and  check
>> "org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl" for a
>> template.
>>
>>
>> Thanks
>> Dimuthu
>>
>>
>> On Thu, Aug 21, 2008 at 12:28 PM, Tammy Martin <[EMAIL PROTECTED]
>> > wrote:
>>
>>> Hello,
>>>
>>> I am using axis2c 1.3.0 and axis2 1.4 and used the wsdl2c.sh tool to
>>> generate (adb) axis data bindings from a wsdl. I am using these data
>>> bindings in a C++ program. When I compile on Linux I get the following
>>> error:
>>>
>>> error: forward declaration of `struct adb_return'
>>>
>>> this is what it looks like in the header file...it is outside of the
>>> extern 'C" declaration.
>>>
>>>  typedef struct adb_return adb_return_t;
>>>
>>> In order to get this to compile I have to change it to: (which I placed
>>> inside of the extern "C" declaration.
>>>
>>>  /**
>>> *  adb_return class
>>> */
>>> typedef struct {
>>>   axutil_qname_t* qname;
>>>axis2_char_t* property_return;
>>>axis2_bool_t is_valid_return;
>>> } adb_return_t;
>>>
>>> My question is this, how can I get axis2c to generate databindings that I
>>> do not have to manipulate manually in order to compile. Is there an option I
>>> am missing on the wsdl2c generation or is there a bug fix that I can obtain?
>>>
>>> Thanks for your help,
>>> Tammy
>>>
>>
>>
>


-- 
Thanks,
Dimuthu Gamage

http://www.dimuthu.org
http://www.wso2.org


axutil_env_t in multi-threaded environment

2008-09-04 Thread Tammy Martin
Hello,

When I create a axutil_env_t , axutil_env_create_all axis2c call. Can I use
the same enviroment for multiple web service clients or do I need to create
a new environment for each new web service client that I create? Inside of
the code for axutil_env_create_all, I saw some code for thread pools...does
this mean it handles multiple threads?

Thanks for your help,
Tammy


Re: forward declaration in generated adb files causes a C++ error

2008-09-04 Thread Tammy Martin
Hello Dimuthu,

Sorry for the delay in response...I tried your fix but unfortunately it did
not work for me.

It appears that the structure definition and the typedef need to be in the
header file in order for the C++ to compile...
Like this:


#include 
#include 
#include 
#include 
#include 

struct adb_return
{
  axutil_qname_t* qname;
  axis2_char_t* property_return;
  axis2_bool_t is_valid_return;
};
/**
   *  adb_return class
   */
typedef struct adb_return adb_return_t;

#ifdef __cplusplus
  extern "C"
{
 #endif

And there can be NO structure definition in the generated .c file other wise
it is duplicated...

It doesn't seem to matter if it is in the extern "C" declaration or not..

I am getting these errors because I am including the adb_return.h inside my
C++ code. and then I get errors regarding a forward declaraion of struct
adb_return...

error: invalid use of undefined type `struct adb_return'

error: forward declaration of `struct adb_return'

I am trying to fix this by modifying the CADBBeanTemplateHeader.xsl and
CADBBeanTemplateSource.xsl any help you could provide would be greatly
appreciated.

If there are any other workarounds for this error, compiler flags or
anything I may be missing, please let me know.

Thanks,

Tammy

On 8/25/08, Dimuthu Gamage <[EMAIL PROTECTED]> wrote:
>
> Hi,
> Yea it is a bug, and i just fixed it in the SVN. In fact you can fix it
> without needing to compile the source.
> extract the adb-codegen-*.jar and  check
> "org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl" for a
> template.
>
>
> Thanks
> Dimuthu
>
>
> On Thu, Aug 21, 2008 at 12:28 PM, Tammy Martin <[EMAIL PROTECTED]>wrote:
>
>> Hello,
>>
>> I am using axis2c 1.3.0 and axis2 1.4 and used the wsdl2c.sh tool to
>> generate (adb) axis data bindings from a wsdl. I am using these data
>> bindings in a C++ program. When I compile on Linux I get the following
>> error:
>>
>> error: forward declaration of `struct adb_return'
>>
>> this is what it looks like in the header file...it is outside of the
>> extern 'C" declaration.
>>
>>  typedef struct adb_return adb_return_t;
>>
>> In order to get this to compile I have to change it to: (which I placed
>> inside of the extern "C" declaration.
>>
>>  /**
>> *  adb_return class
>> */
>> typedef struct {
>>   axutil_qname_t* qname;
>>axis2_char_t* property_return;
>>axis2_bool_t is_valid_return;
>> } adb_return_t;
>>
>> My question is this, how can I get axis2c to generate databindings that I
>> do not have to manipulate manually in order to compile. Is there an option I
>> am missing on the wsdl2c generation or is there a bug fix that I can obtain?
>>
>> Thanks for your help,
>> Tammy
>>
>
>


Re: wsdl2c question

2008-09-04 Thread Dimuthu Gamage
Hi Raghu,

This can be due to 'UserCode' name is used for an element and 2 types (in
different namespaces but with same name) in your WSDL.

Just try to build the adb model depending on what is actually required.

For an example if you generating stub you can start with the
axis2_stub_your_service.h and identify the required adb objects for the
parameter types of the operation. Then follow the header of that perticular
adb object (you only need to concentrate on getters and setters) and
identify the adb object in the parameters of their getters and setters. You
can continue like this until the parameters of getters and setters are
simple types.

Thanks
Dimuthu

On Fri, Sep 5, 2008 at 2:25 AM, Raghu Udupa <[EMAIL PROTECTED]> wrote:

>  Hi,
>
>
>
> I am using wsdl2c tool to generate C code for model object with ADB
> bindings. For each XML element, I see 3 sets of files like
>
> adb_UserCode.c
>
> adb_UserCode.h
>
> adb_UserCode_type0.c
>
> adb_UserCode_type0.h
>
> adb_UserCode_type1.c
>
> adb_UserCode_type1.h
>
>
>
> I would like to know how what each combination of files, adb_UserCode,
> adb_UserCode_type0 and adb_UserCode_type 1 is used for?
>
>
>
> Thanks,
>
> Raghu
>



-- 
Thanks,
Dimuthu Gamage

http://www.dimuthu.org
http://www.wso2.org


problem with upload to REST-enabled service

2008-09-04 Thread Arnie Chien
Hi,
I'm trying to upload an image to an axis2c server.  The image is handled by
a service which is REST-enabled (modeled after the echo sample).  The
services.xml is


KIPSvc


POST
getVC

 

The client is written in Java, but does not use the axis2 API; it just
constructs a POST request using the java HttpConnection class.  (My
understanding of REST is that this should be okay.)  It sets content-type to
text/xml, and sends the image data as a sequence of bytes.

Processing gets into the service dll, such that the getVC operation

axiom_node_t *
axis2_KIPSvc_getVC(
const axutil_env_t * env,
axiom_node_t * node)

is called.  But the "node" argument is null.  Could someone could tell me
what the problem might be?  Many thanks in advance- 



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



wsdl2c question

2008-09-04 Thread Raghu Udupa
Hi,

 

I am using wsdl2c tool to generate C code for model object with ADB
bindings. For each XML element, I see 3 sets of files like

adb_UserCode.c

adb_UserCode.h

adb_UserCode_type0.c

adb_UserCode_type0.h

adb_UserCode_type1.c

adb_UserCode_type1.h

 

I would like to know how what each combination of files, adb_UserCode,
adb_UserCode_type0 and adb_UserCode_type 1 is used for?

 

Thanks,

Raghu



Re: Clean-up and Freeing (and nnexpected close-tags being created)

2008-09-04 Thread Andy Karseras
The following code illustrates the problem...

void myClient::testMethod()
{
const axis2_char_t *prefix = "cwmp";
const axis2_char_t *uri = "urn:dslforum-org:cwmp-1-0";

axiom_namespace_t *ns = axiom_namespace_create(env, uri, prefix);
axiom_namespace_t *empty_ns = axiom_namespace_create(env, uri,
"");

axiom_node_t *nodeA = axiom_node_create(env);
axutil_string_t* nodeAString = axutil_string_create
(env,"getParameterValues");
axiom_element_create_str(env, NULL, nodeAString, ns, &nodeA);

axiom_node_t *nodeB = axiom_node_create(env);
axutil_string_t* nodeBString = axutil_string_create
(env,"ParameterNames");
axiom_element_create_str(env, nodeA, nodeBString, empty_ns, &nodeB);

axiom_node_t *nameNode = axiom_node_create(env);
axutil_string_t* nameString = axutil_string_create (env, "Name");
axiom_element_create_str(env, nodeB, nameString, empty_ns,
&nameNode);

axiom_element_t *ele = (axiom_element_t
*)axiom_node_get_data_element( nameNode, env);
axiom_element_set_text( ele, env, "blah", nameNode);

cout << axiom_node_to_string(nodeA,env) << endl;

axiom_node_free_tree(nodeA, env);
}

The method is called multiple times with a sleep interval in between and
creates the output below.
Note the ParameterNames tag for the last two iterations.

blah
blah
blah
*
*
blah
*
*
blah

Is this expected due to my incorrect use of the APIs or is this a bug ?

Many thanks.




On Thu, Sep 4, 2008 at 7:52 AM, Andy Karseras <[EMAIL PROTECTED]> wrote:

> Thanks for your reply.
>
> It seems that the problem occurs even when I create a new service client
> and payload on each time I resend.  Would this be expected ?
>
>
>
>
> On Wed, Sep 3, 2008 at 9:05 PM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote:
>
>> I think this occurs because you are violating the ownership rules with OM.
>> Once the payload is passed in, the engine takes over the ownership of the
>> node and you are not supposed to do anything with the payload afterwards.
>>
>> Thanks,
>> Samisa...
>>
>> Andy Karseras wrote:
>>
>>> Hi,
>>>
>>> I raised this problem in July and thought that it had been resolved (by
>>> doing proper clean-up), although it is now re-occurring.
>>>
>>> I am seeing a close tag being created when there shouldn't be.
>>>
>>> The incorrect message content is as follows...
>>>
>>> 
>>>
>>>***TempAgent.
>>>
>>> 
>>>
>>>
>>> I am sending the same message multiple times to the server and the error
>>> occurs on the third iteration (3rd time the message is sent) so am assuming
>>> that I am not doing proper clean-up after each message is created and then
>>> sent.
>>>
>>> My questions as follows...
>>> a) Has anybody seen this before ?
>>>
>>> b) Will calling axiom_node_free_tree on nodeA also clean-up nodeB in the
>>> following example ?
>>>axiom_node_t *nodeB= axiom_node_get_first_child(nodeA, env);
>>>
>>> c) Will a node created to be used in axis2_svc_client_add_header, be
>>> cleaned-up by axis2_svc_client_free ?
>>>
>>> d) Is there any other info I can provide to clarify or help explain the
>>> problem ?
>>>
>>> Many thanks.
>>>
>>>
>>> Andy
>>> 
>>>
>>>
>>> No virus found in this incoming message.
>>> Checked by AVG - http://www.avg.com Version: 8.0.169 / Virus Database:
>>> 270.6.15/1649 - Release Date: 9/3/2008 7:15 AM
>>>
>>>
>>>
>>
>>
>> --
>> Samisa Abeysinghe Director, Engineering; WSO2 Inc.
>>
>> http://www.wso2.com/ - "The Open Source SOA Company"
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>


Re: [AXIS2C] better output

2008-09-04 Thread Martina08

hi,
yes i think Xalan C++ is a good solution..Thanks,
best regards
-- 
View this message in context: 
http://www.nabble.com/-AXIS2C--better-output-tp19290020p19308781.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


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



Re: Clean-up and Freeing (and nnexpected close-tags being created)

2008-09-04 Thread Andy Karseras
Thanks for your reply.

It seems that the problem occurs even when I create a new service client and
payload on each time I resend.  Would this be expected ?



On Wed, Sep 3, 2008 at 9:05 PM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote:

> I think this occurs because you are violating the ownership rules with OM.
> Once the payload is passed in, the engine takes over the ownership of the
> node and you are not supposed to do anything with the payload afterwards.
>
> Thanks,
> Samisa...
>
> Andy Karseras wrote:
>
>> Hi,
>>
>> I raised this problem in July and thought that it had been resolved (by
>> doing proper clean-up), although it is now re-occurring.
>>
>> I am seeing a close tag being created when there shouldn't be.
>>
>> The incorrect message content is as follows...
>>
>> 
>>
>>***TempAgent.
>>
>> 
>>
>>
>> I am sending the same message multiple times to the server and the error
>> occurs on the third iteration (3rd time the message is sent) so am assuming
>> that I am not doing proper clean-up after each message is created and then
>> sent.
>>
>> My questions as follows...
>> a) Has anybody seen this before ?
>>
>> b) Will calling axiom_node_free_tree on nodeA also clean-up nodeB in the
>> following example ?
>>axiom_node_t *nodeB= axiom_node_get_first_child(nodeA, env);
>>
>> c) Will a node created to be used in axis2_svc_client_add_header, be
>> cleaned-up by axis2_svc_client_free ?
>>
>> d) Is there any other info I can provide to clarify or help explain the
>> problem ?
>>
>> Many thanks.
>>
>>
>> Andy
>> 
>>
>>
>> No virus found in this incoming message.
>> Checked by AVG - http://www.avg.com Version: 8.0.169 / Virus Database:
>> 270.6.15/1649 - Release Date: 9/3/2008 7:15 AM
>>
>>
>>
>
>
> --
> Samisa Abeysinghe Director, Engineering; WSO2 Inc.
>
> http://www.wso2.com/ - "The Open Source SOA Company"
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: Simple SOAP Simulators

2008-09-04 Thread Samisa Abeysinghe

Nikhil Koranne wrote:

Hi Rajika,
 
I am looking for 3 features :
 
1. Simultor should respond to my SOAP requests. (just plain simple 
response)

2. Simulator should send SOAP Faults
3. Simulator should allow to monitor SOAP messages.


You can write services and clients to do these simulations.

Samisa...

 
Thanks

Nikhil

 


- Original Message 
From: Rajika Kumarasiri <[EMAIL PROTECTED]>
To: Apache AXIS C User List 
Sent: Thursday, September 4, 2008 12:39:56 PM
Subject: Re: Simple SOAP Simulators



On Thu, Sep 4, 2008 at 12:05 PM, Nikhil Koranne <[EMAIL PROTECTED] 
> wrote:
What exactly do you want to do? Do you want to monitor the SOAP 
messages that travel through the wire ?


Hi,
 
I would like to know if there are any open source GUI based SOAP

simulators available? I searched for some, but couldn't find much
information about.
Does Axis2C provide a simple request-response SOAP simulator?
 
Please let me know.
 
Thanks

Nikhil




-
To unsubscribe, e-mail: [EMAIL PROTECTED]

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





--
http://wso2.org/
http://llvm.org/
http://www.osdev.org/




No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.169 / Virus Database: 270.6.16/1650 - Release Date: 9/3/2008 4:13 PM


  



--
Samisa Abeysinghe 
Director, Engineering; WSO2 Inc.


http://www.wso2.com/ - "The Open Source SOA Company"


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



Re: Simple SOAP Simulators

2008-09-04 Thread Rajika Kumarasiri
On Thu, Sep 4, 2008 at 1:03 PM, Nikhil Koranne <[EMAIL PROTECTED]>wrote:

> Hi Rajika,
>
Hi,
You can do all three of these in command prompt, but not with a GUI with
Axis2/C.

-Rajika


>
> I am looking for 3 features :
>
> 1. Simultor should respond to my SOAP requests. (just plain simple
> response)
> 2. Simulator should send SOAP Faults
> 3. Simulator should allow to monitor SOAP messages.
>
> Thanks
> Nikhil
>
>
>
> - Original Message 
> From: Rajika Kumarasiri <[EMAIL PROTECTED]>
> To: Apache AXIS C User List 
> Sent: Thursday, September 4, 2008 12:39:56 PM
> Subject: Re: Simple SOAP Simulators
>
>
>
> On Thu, Sep 4, 2008 at 12:05 PM, Nikhil Koranne <[EMAIL PROTECTED]>wrote:
> What exactly do you want to do? Do you want to monitor the SOAP messages
> that travel through the wire ?
>
>> Hi,
>>
>> I would like to know if there are any open source GUI based SOAP
>> simulators available? I searched for some, but couldn't find much
>> information about.
>> Does Axis2C provide a simple request-response SOAP simulator?
>>
>> Please let me know.
>>
>> Thanks
>> Nikhil
>>
>>
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
>
> --
> http://wso2.org/
> http://llvm.org/
> http://www.osdev.org/
>
>


-- 
http://wso2.org/
http://llvm.org/
http://www.osdev.org/


Re: Simple SOAP Simulators

2008-09-04 Thread Nikhil Koranne
Hi Rajika, 

I am looking for 3 features : 

1. Simultor should respond to my SOAP requests. (just plain simple response)
2. Simulator should send SOAP Faults 
3. Simulator should allow to monitor SOAP messages. 

Thanks
Nikhil

 


- Original Message 
From: Rajika Kumarasiri <[EMAIL PROTECTED]>
To: Apache AXIS C User List 
Sent: Thursday, September 4, 2008 12:39:56 PM
Subject: Re: Simple SOAP Simulators





On Thu, Sep 4, 2008 at 12:05 PM, Nikhil Koranne <[EMAIL PROTECTED]> wrote:
What exactly do you want to do? Do you want to monitor the SOAP messages that 
travel through the wire ? 

Hi,
 
I would like to know if there are any open source GUI based SOAP simulators 
available? I searched for some, but couldn't find much information about.
Does Axis2C provide a simple request-response SOAP simulator?
 
Please let me know.
 
Thanks
Nikhil




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




-- 
http://wso2.org/
http://llvm.org/
http://www.osdev.org/



  

Re: Simple SOAP Simulators

2008-09-04 Thread Rajika Kumarasiri
On Thu, Sep 4, 2008 at 12:05 PM, Nikhil Koranne <[EMAIL PROTECTED]>wrote:
What exactly do you want to do? Do you want to monitor the SOAP messages
that travel through the wire ?

> Hi,
>
> I would like to know if there are any open source GUI based SOAP simulators
> available? I searched for some, but couldn't find much information about.
> Does Axis2C provide a simple request-response SOAP simulator?
>
> Please let me know.
>
> Thanks
> Nikhil
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
http://wso2.org/
http://llvm.org/
http://www.osdev.org/


Re: Simple SOAP Simulators

2008-09-04 Thread Supun Kamburugamuva
Hi Nikhil,

AFAIK axis2/c doesn't have a GUI based SOAP simulator.

Thanks,
Supun..

On Thu, Sep 4, 2008 at 11:35 AM, Nikhil Koranne <[EMAIL PROTECTED]>wrote:

> Hi,
>
> I would like to know if there are any open source GUI based SOAP simulators
> available? I searched for some, but couldn't find much information about.
> Does Axis2C provide a simple request-response SOAP simulator?
>
> Please let me know.
>
> Thanks
> Nikhil
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Software Engineer, WSO2 Inc