RE: woe the struggles of xsd:import/wsdl:import

2003-08-25 Thread Adam Greene
May I suggest that this is really a problem with Java? The exception occured within URLConnection, not com.ibm.wsdl. Therefore, I suggest fine tuning the web servers MIME types to include xsd. Failing that, it may require a rewrite of the getContentAsInputStream method in com.ibm.wsdl.util.Strin

RE: Web Services benchmarking tools

2003-03-13 Thread Adam Greene
http://www.pushtotest.com/ptt They have tools specific to web services test. -Original Message- From: Jens Schumann [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: Re: Web Services benchmarking tools On 3/13/03 03:41 PM Guillaume Sauthier

RE: Axis performance in compare with XRPC (reference implementation from SUN)!

2003-02-10 Thread Adam Greene
Actually 10-15x faster seems to be only in the WASP advertising in actuality it's only 2-3x. -Original Message- From: Luís Fraga [mailto:[EMAIL PROTECTED]] Sent: Monday, February 10, 2003 8:20 AM To: [EMAIL PROTECTED] Subject: Re: Axis performance in compare with XRPC (reference implementa

RE: client in C++

2003-02-04 Thread Adam Greene
Dare I say it... Why not try VS.NET... Nah. gSOAP is one product, Systinet WASP C++ is another. -Original Message- From: Benjamin Tomasini [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 11:00 AM To: [EMAIL PROTECTED] Subject: Re: client in C++ There was some discussion on

RE: Axis and Mozilla SOAP Javascript

2002-10-21 Thread Adam Greene
Take a look at WASP, it can generate JavaScript client code. http://www.systinet.com -Original Message- From: [EMAIL PROTECTED] [mailto:villardml@;free.fr] Sent: Monday, October 21, 2002 3:55 PM To: [EMAIL PROTECTED] Subject: Re: Axis and Mozilla SOAP Javascript For js dom, here an UR

Re: AW: Bean Serializer as Seperate package

2002-07-15 Thread Adam Greene
What I was looking for was the ability to take an arbitrary object, run it through the Serializer and spit out XML, which when run back through the Deserializer would result in the recreation of the object, just like Java's Reflect package, only XML instead of binary. > Why do you recommend th

Bean Serializer as Seperate package

2002-07-14 Thread Adam Greene
I'm trying to develop a portal engine and I need to be able to serialize the portlets to XML and I'm looking for an Java to XML, XML to Java solution, sort of like the Bean Serializer in AXIS or XMLEncoder in JDK 1.4.0 (Which I cannot seem to get to work, it just renders empty docs). Is it po

Re: Session full web service with ejb provider and JAAS security

2002-05-10 Thread Adam Greene
Title: Session full web service with ejb provider and JAAS security Exactly, Axis does not support Stateful Beans, only Stateless.  Apache SOAP (previous generation) did State, Stateless, and Entity (at least the docs said it did). - Original Message - From: [EMAIL PROTECTED]

Re: Axis SOAP on PDA

2002-05-10 Thread Adam Greene
Check out http://ksoap.enhydra.org/index.html , which is SOAP for J2ME. You may also be able to do it with AXIS, but kSOAP was designed for J2ME. - Original Message - From: "Patrick Chauviaux" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 7:09 AM Subject: Axis SO

Re: Axis and EJB with Borland Enterprise Server

2002-05-10 Thread Adam Greene
Further to my last email. Watch out for the change in Beta 2, if you upgrade, you need to do the following: The solution I came up with for this was to put the Remote Interface in the "className" parameter. The ServiceDesc (internal axis class) will gather Methods from the interface, then "invok

Re: Axis and EJB with Borland Enterprise Server

2002-05-10 Thread Adam Greene
I haven't tried it with Borland, but I have done it on my own using Pramati Server (which means I had to install Axis myself into the EJB Server) and it works. Here is what your deployment descriptor should look like: NOTE: You will need to change the jndiContextClass and jnd

Re: Admin console - Deployment

2002-04-30 Thread Adam Greene
You can't, it doesn't exist in AXIS yet. - Original Message - From: "Benoit ADAM" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 4:56 AM Subject: Admin console - Deployment > Hi, > > I was using Soap 2.2 and I've installed AXIS beta1. > Now, I didn't find th

Re: Simple session example

2002-04-30 Thread Adam Greene
You have to add the following line to the deploy descriptor : where scope is the same as a servlet: session, application, request (the default). - Original Message - From: "Richard Taylor" <[EMAIL PROTECTED]> To: "axis-user" <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 9:58 AM Sub

Re: Tomcat / Axis Performance Issues

2002-04-30 Thread Adam Greene
The first time you access a context under Tomcat is when it loads it, basically it lazy load web contexts so that the unaccessed ones are cluttering up memory. You can add a command to the servlet context in web.xml to cause it to load with the server (I just don't know the exact name). - Or

EJB Support

2002-04-29 Thread Adam Greene
Can Apache AXIS support Stateful and Entity EJBs??  Apache SOAP says that it can, but in my tests with AXIS, it only supports Stateless.  Is there any plans to support stateful beans (to be used with sessions).  You can use a stateful bean, it just doesn't release the bean when the session t

Re: Hi

2002-04-23 Thread Adam Greene
Pankaj is right. It is Apache AXIS client side code. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 2:32 PM Subject: RE: Hi > > Pankaj, > > I'm sure that when you checked with HP's legal compliance they approved of > your comments..

Re: C++Builder client

2002-04-22 Thread Adam Greene
You need to set the username and password on the THTTPRio (if it's like Delphi). - Original Message - From: Andrew Klimov To: [EMAIL PROTECTED] Sent: Monday, April 22, 2002 12:00 PM Subject: C++Builder client Hi! I'd installed StockQuoteService under Tomcat

How do I add stuff to the headers

2002-04-22 Thread Adam Greene
I need to be able to add a value to the SOAP header called conversationID, so that I can get BEA to work with Apache AXIS, but I cannot figure out how to do that.  What must I do, I figure it has something to do with the addHeader method on the Call.

BEA 7.0 Beta and Apache AXIS

2002-04-22 Thread Adam Greene
I have a BEA Web Service that uses Conversations (their concept of Sessions) and it generates the WSDL at the bottom of this message, it is long I know, but what I'm interested in is figuring out what this error is about:       This request doesn't conform to the target service/method's

Re: how to implement sessions, persistent objects, etc. ?

2002-04-19 Thread Adam Greene
The only problem with that is synchronize()ing the object as it would have global scope. - Original Message - From: "Andrew Vardeman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 5:38 PM Subject: RE: how to implement sessions, persistent objects, etc. ? > Lene

Re: .JWS support ?

2002-04-17 Thread Adam Greene
support works in Beta 1. > > JWS support was recently broken in the CVS tree (last week) for a few days, but should be currently working. > > -- > Tom Jordahl > > -Original Message- > From: Adam Greene [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 17, 2002

Re: Does session support work for non-Axis clients?

2002-04-17 Thread Adam Greene
Yes, I guess it does. - Original Message - From: "CM" <[EMAIL PROTECTED]> To: "Glen Daniels" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 4:21 PM Subject: Does session support work for non-Axis clients? > Glen, > > In one of your postings > (http://marc.

Re: .JWS support ?

2002-04-17 Thread Adam Greene
loyed services in later builds after March 19). - Original Message - From: "Jesper Pedersen" <[EMAIL PROTECTED]> To: "Adam Greene" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 10:35 AM Subject: Re: .JWS support ? I get the f

Re: XML to XSD

2002-04-16 Thread Adam Greene
va classes are generated by writing a binding descriptor that overrides the compiler's assumptions, pay as you go.  Don't know if this product has a future, though. -Original Message-From:

Re: XML to XSD

2002-04-16 Thread Adam Greene
a future, though. -Original Message-From: Adam Greene [mailto:[EMAIL PROTECTED]]Sent: Tuesday, April 16, 2002 8:43 AMTo: [EMAIL PROTECTED]Subject: XML to XSD Does anyone know of a good (and free) program that would help one create an XML Schema

XML to XSD

2002-04-16 Thread Adam Greene
Does anyone know of a good (and free) program that would help one create an XML Schema from an XML file.  I'm still kind of new to all these different XML formats (DTD, XML, XSD, WSDL, and the list goes on), but I want to use Castor to create classes for loading and saving XML and it wants t

Re: Unsupported major.minor version 48.0

2002-04-12 Thread Adam Greene
now.  J   Newman   -Original Message-From: Adam Greene [mailto:[EMAIL PROTECTED]] Sent: 12 April, 2002 11:27 AMTo: [EMAIL PROTECTED]Subject: Re: Unsupported major.minor version 48.0   Why are you using Eclipse, any particular reason, because you could use Forte for Java.  That&#x

Re: Unsupported major.minor version 48.0

2002-04-12 Thread Adam Greene
is driving me nuts.  I've made sure to rebuild the classes under the new settings, but to no avail.  I'm almost positive it's eclipse now.    Aaaa   -----Original Message-From: Adam Greene [mailto:[EMAIL PROTECTED]] Sent: 12 April, 2002

Re: Unsupported major.minor version 48.0

2002-04-12 Thread Adam Greene
ing?  I've upgraded from tomcat 4.0.3 to 4.0.4-b2, unistalled jdk1.4, unistalled and re-installed 1.3.1_02 and nothing makes it go away.    Help me, cause I'm stoopid. Newman   -Original Message-From: Adam Greene [mailto:[EMAIL PROTECTED]] Sent: 12 Apri

Re: Unsupported major.minor version 48.0

2002-04-12 Thread Adam Greene
This error is caused by upgrading from 1.3.1 to 1.4 of the JDK. - Original Message - From: Newman, Scott To: [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 8:07 PM Subject: RE: Unsupported major.minor version 48.0 It is a funny thing.  I shouldn't

Re: errors with my delphi client

2002-04-12 Thread Adam Greene
Delphi uses a Namspace of ns0 and AXIS uses ns1, I don't know if that makes a difference, but if you watch the SOAP conversations it you will see it. - Original Message - From: Bin Liu To: [EMAIL PROTECTED] Sent: Friday, April 12, 2002 5:31 AM Subject: errors with my

Problems between Apache and Microsoft / Problems with Message Digest

2002-04-09 Thread Adam Greene
I don't know if this affects Tomcat / AXIS, but Microsoft and Apache cannot communicate with each other when it comes to Message Digest authentication.  It was in EWeek last week.

Re: MessageContext?

2002-04-09 Thread Adam Greene
put a call to XXXLocator.setMaintainSession(true) in just before you call XXXLocator.getXXX, like this: TestServiceLocator sl = new TestServiceLocator(); TestServiceLocation.setMaintainSession(true) Test p = sl.getMyEJB(); and don't forget to include in your wsdd. -

Re: Session cleanup

2002-04-08 Thread Adam Greene
Me too. I added log entries for each time my Session EJB was created, removed, passivated, activated, and written / read. I saw it create a new bean for each session (once I figured out how to get sessions working) and I saw it passivate and write out beans when it reached the in memory max (40)

Dealing with Sessions

2002-04-07 Thread Adam Greene
How do you control how long a Session is in Axis.  I'm having the trouble that the EJB is timing out before the session does.  What should I do??

Stateful EJB

2002-04-06 Thread Adam Greene
Does anyone know how to use Stateful EJBs as the source of a web service and actually have it remember the bean between calls??

Re: C++ and Axis

2002-04-05 Thread Adam Greene
I'm not sure. Because like every Web Services tool kit for Java or C++, the documentation is either poorly written or non-existant. We have got to get better documentation for Apache AXIS. I know it's in flux, but even if the docs changed and had a "Important Changes" section to say "this is n

Example of using EJB as source of Web Service

2002-04-05 Thread Adam Greene
Does any have an example of a web service based on a stateless EJB. This is what I have: deploy.wsdd http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

Re: Service deployment location

2002-04-04 Thread Adam Greene
Actually put every jar file in the webapps/axis/web-inf/lib, except jax-rpc.jar because any file that contains javax.* namespaces on pacakage must be put in the %TOMCAT_HOME%\common\lib directory.  That is how I do it and it works great. - Original Message - From: Walden Mat

JWS broken

2002-04-04 Thread Adam Greene
I have tried every beta1 since March 19 (including April 3rd's build) and .JWS support doesn't seem to be working.  The official Beta1, it works, just nothing after that.  I'm running Apache 4.0.2, JDK 1.4.0, and Apache AXIS Beta 1.   Anyone else notice this??

Any good books

2002-04-02 Thread Adam Greene
I'm new to AXIS and desperately need help as we have a project that requires Web Services.  Is there any books available that can give me a really good understanding of Web Services (hopefully with a focus on AXIS) and how to do things like stateful Web Services that are specific to each cli

EJB Provider

2002-04-02 Thread Adam Greene
Can someone give me an example of wrapping an EJB Session Bean as a web service.  Especially how to write the deploy descriptor.  I'm new to web services and loving what I see, just I cannot find information on how to do this.

HELP! Java2WSDL

2002-03-22 Thread Adam Greene
I cannot figure out how to run the java2wsdl program.  I can get everything else in AXIS working (including the wsdl2java program), just not java2wsdl.  It runs ok, but no matter what I put a parameters it just keeps listing the help (what parameters are available).  Here is what I ask of yo

Never mind

2002-03-22 Thread Adam Greene
I had asked for help on java2wsdl, but I downloaded the latest version and it has everything in it that I need to know.  Thanks anyways though.