Re: Performance ServiceClient vs. OperationClient

2007-07-05 Thread Philipp Leitner
Still having problems with that ... as you suggested I changed my AXIOM 
processing and created a DataSource that serializes my data model on 
demand (I tried to adapt the ADBDataSource used in ADB). Unfortunately 
this didn't change the performance too much (made the entire processing 
about 10% quicker in my tests, but this may also just be statistical 
fluctuation...). I am still having the problem that the actual execution 
time is about 3 times higher in my ServiceClient based solution as 
compared to the ADB stubs (I am comparing the time spent in 
ServiceClient.requestResponse() in my solution with the time that the 
stubs spend in _operationClient.execute(true);).


/philipp

Davanum Srinivas wrote:

That's because you already created the AXIOM model in memory...I'd
recommend starting from this test case :)

http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/impl/llom/OMSourcedElementTest.java 



thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

OK, so it actually is that much quicker to use XMLStreamWriter and
writeStartElement(), writeEndElement() instead of createOMElement() and
the like? What is the reason for this?

I experimented a little with the generated Axis2 stubs, and added a 
simple


   env.toStringWithConsume();

just to see how this preliminary consumation of the AXIOM model
influences the invocation time. To my surprise this didn't quite change
the invocation time that much ...

Is there any good documentation on AXIOM and stream parsing available? I
definitely need to understand AXIOM a lot better before I am able to
make significant process here ...

thanks for your help,
philipp

Davanum Srinivas wrote:
 For best performance, lot of effort mind you :) is to use OMDataSource
 (see test case in AXIOM svn) on the send side. You will have to use
 the serialize method the gives you XMLStreamWriter and you can write
 out the xml directly to the output stream. On the other side, you can
 get a XMLStreamReader using getXMLStreamReaderWithoutCaching on the
 returned OMElement. using that you can read whatever pieces you need
 from the response.

 thanks,
 dims

 On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
 Hi Dims,

 I already expected something like this ... I just couldn't find much
 optimization in the generated ADB stubs - I probably just looked at 
the

 wrong places ...

 Currently my AXIOM code is quite naive. I am using the 
createOMElement

 and createOMText methods of OMFactory to iteratively create my SOAP
 payload, and invoke the service using the ServiceClient interface

 snip
 ServiceClient sender = new ServiceClient();
 OMelement result = sender.sendReceive(axisOp);
 /snip

 /philipp

 Davanum Srinivas schrieb:
  Philipp,
 
  Am afraid the key to performance is not ServiceClient vs
  OperationClient as you rightly pointed guessed. The key is AXIOM
  itself and its usage. If you post your code with request/response
  sample then we may be able to help. But the best way to 
understand is
  to look at the generated code for ADB databinding. All tricks we 
know

  in terms of perfomance gets into the generated code :)
 
  thanks,
  dims
 
  On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
  Hi list,
 
  I have a question rg. performance of the ServiceClient compared 
to the

  OperationClient interface.
 
  Personally, I would expect the performance* to be roughly the 
same for
  both interfaces since ServiceClient is just a more convenient 
wrapper

  for simple tasks.
 
  But now I have measured the invocation times (as defined below), 
and

  found that my handwritten client (which uses ServiceClient and
 AXIOM)
  takes about 4 times as long as the stubs generated by wsdl2java 
(which

  use the OperationClient interface) to produce a result against the
 same
  service. I guess the reason for this performance boost of the
 client is
  either that (a) the OperationClient interface is for some reason 
a lot

  faster than the ServiceClient interface or that (b) there is some
 tricky
  optimization going on somewhere in the ADB stubs that I failed to
 see so
  far.
 
  Has anybody any insight here that could help me to improve my
  self-produced client, or any other information that would help me
  understand the differences here?
 
  thanks in advance,
  philipp
 
  P.S.: I also did a few comparisons with other frameworks (WSIF and
  XFire), and Axis2 seems to be doing quite well so far. Definitely
  quicker than WSIF, and in a good tie with XFire (but I still have
 to do
  a lot to get really conclusive results here).
 
 
  *in this context I mean with performance the time between 
calling eg.

  ServiceClient.sendReceive() and the response being returned to the
  client.
 
  
-

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

 

Re: Performance ServiceClient vs. OperationClient

2007-07-05 Thread Philipp Leitner

Addendum: here's the relevant part of my data source implementation:

snip
public class DaCoSSDataSource implements OMDataSource {

public DaCoSSDataSource(... some params ...) {
...
}

public void serialize(OutputStream output, OMOutputFormat format)
throws XMLStreamException {
XMLStreamWriter xmlStreamWriter =
  StAXUtils.createXMLStreamWriter(output);
serialize(xmlStreamWriter);
xmlStreamWriter.flush();
}

public void serialize(Writer writer, OMOutputFormat format) throws
XMLStreamException {
serialize(StAXUtils.createXMLStreamWriter(writer));
}

public void serialize(XMLStreamWriter xmlWriter)
throws XMLStreamException {
// this fires the conversion to XML using xmlWriter
// as XMLStreamWriter
converter.convert(..., xmlWriter);
}

public XMLStreamReader getReader() throws XMLStreamException {
// not implemented since I figured that I don't need this method
return null;
}
}
/snip

/philipp

Philipp Leitner wrote:
Still having problems with that ... as you suggested I changed my AXIOM 
processing and created a DataSource that serializes my data model on 
demand (I tried to adapt the ADBDataSource used in ADB). Unfortunately 
this didn't change the performance too much (made the entire processing 
about 10% quicker in my tests, but this may also just be statistical 
fluctuation...). I am still having the problem that the actual execution 
time is about 3 times higher in my ServiceClient based solution as 
compared to the ADB stubs (I am comparing the time spent in 
ServiceClient.requestResponse() in my solution with the time that the 
stubs spend in _operationClient.execute(true);).


/philipp

Davanum Srinivas wrote:

That's because you already created the AXIOM model in memory...I'd
recommend starting from this test case :)

http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/impl/llom/OMSourcedElementTest.java 



thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

OK, so it actually is that much quicker to use XMLStreamWriter and
writeStartElement(), writeEndElement() instead of createOMElement() and
the like? What is the reason for this?

I experimented a little with the generated Axis2 stubs, and added a 
simple


   env.toStringWithConsume();

just to see how this preliminary consumation of the AXIOM model
influences the invocation time. To my surprise this didn't quite change
the invocation time that much ...

Is there any good documentation on AXIOM and stream parsing available? I
definitely need to understand AXIOM a lot better before I am able to
make significant process here ...

thanks for your help,
philipp

Davanum Srinivas wrote:
 For best performance, lot of effort mind you :) is to use OMDataSource
 (see test case in AXIOM svn) on the send side. You will have to use
 the serialize method the gives you XMLStreamWriter and you can write
 out the xml directly to the output stream. On the other side, you can
 get a XMLStreamReader using getXMLStreamReaderWithoutCaching on the
 returned OMElement. using that you can read whatever pieces you need
 from the response.

 thanks,
 dims

 On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
 Hi Dims,

 I already expected something like this ... I just couldn't find much
 optimization in the generated ADB stubs - I probably just looked 
at the

 wrong places ...

 Currently my AXIOM code is quite naive. I am using the 
createOMElement

 and createOMText methods of OMFactory to iteratively create my SOAP
 payload, and invoke the service using the ServiceClient interface

 snip
 ServiceClient sender = new ServiceClient();
 OMelement result = sender.sendReceive(axisOp);
 /snip

 /philipp

 Davanum Srinivas schrieb:
  Philipp,
 
  Am afraid the key to performance is not ServiceClient vs
  OperationClient as you rightly pointed guessed. The key is AXIOM
  itself and its usage. If you post your code with request/response
  sample then we may be able to help. But the best way to 
understand is
  to look at the generated code for ADB databinding. All tricks we 
know

  in terms of perfomance gets into the generated code :)
 
  thanks,
  dims
 
  On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
  Hi list,
 
  I have a question rg. performance of the ServiceClient compared 
to the

  OperationClient interface.
 
  Personally, I would expect the performance* to be roughly the 
same for
  both interfaces since ServiceClient is just a more convenient 
wrapper

  for simple tasks.
 
  But now I have measured the invocation times (as defined 
below), and

  found that my handwritten client (which uses ServiceClient and
 AXIOM)
  takes about 4 times as long as the stubs generated by wsdl2java 
(which

  use the OperationClient interface) to produce a result against the
 same
  service. I guess the reason for this 

Performance ServiceClient vs. OperationClient

2007-07-02 Thread Philipp Leitner

Hi list,

I have a question rg. performance of the ServiceClient compared to the 
OperationClient interface.


Personally, I would expect the performance* to be roughly the same for 
both interfaces since ServiceClient is just a more convenient wrapper 
for simple tasks.


But now I have measured the invocation times (as defined below), and 
found that my handwritten client (which uses ServiceClient and AXIOM) 
takes about 4 times as long as the stubs generated by wsdl2java (which 
use the OperationClient interface) to produce a result against the same 
service. I guess the reason for this performance boost of the client is 
either that (a) the OperationClient interface is for some reason a lot 
faster than the ServiceClient interface or that (b) there is some tricky 
optimization going on somewhere in the ADB stubs that I failed to see so 
far.


Has anybody any insight here that could help me to improve my 
self-produced client, or any other information that would help me 
understand the differences here?


thanks in advance,
philipp

P.S.: I also did a few comparisons with other frameworks (WSIF and 
XFire), and Axis2 seems to be doing quite well so far. Definitely 
quicker than WSIF, and in a good tie with XFire (but I still have to do 
a lot to get really conclusive results here).



*in this context I mean with performance the time between calling eg. 
ServiceClient.sendReceive() and the response being returned to the client.


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



Re: Performance ServiceClient vs. OperationClient

2007-07-02 Thread Davanum Srinivas

Philipp,

Am afraid the key to performance is not ServiceClient vs
OperationClient as you rightly pointed guessed. The key is AXIOM
itself and its usage. If you post your code with request/response
sample then we may be able to help. But the best way to understand is
to look at the generated code for ADB databinding. All tricks we know
in terms of perfomance gets into the generated code :)

thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

Hi list,

I have a question rg. performance of the ServiceClient compared to the
OperationClient interface.

Personally, I would expect the performance* to be roughly the same for
both interfaces since ServiceClient is just a more convenient wrapper
for simple tasks.

But now I have measured the invocation times (as defined below), and
found that my handwritten client (which uses ServiceClient and AXIOM)
takes about 4 times as long as the stubs generated by wsdl2java (which
use the OperationClient interface) to produce a result against the same
service. I guess the reason for this performance boost of the client is
either that (a) the OperationClient interface is for some reason a lot
faster than the ServiceClient interface or that (b) there is some tricky
optimization going on somewhere in the ADB stubs that I failed to see so
far.

Has anybody any insight here that could help me to improve my
self-produced client, or any other information that would help me
understand the differences here?

thanks in advance,
philipp

P.S.: I also did a few comparisons with other frameworks (WSIF and
XFire), and Axis2 seems to be doing quite well so far. Definitely
quicker than WSIF, and in a good tie with XFire (but I still have to do
a lot to get really conclusive results here).


*in this context I mean with performance the time between calling eg.
ServiceClient.sendReceive() and the response being returned to the client.

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





--
Davanum Srinivas :: http://davanum.wordpress.com

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



Re: Performance ServiceClient vs. OperationClient

2007-07-02 Thread Philipp Leitner

Hi Dims,

I already expected something like this ... I just couldn't find much 
optimization in the generated ADB stubs - I probably just looked at the 
wrong places ...


Currently my AXIOM code is quite naive. I am using the createOMElement 
and createOMText methods of OMFactory to iteratively create my SOAP 
payload, and invoke the service using the ServiceClient interface


snip
ServiceClient sender = new ServiceClient();
OMelement result = sender.sendReceive(axisOp);
/snip

/philipp

Davanum Srinivas schrieb:

Philipp,

Am afraid the key to performance is not ServiceClient vs
OperationClient as you rightly pointed guessed. The key is AXIOM
itself and its usage. If you post your code with request/response
sample then we may be able to help. But the best way to understand is
to look at the generated code for ADB databinding. All tricks we know
in terms of perfomance gets into the generated code :)

thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

Hi list,

I have a question rg. performance of the ServiceClient compared to the
OperationClient interface.

Personally, I would expect the performance* to be roughly the same for
both interfaces since ServiceClient is just a more convenient wrapper
for simple tasks.

But now I have measured the invocation times (as defined below), and
found that my handwritten client (which uses ServiceClient and AXIOM)
takes about 4 times as long as the stubs generated by wsdl2java (which
use the OperationClient interface) to produce a result against the same
service. I guess the reason for this performance boost of the client is
either that (a) the OperationClient interface is for some reason a lot
faster than the ServiceClient interface or that (b) there is some tricky
optimization going on somewhere in the ADB stubs that I failed to see so
far.

Has anybody any insight here that could help me to improve my
self-produced client, or any other information that would help me
understand the differences here?

thanks in advance,
philipp

P.S.: I also did a few comparisons with other frameworks (WSIF and
XFire), and Axis2 seems to be doing quite well so far. Definitely
quicker than WSIF, and in a good tie with XFire (but I still have to do
a lot to get really conclusive results here).


*in this context I mean with performance the time between calling eg.
ServiceClient.sendReceive() and the response being returned to the 
client.


-
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: Performance ServiceClient vs. OperationClient

2007-07-02 Thread Davanum Srinivas

For best performance, lot of effort mind you :) is to use OMDataSource
(see test case in AXIOM svn) on the send side. You will have to use
the serialize method the gives you XMLStreamWriter and you can write
out the xml directly to the output stream. On the other side, you can
get a XMLStreamReader using getXMLStreamReaderWithoutCaching on the
returned OMElement. using that you can read whatever pieces you need
from the response.

thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

Hi Dims,

I already expected something like this ... I just couldn't find much
optimization in the generated ADB stubs - I probably just looked at the
wrong places ...

Currently my AXIOM code is quite naive. I am using the createOMElement
and createOMText methods of OMFactory to iteratively create my SOAP
payload, and invoke the service using the ServiceClient interface

snip
ServiceClient sender = new ServiceClient();
OMelement result = sender.sendReceive(axisOp);
/snip

/philipp

Davanum Srinivas schrieb:
 Philipp,

 Am afraid the key to performance is not ServiceClient vs
 OperationClient as you rightly pointed guessed. The key is AXIOM
 itself and its usage. If you post your code with request/response
 sample then we may be able to help. But the best way to understand is
 to look at the generated code for ADB databinding. All tricks we know
 in terms of perfomance gets into the generated code :)

 thanks,
 dims

 On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
 Hi list,

 I have a question rg. performance of the ServiceClient compared to the
 OperationClient interface.

 Personally, I would expect the performance* to be roughly the same for
 both interfaces since ServiceClient is just a more convenient wrapper
 for simple tasks.

 But now I have measured the invocation times (as defined below), and
 found that my handwritten client (which uses ServiceClient and AXIOM)
 takes about 4 times as long as the stubs generated by wsdl2java (which
 use the OperationClient interface) to produce a result against the same
 service. I guess the reason for this performance boost of the client is
 either that (a) the OperationClient interface is for some reason a lot
 faster than the ServiceClient interface or that (b) there is some tricky
 optimization going on somewhere in the ADB stubs that I failed to see so
 far.

 Has anybody any insight here that could help me to improve my
 self-produced client, or any other information that would help me
 understand the differences here?

 thanks in advance,
 philipp

 P.S.: I also did a few comparisons with other frameworks (WSIF and
 XFire), and Axis2 seems to be doing quite well so far. Definitely
 quicker than WSIF, and in a good tie with XFire (but I still have to do
 a lot to get really conclusive results here).


 *in this context I mean with performance the time between calling eg.
 ServiceClient.sendReceive() and the response being returned to the
 client.

 -
 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]





--
Davanum Srinivas :: http://davanum.wordpress.com

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



Re: Performance ServiceClient vs. OperationClient

2007-07-02 Thread Philipp Leitner
OK, so it actually is that much quicker to use XMLStreamWriter and 
writeStartElement(), writeEndElement() instead of createOMElement() and 
the like? What is the reason for this?


I experimented a little with the generated Axis2 stubs, and added a simple

  env.toStringWithConsume();

just to see how this preliminary consumation of the AXIOM model 
influences the invocation time. To my surprise this didn't quite change 
the invocation time that much ...


Is there any good documentation on AXIOM and stream parsing available? I 
definitely need to understand AXIOM a lot better before I am able to 
make significant process here ...


thanks for your help,
philipp

Davanum Srinivas wrote:

For best performance, lot of effort mind you :) is to use OMDataSource
(see test case in AXIOM svn) on the send side. You will have to use
the serialize method the gives you XMLStreamWriter and you can write
out the xml directly to the output stream. On the other side, you can
get a XMLStreamReader using getXMLStreamReaderWithoutCaching on the
returned OMElement. using that you can read whatever pieces you need

from the response.


thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

Hi Dims,

I already expected something like this ... I just couldn't find much
optimization in the generated ADB stubs - I probably just looked at the
wrong places ...

Currently my AXIOM code is quite naive. I am using the createOMElement
and createOMText methods of OMFactory to iteratively create my SOAP
payload, and invoke the service using the ServiceClient interface

snip
ServiceClient sender = new ServiceClient();
OMelement result = sender.sendReceive(axisOp);
/snip

/philipp

Davanum Srinivas schrieb:
 Philipp,

 Am afraid the key to performance is not ServiceClient vs
 OperationClient as you rightly pointed guessed. The key is AXIOM
 itself and its usage. If you post your code with request/response
 sample then we may be able to help. But the best way to understand is
 to look at the generated code for ADB databinding. All tricks we know
 in terms of perfomance gets into the generated code :)

 thanks,
 dims

 On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
 Hi list,

 I have a question rg. performance of the ServiceClient compared to the
 OperationClient interface.

 Personally, I would expect the performance* to be roughly the same for
 both interfaces since ServiceClient is just a more convenient wrapper
 for simple tasks.

 But now I have measured the invocation times (as defined below), and
 found that my handwritten client (which uses ServiceClient and 
AXIOM)

 takes about 4 times as long as the stubs generated by wsdl2java (which
 use the OperationClient interface) to produce a result against the 
same
 service. I guess the reason for this performance boost of the 
client is

 either that (a) the OperationClient interface is for some reason a lot
 faster than the ServiceClient interface or that (b) there is some 
tricky
 optimization going on somewhere in the ADB stubs that I failed to 
see so

 far.

 Has anybody any insight here that could help me to improve my
 self-produced client, or any other information that would help me
 understand the differences here?

 thanks in advance,
 philipp

 P.S.: I also did a few comparisons with other frameworks (WSIF and
 XFire), and Axis2 seems to be doing quite well so far. Definitely
 quicker than WSIF, and in a good tie with XFire (but I still have 
to do

 a lot to get really conclusive results here).


 *in this context I mean with performance the time between calling eg.
 ServiceClient.sendReceive() and the response being returned to the
 client.

 -
 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]







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



Re: Performance ServiceClient vs. OperationClient

2007-07-02 Thread Davanum Srinivas

That's because you already created the AXIOM model in memory...I'd
recommend starting from this test case :)

http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/impl/llom/OMSourcedElementTest.java

thanks,
dims

On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:

OK, so it actually is that much quicker to use XMLStreamWriter and
writeStartElement(), writeEndElement() instead of createOMElement() and
the like? What is the reason for this?

I experimented a little with the generated Axis2 stubs, and added a simple

   env.toStringWithConsume();

just to see how this preliminary consumation of the AXIOM model
influences the invocation time. To my surprise this didn't quite change
the invocation time that much ...

Is there any good documentation on AXIOM and stream parsing available? I
definitely need to understand AXIOM a lot better before I am able to
make significant process here ...

thanks for your help,
philipp

Davanum Srinivas wrote:
 For best performance, lot of effort mind you :) is to use OMDataSource
 (see test case in AXIOM svn) on the send side. You will have to use
 the serialize method the gives you XMLStreamWriter and you can write
 out the xml directly to the output stream. On the other side, you can
 get a XMLStreamReader using getXMLStreamReaderWithoutCaching on the
 returned OMElement. using that you can read whatever pieces you need
 from the response.

 thanks,
 dims

 On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
 Hi Dims,

 I already expected something like this ... I just couldn't find much
 optimization in the generated ADB stubs - I probably just looked at the
 wrong places ...

 Currently my AXIOM code is quite naive. I am using the createOMElement
 and createOMText methods of OMFactory to iteratively create my SOAP
 payload, and invoke the service using the ServiceClient interface

 snip
 ServiceClient sender = new ServiceClient();
 OMelement result = sender.sendReceive(axisOp);
 /snip

 /philipp

 Davanum Srinivas schrieb:
  Philipp,
 
  Am afraid the key to performance is not ServiceClient vs
  OperationClient as you rightly pointed guessed. The key is AXIOM
  itself and its usage. If you post your code with request/response
  sample then we may be able to help. But the best way to understand is
  to look at the generated code for ADB databinding. All tricks we know
  in terms of perfomance gets into the generated code :)
 
  thanks,
  dims
 
  On 7/2/07, Philipp Leitner [EMAIL PROTECTED] wrote:
  Hi list,
 
  I have a question rg. performance of the ServiceClient compared to the
  OperationClient interface.
 
  Personally, I would expect the performance* to be roughly the same for
  both interfaces since ServiceClient is just a more convenient wrapper
  for simple tasks.
 
  But now I have measured the invocation times (as defined below), and
  found that my handwritten client (which uses ServiceClient and
 AXIOM)
  takes about 4 times as long as the stubs generated by wsdl2java (which
  use the OperationClient interface) to produce a result against the
 same
  service. I guess the reason for this performance boost of the
 client is
  either that (a) the OperationClient interface is for some reason a lot
  faster than the ServiceClient interface or that (b) there is some
 tricky
  optimization going on somewhere in the ADB stubs that I failed to
 see so
  far.
 
  Has anybody any insight here that could help me to improve my
  self-produced client, or any other information that would help me
  understand the differences here?
 
  thanks in advance,
  philipp
 
  P.S.: I also did a few comparisons with other frameworks (WSIF and
  XFire), and Axis2 seems to be doing quite well so far. Definitely
  quicker than WSIF, and in a good tie with XFire (but I still have
 to do
  a lot to get really conclusive results here).
 
 
  *in this context I mean with performance the time between calling eg.
  ServiceClient.sendReceive() and the response being returned to the
  client.
 
  -
  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]





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





--
Davanum Srinivas :: http://davanum.wordpress.com

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