AW: Security Manager and Axis

2002-11-05 Thread Baernreuther Rainer
Hi Stu, thanks for your response. I actually solved the problem by switching to Tomcat 4.1.12. Now it seems to work perfectly. Kind regards, Rainer > -Ursprüngliche Nachricht- > Von: Stuart Halloway (DevelopMentor) [mailto:stu@;develop.com] > Gesendet: Dienstag, 5. November 2002 18:32 >

Re: please describe the deployment process

2002-11-05 Thread Bahman Kalali
You may want to read theis http://marc.theaimsgroup.com/?=axis&-user&m=102942726001805&w=2 posted by Eric --Bahman - Original Message - From: "objectman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002 3:19 PM Subject: Re: please describe the deployment proc

Re: Revised Deploying EJB as a web service howto (PDF Format)

2002-11-05 Thread Bahman Kalali
I am aslo intersted in that docoment. It might be useful for others as well. Can you please re-posted? Thnaks, --Bahman - Original Message - From: "Joseph Rajkumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002 8:24 PM Subject: Re: Revised Deploying EJB as

Re: Revised Deploying EJB as a web service howto (PDF Format)

2002-11-05 Thread Joseph Rajkumar
Hi I did not receive this pdf file you are talking about and would be interested in receiving a copy. Could you send it to my account or once again to the axis-user mailing list. Thanks Joseph Rajkumar > Hello Axis User, > > I am attaching a revised documentation on how I deployed EJB as a we

Re: please describe the deployment process

2002-11-05 Thread objectman
Calvin Smith wrote: > > Could someone please explain how the deployment process works. > ie if I wanted to deploy some web services that use axis and don't want to > use the adminclient how would I do so? > > basically I'm looking for information as to how the servlet maps a > webservice request

please describe the deployment process

2002-11-05 Thread Calvin Smith
Could someone please explain how the deployment process works. ie if I wanted to deploy some web services that use axis and don't want to use the adminclient how would I do so? basically I'm looking for information as to how the servlet maps a webservice request to an actual webservice. The exa

Re: Axis over JMS session management

2002-11-05 Thread Ray Chun
Hi Suraj, You can add a SimpleSessionHandler to the client/server chains to preserve session context across requests. I verified that it works with the JMS transport. If you have the src, take a peek at test.session.TestSimpleSession. That's the test I used as a starting point. I included some

RE: Revised Deploying EJB as a web service howto (PDF Format)

2002-11-05 Thread Tom Jordahl
John, This would be great to put in the Axis docs. Can you open a bugzilla with an HTML file (or patch to an existing doc file)? -- Tom Jordahl Macromedia Server Development -Original Message- From: John Mammen - (ITD) [mailto:John.Mammen@;nbad.com] Sent: Sunday, November 03, 2002 5:1

problems when deploying the sample applications

2002-11-05 Thread Shriram Kollipara
Hi, I am running into the following error when I am trying to deploy sample application: /app/xml-axis-10/samples/echo> java -classpath "../../lib/xerces.jar:.:../../lib/log4j-1.2.4.jar:../../lib/saaj.jar:../../lib/jaxrpc.jar:../../lib/commons-discovery.jar:../../lib/commons-logging.jar:../../

Re: getRealPath() returns an empty string

2002-11-05 Thread Paul Campbell
if ( req.getPathInfo() != null) { out.println('"The file \"" + r eq.gethPathInfo() + "\""); out.println("Is stored at \"" + req.getPathTranslated() + "\""); } else out.println("PathInfo is null"); see pg 98-99 Java Servlet Programming Hunter & Crawf

RE: handling 302 redirects

2002-11-05 Thread Baldwin Louie
the second url contains a dynamically created session id baldwin -Original Message- From: [EMAIL PROTECTED] [mailto:Kevin.Bedell@;sunlife.com] Sent: Tuesday, November 05, 2002 1:18 PM To: [EMAIL PROTECTED] Subject: Re: handling 302 redirects Can you simply have your application call

Re: handling 302 redirects

2002-11-05 Thread Kevin . Bedell
Can you simply have your application call the second URL? "Baldwin Louie" <[EMAIL PROTECTED]> on 11/05/2002 04:08:07 PM Please respond to [EMAIL PROTECTED] To:<[EMAIL PROTECTED]> cc: (bcc: Kevin Bedell/Systems/USHO/SunLife) Subject:handling 302 redirects Is Axis client set u

handling 302 redirects

2002-11-05 Thread Baldwin Louie
Is Axis client set up to handle redirection(302 http code)? My application makes a web service call to a particular url, which sends back a 302 http code along with the url to redirect to. Does anyone have any experience with this scenario. Should I write a custom client handler to take ca

SOAPConnection - how do you set the soapAction?

2002-11-05 Thread Andy Kriger
>From reading the docs, it looks like there are many ways to send a SOAP message to a server. I thought I'd try to do it with SOAPConnection. However, I cannot figure out how you set the SOAP action doing this. The only objects with a setSOAPActionUri method are Call and MessageContext. You can ge

Re: Axis and JDK 1.2.x

2002-11-05 Thread Sharmin Choksey
Will not work with JDK 1.2 and below - see attachment from archives. hth, sharmin. >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm >list-help: >list-unsubscribe: >list-post:

Axis and JDK 1.2.x

2002-11-05 Thread Jung, Eric (Contractor)
Hi guys, I've been using Axis with JDK 1.3 and 1.4 for quite some time. Are there any known limitations to using it with 1.2.x? Searching the mailing list archives didn't reveal much. TYIA, Eric H. Jung

RE: getRealPath() returns an empty string

2002-11-05 Thread Stuart Halloway \(DevelopMentor\)
Hi Mohammed, How do you know that getRealPath() is returning an empty string, given that your code fragment is ignoring the return value entirely? :-) Stu -- Stuart Halloway : staff.develop.com/halloway DevelopMentor : www

RE: Security Manager and Axis

2002-11-05 Thread Stuart Halloway \(DevelopMentor\)
Hi Rainer, I tried the grant syntax you used and saw the same problem. I also tried various combinations of wildcarding and specifying the JARs individually, to no avail. The debug flag -Djava.security.debug=policy should be helpful here, but it is not. Tomcat's WebappClassLoader has a toString i

RE: Converting a String into a Object from the Parameter XMLType (QName)

2002-11-05 Thread Charlesworth, Chico
I've found a way of converting my string into an object from the QName   import org.apache.axis.message.RPCParam; ... RPCParam rpcparam = new RPCParam(qname, paramValue); Object paramValueDeserialized = rpcparam.getValue();   Not to sure though this is the correct approach or if ther

Deserializer a String into a Object from the Parameter XMLType

2002-11-05 Thread Charlesworth, Chico
  Hi,   I want to convert my string value into a object depending on the parameter type. I've tried the following but all I get is a nullpointer exception when invoking the makevalue method on the Deserializer instance.   import org.apache.axis.encoding.ser.SimpleDeserializer; ... QN

getRealPath() returns an empty string

2002-11-05 Thread Akacem Mohammed
Hallo , In a methode in the class MyServiceSoapBindingImpl I try to get the realpath so I can read from a config file some information , but i get an empty string for realpath. below is a code snippet. ServletEndpointContextImpl endpoint= new ServletEndpointContextImpl(); Servl

Deserializer /Serializer examples

2002-11-05 Thread jimmy coyne
Does any body know where to find a good custom Deserializer /Serializer examples or tutorials. thanks Jimmy

Hashtable Mapping

2002-11-05 Thread Lajos Moczar
Hi - I noticed someone posted a question last month about trying to use Axis to access a legacy SOAP server that takes a Hashtable parameter. I'm having the same problem, and there don't seem to be any examples of Hashtable parameters in the samples. My old SOAP call set a parameter like this:

Scoped Services

2002-11-05 Thread Ben Souther
Can anyone point me to some documentation for scoping web services? The user's guide shows us how to set the scope in the wsdd but it doesn't mention what the client needs to do. Is the Axis client cookie enabled by default? I didn't notice anything in the examples that ship with Axis. Maybe I

RE: RPCDispatcher

2002-11-05 Thread Peter Haensgen
Hi, yes, you can implement your own provider. I have done it this way (my provider is called "enfinity:Pipeline"): * register a provider factory: org.apache.axis.deployment.wsdd.WSDDProvider.registerProvider(new QName(" http://www.intershop.com/enfinity

RPCDispatcher

2002-11-05 Thread BOURLON Agnès
Hello,   I would like to know if it is possible to switch the Axis RPCProvider class into a custom extended class ? I found in server-config.wsdd a tag :   and replace like that :     But it doesn't have any effect Is it possible?   Thanks, Agnes

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Francois Swiegers
I don't know if you NEED to, but I did it and it seems to work. What I did was to add the /webapps part of Axis to a war file, and I added it as a web component to the sample application. When I only copied the /webapps portion to the public_html folder, I got an exception saying that the context c

RE: Empty arrays not serialized properly

2002-11-05 Thread ajbanck
Following mail is from the soapbuilders list. I tested 1.1 beta, but it isn't fixed in that version. If you don't get a reply today, i'll ask again with my msdn account. ArentJan - From: "Alex DeJarnatt" <[EMAIL PROTECTED]> Date: Fri Aug 30, 2002 5:54 pm Subject: RE: [soa

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Russell Brown
Francois, I think I must have missed something really important here: are you saying that I need to deploy Axis as the web component of the J2EE application in deploytool ? I only need the Axis.jar to deploy as a war ? Many thanks Russell -Original Message- From: Francois Swiegers [mai

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Francois Swiegers
Hi Russel I'm also new to Axis, so I'm not sure whether this is going to help you. I've taken the "converter" sample provided with the J2EE 1.3.1 tutorial and put a web service face on it. After installing the J2EE RI, I followed the steps in the tutorial and deployed Axis as a war with it using t

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Russell Brown
Thanks again for your help, I have splashed out on the Axis book. In the meantime I have deployed the EJB's client as a webservice instead of deploying the EJB and this works. I am sure when we come to the proper development on this project ( so far I'm sort of in proof of concept ) that we wil

Axis Security Permissions

2002-11-05 Thread Alen Ribic
Hi to All   I would just like to know where I could find some documentation regarding the Axis permission requirements.I'm having problems running Axis v1.0 when bringing a Security policy into the game.   Regards,Alen RibicApplication Developer+27 21 701 4776 (w)+27 21 701 4774 (f)ZA