Re: Deirdre O'Brien/QAD1 is out of the office.

2003-03-04 Thread Glen Daniels
Dierdre's auto-responder is on the fritz. I sent a message to Niall, haven't heard back yet. If this continues, we should ask the admins to unsubscribe her manually. --G - Original Message - From: "Sanghi, Chetan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 200

Re: question

2003-03-04 Thread Glen Daniels
I don't know, man, but if you figure it out please tell Dierdre O'Brien... :) (http://ws.apache.org/soap/mail.html) --G - Original Message - From: "Maris Orbidans" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 10:18 AM Subject: question How to unsubscribe

Re: JAXM

2001-11-02 Thread Glen Daniels
Axis is already moving towards full compliance with the current JAX-RPC draft spec, and we have plans to do JAXM at some point as well. There's a lot of active development going on right now, but Axis is already a lot more functional in many ways than SOAP 2.2. Attachment support is going in now

Re: ArrayList Serializer

2001-11-02 Thread Glen Daniels
Hi Bill! Axis (http://xml.apache.org/axis) has much more comprehensive built-in support for collection classes. The engine automatically translates any List-implementing class into SOAP arrays, and can also automatically convert incoming SOAP arrays to Arrays, Lists, Vectors, etc. You might wan

RE: Terrible soap performance...Help!

2001-10-19 Thread Glen Daniels
200ms sounds suspiciously like a Nagle algorithm issue... You might try setting the TCP_NODELAY option on the outgoing SOAP socket (i.e. socket.setTcpNoDelay(true)), if that's not already done in the transport sender, or there might be some way to tweak the TCP options of Win2K if it's happening

RE: Getting new WSDL option to work with axis-alpha2

2001-09-26 Thread Glen Daniels
Damn, the fix *should* have made it into alpha-2. The file is correctly labeled in CVS, so I must have had an old version kicking around when I built the dists. Will fix and update the distribution files. --Glen -Original Message- From: Bob Cotton [mailto:[EMAIL PROTECTED]] Sent: Wedn

RE: Getting new WSDL option to work with axis-alpha2

2001-09-26 Thread Glen Daniels
What Doug meant to say is: There is an "[EMAIL PROTECTED]" mailing list for just such threads as these, and an "[EMAIL PROTECTED]" list for development issues. As referenced in the docs included in the distribution, we would appreciate if Axis-related correspondence would go there instead of th

ANNOUNCE: Apache Axis alpha 2 now available

2001-09-21 Thread Glen Daniels
Hi all! [Background : Axis is a new open-source Java SOAP engine from Apache] Just a quick note to let you know that the next "official" release of Axis, alpha 2, is now available from http://xml.apache.org/axis/ in both source-only and binary forms. The big news: this release adds limited WSD

Re: XML parser & cyclical reference question

2001-09-20 Thread Glen Daniels
Hi Simon, Michael: There are many SOAP implementations out there which will automatically marshal cyclic language structures into XML like that you suggest. Axis (http://xml.apache.org/axis) does this kind of serialization by default. --Glen - Original Message - From: "Simon Fell" <[EM

RE: marshaling cyclical data

2001-09-06 Thread Glen Daniels
Axis (http://xml.apache.org/axis) handles serializing arbitrary graph structures, including ones that loop back on themselves. Support for this is integrated into our serialization/deserialization framework, so it can work with custom serializers/deserializers as well. --G > -Original Mess

RE: AW: problem with multidimensional array in a return value

2001-08-29 Thread Glen Daniels
SOAP 2.2 does not, I believe, support multi-dimensional arrays, nor sparse arrays. --Glen > -Original Message- > From: Franck Baniere [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 29, 2001 10:13 AM > To: [EMAIL PROTECTED] > Subject: Re: AW: problem with multidimensional array in

ANNOUNCE: Apache Axis alpha-1 release

2001-08-15 Thread Glen Daniels
keep your eye on the project for lots more good stuff soon. WHERE TO FIND IT: Source and binary distributions are available at http://xml.apache.org/axis/dist/alpha1 WHERE TO SEND COMMENTS: mailto:[EMAIL PROTECTED] Thanks on behalf of the whole team. Glen Daniels Macromedia http://www.macro

RE: Serializer for JAXB

2001-08-14 Thread Glen Daniels
the object graph > with cycles? > JAVA RMI serialization takes care of serializing any > arbitrary object graph > to a linear serialized stream keeping all graph semantics intact. > > Regards, > Soumen Sarkar. > > -Original Message- > From: Glen Daniels [m

RE: Serializer for JAXB

2001-08-14 Thread Glen Daniels
I'd love to see it. Would you be willing to post it to the list? > -Original Message- > From: Radek Wisniewski [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 14, 2001 12:09 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Serializer for JAXB > > > I'v written one, works. >

RE: Does Apache SOAP use DOM for parsing/representation of XML?

2001-08-10 Thread Glen Daniels
> Does the Apache SOAP API use DOM to represent the XML, and it > is possible > to get the DOM tree for the body element without creating a new parser > (SAX/DOM)? If you have generated a given Envelope from a parsed XML stream (rather than creating it programatically), the body entries collect

Re: chaining soap servers

2001-08-08 Thread Glen Daniels
Hi Pae! +1, with some clarification: What you describe is certainly a valid way to look at SOAP intermediaries, but it isn't the whole picture. While there may be times when you want a "transparent proxy" which performs some service or other "invisibly" on your behalf (or that of the service pr

RE: Return ArrayList

2001-08-01 Thread Glen Daniels
d SOAP 2.2 (for attachments or other features Axis doesn't do yet), you can certainly acheive the same results with some extra coding effort. --Glen > -Original Message- > From: Glen Daniels [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 01, 2001 1:40 PM > To: '

RE: Return ArrayList

2001-08-01 Thread Glen Daniels
Axis (http://xml.apache.org/axis), which should be having an alpha release any day now, supports serializing/deserializing any combination of Lists and Arrays, automatically converting as appropriate. The serialization ends up as a standard SOAP Array, so you should have no problems interoperati

RE: href

2001-07-26 Thread Glen Daniels
Axis does indeed support multi-ref serialization, while SOAP 2.2 (I believe) does not. Right now it's off by default, and can be turned on with a property file setting. When on, it will serialize ALL non-basic types as multirefs. In other words, each object that is touched in the serialization

RE: Large File Support Question

2001-07-24 Thread Glen Daniels
Hi Lei!   The design of the next version of Apache SOAP, Axis (http://xml.apache.org/axis) is set up for this kind of thing.  We don't explicitly support it yet, but we plan to enable streaming of incoming and outgoing XML to/from arbitrary InputStreams/OutputStreams.   --Glen -Origi

Re: ServiceManagerClient install problem

2001-07-01 Thread Glen Daniels
Now that SOAP 2.2 has been JAXP-fied, the install instructions might want to change for JRun - you shouldn't now need to mess with the classpath in global.properties, as JAXP will automatically take care of things for you. (doing it still won't hurt, but it should be unnecessary) You do need to d

RE: How to handle faults?

2001-06-26 Thread Glen Daniels
Hi Mattias! Comments inline: > The problem: > > > Our application needs to be able to return application errors > in a way that makes it possible for a client to > programmatically identify the error. The client should be > able to take proper action and inform a user on various

Re: web services performance

2001-06-20 Thread Glen Daniels
Just as an FYI, Axis on two of my machines benchmarked at about 4X and about 8X the performance of ApacheSOAP 2.2 a few weeks ago (the 8X was certainly due to the fact that something in Axis (likely the parser) was able to utilize the dual processors on my work box to great effect). Still don't g

Re: web services performance

2001-06-20 Thread Glen Daniels
Hi Graham! I'm curious - does your 500messages/second figure rely on "99.44%" SOAP, or do you use special GLUE->GLUE patterns to speed things up? I.e. should you expect that same rate (or similar) from GLUE->.NET, say? --Glen - Original Message - From: "graham glass" <[EMAIL PROTECTED]

RE: Exception! java2wsdl tool

2001-06-13 Thread Glen Daniels
This jar is built to work with Axis (http://xml.apache.org/axis). You'll need the axis.jar for it to work. --G > -Original Message- > From: Peter Govind [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 10:45 AM > To: [EMAIL PROTECTED] > Subject: Re: Exception! java2wsdl tool

Re: Bug in RPCRouterServlet doGet() in SOAP 2.2 rc3

2001-05-26 Thread Glen Daniels
It looks to me like the setContentType and the slight html changes were added just to make the doGet() code a little cleaner and more correct. I have a strong suspicion that adding the setContentType after the getWriter was just an oversight. Jim can certainly fix it in his version, but IMHO if