RE: why have to copy .class files of existing webapp into Axisweb-inf folder??

2002-11-27 Thread Adam.Leggett
Mike, >You can also create a directory on your Tomcat server that holds the >webapp component classes containing the methods you want to call, then >modify your classpath for both webapps to point to the "shared" >components directory. True, but that would make your webapp container specific. Its

Websphere Tip

2002-07-10 Thread Adam.Leggett
Hi all, Just thought I'd share something I discovered when attempting to port our application (which uses AXIS as its web service engine) to WebSphere 4.0.1 from WebLogic 6.1 WebSphere has its own xerces.jar in ${server-root}/lib directory. I dunno what version it is but it was causing axis some

SOAP Load testing - Jmeter?

2002-05-02 Thread Adam.Leggett
Hi, Im looking for a tool to load test using soap requests. Id like to use Jmeter but it seems to not handle soap. I checked out LOAD already. Anyone know of any others? TIA Adam Leggett <[EMAIL PROTECTED]> Applications Solution Developer UPCO Direct Line: 0113 20 10 631 Fax: 0113 20 10 666

RE: BEA 7.0 Beta and Apache AXIS

2002-04-24 Thread Adam.Leggett
I looked at WebLogic Workshop last week and found that: 1) It cant handle multirefs 2) the .jws are not portable, and the use of custom javadoc tags is a mistake I thing - better to declare in a config file surely? 3) It does not appear to have any concept of Handler Chains a la Axis and JAX-RPC

RE: how to disable multiref

2002-04-16 Thread Adam.Leggett
At a slight tangent, does anyone know if the ability to handle multi-reference values is a requirement for SOAP implementations? Cheers Adam -Original Message- From: Vidyanand Murunikkara [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 1:31 AM To: [EMAIL PROTECTED] Subject: RE

Document/Literal v RPC/Encoded

2002-04-15 Thread Adam.Leggett
Hello, Can anyone point me in the direction of a good article explaining the detailed differences between SOAP Document/literal style and RPC. Ive had a fair bit of exposure to SOAP-RPC and encoding and have been advocating this approach. However ,im particularly interested in the merits/advant

RE: SimpleDeser cannot handle structured data

2002-04-12 Thread Adam.Leggett
al Message----- From: Adam.Leggett [mailto:[EMAIL PROTECTED]] Sent: Friday, April 12, 2002 10:47 AM To: Axis User ([EMAIL PROTECTED]) Subject: SimpleDeser cannot handle structured data I'm attempting to interop with Axis client and BEA WebLogic Workshop service. Workshop SOAP-faulted when usi

SimpleDeser cannot handle structured data

2002-04-12 Thread Adam.Leggett
I'm attempting to interop with Axis client and BEA WebLogic Workshop service. Workshop SOAP-faulted when using multirefs in the request so I disabled them: AxisEngine engine = service.getEngine(); engine.setOption("sendMultiRefs",new Boolean("false")); The request my axis client

RE: MessageElement

2002-04-10 Thread Adam.Leggett
ginal Message- From: Oren Bar-El [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 2:54 PM To: [EMAIL PROTECTED] Subject: RE: MessageElement You need to use msid.getFirstChild().getNodeValue() to get the value of the TextNode. -Original Message- From: Adam.Leggett [mailto:[

MessageElement

2002-04-10 Thread Adam.Leggett
I need to get the text node from a MessageElement The xml element is: 11 getValue() returns null i.e. /** * Text nodes are not supported. */ public String getValue() { return null; } I cetainly would like to avoid using getAsDOM() etc Is my only option to use toS

Beta rc - Unpacked WAR and axis.attachments.Directory param

2002-03-11 Thread Adam.Leggett
Im now working with the beta rc and have ported my app from alpha3 without too much difficulty. However, since I am deploying to weblogic6.1, I encountered a slight problem with configuration initialisation. If I don’t define the axis.attachments.Directory init param in web.xml for the AxisServl

RE: SSL

2002-03-01 Thread Adam.Leggett
You could just get a 30 day test cert from www.thawte.com . Its what I used with iWS6.0 and SSL with Axis. Cheers Adam -Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:20 AM To: [EMAIL PROTECTED] Subject: Re: SSL We are using an Apac

RE: Axis/BEA WL 6.1 still issue...

2002-03-01 Thread Adam.Leggett
Using Weblogic 6.1 SP2 and Axis alpha 3 we have solved this in a slightly different way. We used our own custom ConfigurationProvider implementation which looks for a System property to specify a resource name, so we can load our config from within the war in weblogic (Maybe the latest build give

Bug in AxisServlet?

2002-02-26 Thread Adam.Leggett
Hi, Currently using axis alpha3. I was trying to get my Handler to trigger the sending back of a 401 to the client (.NET interop problem) Before (Line 490): if ( e instanceof AxisFault ) { AxisFault af = (AxisFault) e ; if ( "Server.Unauthorized".equals( af.getF

RE: property files for services

2002-02-22 Thread Adam.Leggett
Put your properties file on your classpath i.e /WEB-INF/classes/ I have this simple class that I use to load props, tho there are lots of different ways to do this using the JDK: import java.util.Properties; import java.io.*; /** * Utility class with static method(s) to load resources for axis

RE: Where is the WSDD specification.

2002-02-20 Thread Adam.Leggett
Remember, Axis is in alpha, and is still changing. What is shipped will at least get you started, and you can always look at the current code build yourself. In the meantime, here is some additional documentation: http://cvs.apache.org/viewcvs.cgi/~checkout~/xml-axis/java/docs/architecture -guid

RE: Axis over https/SSL?

2002-02-20 Thread Adam.Leggett
Check this guide to SSL with Apache SOAP 2.2, not Axis but should cover most/all u need to know about SOAP with SSL: http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html -Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 10:15

RE: session management?

2002-02-20 Thread Adam.Leggett
See Glens reponse to this post http://marc.theaimsgroup.com/?l=axis-user&m=101413005300555&w=2 -Original Message- From: Oliver Suciu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 8:26 PM To: [EMAIL PROTECTED] Subject: Re: session management? I am with you -- every non-

RE: Complex type in SOAP header

2002-02-19 Thread Adam.Leggett
7;[EMAIL PROTECTED]' Subject: AW: Complex type in SOAP header Just a question: how can I access the envelope (env) in a service? Looking at some example I don't see where the service has access to the envelope. Regards, Werner -Ursprüngliche Nachricht- Von: Adam.Leggett [mailt

RE: Complex type in SOAP header

2002-02-19 Thread Adam.Leggett
E, localName); And the value:     object = header.getValueAsType(new QName(NAMESPACE, localName)); Hope this helps! > -Original Message- > From: Adam.Leggett [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 18, 2002 10:33 AM > To: '[EMAIL PROTE

RE: How to write a web service which updates the servlet session object ?

2002-02-19 Thread Adam.Leggett
You can always use the SOAP Header to maintain state. Check out org.apache.axis.handlers.SimpleSessionHandler Cheers Adam -Original Message- From: Thierry Dupont [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 8:34 PM To: [EMAIL PROTECTED] Subject: How to write a web service

RE: Complex type in SOAP header

2002-02-18 Thread Adam.Leggett
er. I could'nt find a way to serialize/deserialize a JavaBean in the SOAP Header that encapsulated my authentication details. I would prefer not to have to do it in such a low level way if I can. Any ideas appreciated. Thanks Adam -Original Message----- From: Adam.Leggett [mailto:[EMAIL

Complex type in SOAP header

2002-02-18 Thread Adam.Leggett
I need to serialize a JavaBean to send in the SOAP header, and to retrieve it from the MessageContext in a handler. I have no problem when the header element is a xsd dataype. Has anyone tried this yet? Adam Leggett UPCO Direct Line: 0113 20 10 631 Fax: 0113 20 10 666 Th

RE: Off topic .NET question

2002-02-18 Thread Adam.Leggett
; -Original Message----- > From: Adam.Leggett [mailto:[EMAIL PROTECTED]] > Sent: Freitag, 15. Februar 2002 14:46 > To: '[EMAIL PROTECTED]' > Subject: RE: Off topic .NET question > > > Thanks thomas, > > But im slightly confused here. To authenticate to my

RE: Off topic .NET question

2002-02-15 Thread Adam.Leggett
, Thomas > -Original Message- > From: Adam.Leggett [mailto:[EMAIL PROTECTED]] > Sent: Freitag, 15. Februar 2002 13:05 > To: Axis User ([EMAIL PROTECTED]) > Subject: Off topic .NET question > > > Currently, I am working to interop with an MS colleague using > .NET clien

Off topic .NET question

2002-02-15 Thread Adam.Leggett
Currently, I am working to interop with an MS colleague using .NET client with my AXIS service. I have a handler chain that uses LDAP to authenticate/authorize access to my deployed service. Works fine with my AXIS client. Trouble is, we cant seem to be able to get .NET to send the required Author

JAX-RPC PD2 compliance

2002-02-14 Thread Adam.Leggett
Im a confirmed Axis user and regular contributor to Axis-User but I thought it might help to cross post this query. The software house I work for is about to embark on developing a web services solution. I am chief advocate of using Axis, even tho its in Alpha, for the first increment of this pro

RE: Method Not Allowed

2002-02-13 Thread Adam.Leggett
Try this. Put the following in your axis webapp web.xml file: invoker /servlet/* Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 10:03 PM To: [EMAIL PRO

RE: Interop with .NET: Hashtable as parameter

2002-02-11 Thread Adam.Leggett
Thomas, Although I can offer no help with this, im very interested in what you are trying to do here, ie interop with dot net using a Map type. Looking at Sam's lastest interop results http://www.apache.org/~rubys/ApacheClientInterop.html it appears this is still not possible. Is there some sug

RE: Find the List of Services

2002-02-11 Thread Adam.Leggett
You can get a list of deployed services using the AdminClient ie: java org.apache.axis.client.AdminClient -lhttp://:/axis/services/AdminService list -Original Message- From: Lakshmi Prasad [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 4:30 AM To: axis-user Cc: axis-dev Sub

RE: Session state

2002-02-11 Thread Adam.Leggett
Take a look at the source/javadoc for org.apache.axis.handlers.SimpleSessionHandler. Should point you in the right direction for managing sessions on both server and client. Cheers Adam -Original Message- From: Stefan Henke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002

RE: Axis on WebLogic server

2002-02-04 Thread Adam.Leggett
Sorry that should be: Try java org.apache.axis.client.AdminClient -lhttp://:/axis/services/AdminService deploy.wsdd. -Original Message- From: Adam.Leggett [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:30 PM To: '[EMAIL PROTECTED]' Subject: RE: Axis on WebLo

RE: Axis on WebLogic server

2002-02-04 Thread Adam.Leggett
.AdminClient.process(AdminClient.java:261) at org.apache.axis.client.AdminClient.main(AdminClient.java:344) It seems that the code is look for a pre-defined port, e.g. 8080, and I want to know if there is a way to direct it to different socket port. C.C. Liu -Original Message- From:

RE: Axis on WebLogic server

2002-02-04 Thread Adam.Leggett
If you pulled down the alpha3 binary you'll find server-config.wsdd in the axis.jar. Should be in in the \org\apache\axis\server package. -Original Message- From: Liu, C.C [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 5:04 PM To: '[EMAIL PROTECTED]' Subject: Axis on WebLogic

RE: Consuming a .NET service with axis

2002-01-31 Thread Adam.Leggett
I think..though im no .NET expert, to change the .NET WSDL so that not all types are declared complex you need to use the [SOAPRPCMethod] attribute declaration at the top of your C# methods (maybe slightly different in VB.NET). Should at least point you in the right direction on this. Cheers Ad