Deployment using custom WSDL

2004-03-04 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message-styled web service and I have developed a custom WSDL for my web service. I was able to deploy the web service using the custom WSDL. But when I try to access the WSDL using "?wsdl", my logs say that it is unable to find the WSDL. Here is how my dep

Re: can two java classes be deployed as one web service?

2004-03-04 Thread Lanto Randriamiharisoa
Maciek Zywno wrote: thanks , this obviously is a kind of a solution I was curious if having two legacy classess I can deploy them in the same service without writing one new wrapper class regards I'm not sure you can do this thing with Axis. Imagine you have two classes, later you'll want to

AdminClient problem, could not fetch the raised exception

2004-03-04 Thread Jacques-Albert De Blasio
Dear all, I eventually managed to get rid of the "(301) Moved Permanently" error I emailed you about yesterday. In fact, I had to do a clean install of Tomcat. I have no idea what provoked this problem, but now it is behind me. However, I face a new one. As I already told you, I use the AdminCl

RE: installing optional jars

2004-03-04 Thread Senthil_KM
I think you can place these optional jars in the axis zone WEB-INF/lib folder! Rgds Senthil -Original Message- From: Lee, Insoo [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 9:23 PM To: '[EMAIL PROTECTED]' Subject: installing optional jars Hello, A newbie Axis question -

RE: Document-style web services

2004-03-04 Thread Parley, Thunder Jon
Hi Vivek, You feel as if you need this URL: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/WsdlFile Don't waste all your effort having coded your own WSDL just to have Axis not show it. Of course, you've said nothing about having actually developed your service with Axis. You ne

Resource Rumers

2004-03-04 Thread David Knox
Hi -- I've been hearing rumors that IBM has pulled all but one Axis developer from the project. First I'm curious about the truth of the rumor; and if its true what is the team's plans about future development of Axis? -- dave

RE: ClassNotFoundException when using my own logger

2004-03-04 Thread Jacob Kjome
At 04:03 PM 3/4/2004 -0700, you wrote: I put all the Log classes in WEB-INF/classes and I also have my jar in WEB-INF/lib and I also tried to put this jar in $CATALINA_HOME/common/lib. I am still getting the same error. Has anybody gotten their own logger classes which use java.util.logging to

RE: Document-style web services

2004-03-04 Thread Hari Lakshmanan
Can you verify your deploy.wsdd contains these attributes? style="document" and use="literal" This should preserve the wsdl on the fly (as document based) HTH __Hari -Original Message- From: Vivek Nagulapati [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 5:29 PM To: [EMAIL PRO

Document-style web services

2004-03-04 Thread Vivek Nagulapati
Hello All, I am trying to develop a document-style web service. I hand-coded the WSDL for this web service as Axis generated RPC-styled WSDL. How can one expose this web service to clients like .NET to create client-side stubs? The WSDL generated on-the-fly when clients access this document-st

RE: ClassNotFoundException when using my own logger

2004-03-04 Thread Oleg Lebedev
Title: Message I put all the Log classes in WEB-INF/classes and I also have my jar in WEB-INF/lib and I also tried to put this jar in $CATALINA_HOME/common/lib. I am still getting the same error.   Has anybody gotten their own logger classes which use java.util.logging to work with Axis?   T

JBoss-net and Axis version

2004-03-04 Thread Miller, Janet
I just downloaded Jboss 3.2.3 and it supposedly comes with Axis built in. Does anyone know which version of Axis it comes with? Also, do I need to do anything else as far as installation of Axis? I downloaded the Axis zip file separately so that I could get the Axis documentation, but I don't whi

Actor/Role question

2004-03-04 Thread S K
Hi! I have been using handlers to do header manipulation, but would like to do some header manipulation using the right approach of "actor" or "role". Does Axis 1.1 support that? How to specify "actor" or "role" in the SOAP header and how to actually make it call your own class so that it can

Invalid Element

2004-03-04 Thread Hari Lakshmanan
Title: Message Hi, I have deployed a service which follows document based literal encoding. Now I have a standalone client and when I use the standalone client, I get the following stack trace.   = AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userExcepti

Re: Use Specific XML parser

2004-03-04 Thread Robert Koberg
Parley, Thunder Jon wrote: Hi List, How can I specify which XML parser to use for my Axis client. The application is commandline run and I do not want to change the JVM default parser (by changing jaxp.properties in $JAVA_HOME/jre/lib which does not exist in my JRE). Is there a specific system pro

RE: Use Specific XML parser

2004-03-04 Thread Hari Lakshmanan
With JDK1.4+, you need to use Endorsed Standards Override Mechanism. Please refer this link http://java.sun.com/j2se/1.4.2/docs/guide/standards/ -Original Message- From: Parley, Thunder Jon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 1:35 PM To: [EMAIL PROTECTED] Subject: Use

RE: EJB Authentication

2004-03-04 Thread Hari Lakshmanan
Title: Message Couple of things 1. RegisterTypeMapping is commented out in your client code. Not sure uncommenting will solve the problem 2. Most of the time this sort of error occurs due to namespace mismatch.   __Hari -Original Message-From: Bobba, Ramesh [mailto:[EMAIL P

Use Specific XML parser

2004-03-04 Thread Parley, Thunder Jon
Hi List, How can I specify which XML parser to use for my Axis client. The application is commandline run and I do not want to change the JVM default parser (by changing jaxp.properties in $JAVA_HOME/jre/lib which does not exist in my JRE). Is there a specific system property I can set before I

RE: EJB Authentication

2004-03-04 Thread Bobba, Ramesh
Title: EJB Authentication I modified my client to use the static apis and it seems to work. Can anyone tell me what wrong with my dynamic calls?   The code that worked:     OAMPServiceManagerService sms = new OAMPServiceManagerServiceLocator();    OAMPServiceManager smgr =

RE: AXIS as standalone SOAP parser?

2004-03-04 Thread Kamrul Islam
Thanks Søren for your help. I believe it will serve my purpose. ---KamrulSøren_Neigqaard <[EMAIL PROTECTED]> wrote: The client is easy :) You simply use AXIS to generate the client stubs, and then just call the methods on the generated classes. I use the following command in one of my projects (i

How to initialize a service at startup?

2004-03-04 Thread "Morin, Marc-André"
Hi, I'm wondering how to initialize a web service with Axis-java without having to call any service's method... For now, to do so, I implemented a servlet which is loaded at the startup of my container (tomcat), with the tag added in the web.xml file... All works fine, but unfornately, the init

RE: EJB Authentication

2004-03-04 Thread Bobba, Ramesh
Title: EJB Authentication I use the default BeanDeserializer. I am attaching the Client code and also the generated code for this bean.   Thanks,   Ramesh. -Original Message-From: Hari Lakshmanan [mailto:[EMAIL PROTECTED]Sent: Thursday, March 04, 2004 11:26 AMTo: [EMAIL PROTEC

RE: EJB Authentication

2004-03-04 Thread Hari Lakshmanan
can you post your client code and deserializer code? -Original Message- From: Bobba, Ramesh [mailto:[EMAIL PROTECTED] Sent: Thu 3/4/2004 11:01 AM To: '[EMAIL PROTECTED]' Cc: Subject: RE: EJB Authentication H

RE: EJB Authentication

2004-03-04 Thread Bobba, Ramesh
Title: EJB Authentication Hi,   I got this working (kinda) in the sense that the server works fine. It executes the ejb methods and returns a soap message (according to what I see in the logs), but on the client side I get an AxisFault saying: Dose anyone know why? I have all the generated c

problems of a bagginer - errors: exception

2004-03-04 Thread richard
hi there, i'm new in axis and in this maillinglist i started with axis this week and i start reading the instalation pdf i downloaded from ws.apache.org/axis i installed j2sdk, tomcat 5.0, and axis 1.1 until step 4: validate the instalation was everything allright, i validate the happyaxis.j

RE: EJB Authentication

2004-03-04 Thread Keith Hatton
Hi Ramesh, I think you may need to add a section to the web.xml. The Weblogic console is quite good for playing about with things like this (unfortunately I'm away from the office at the moment). I also find Sun's DTD for web.xml a good reference for things like this. Basically, think of th

Re: ClassNotFoundException when using my own logger

2004-03-04 Thread Nicholas Remy
Is your org.waterford.util.logging.wLog class a member of a package?  If so, remember that you have to place the .class file in an appropriately-named folder UNDER WEB-INF/classes. Just a thought. Nicholas Remy "Oleg Lebedev" <[EMAIL PROTECTED]> 03/03/2004 03:01 PM Please respond to

RE: InvocationTargetException

2004-03-04 Thread Bobba, Ramesh
Hi, I figured out the problem on this one. The problem was not with Axis but actually with the Security of EJBs. It was not the most obvious error reporting. I had to print the stack trace explicitly to figure this out. Thanks, Ramesh. -Original Message- From: [EMAIL PROTECTED] [mailto:

RE: EJB Authentication

2004-03-04 Thread Bobba, Ramesh
Title: EJB Authentication Hi Keith,   I am using Weblogic right now (we also plan to support websphere). I am a bit confused about what you mean by - replicating EJB security constraints on the Axis servlet. Are you talking about adding the somerole elements?   Thanks,   Ramesh. -Or

installing optional jars

2004-03-04 Thread Lee, Insoo
Hello, A newbie Axis question - we just installed Axis 1.1 on Tomcat 4.1.24 with JRE 1.3.1_06 We need to do some xml encryption/signing work, so we need to place xmlsec.jar to common/lib. In our development work, this works out fine, but in production mode, we are sharing a tomcat instance with

SOAPMonitor cannot connect to server

2004-03-04 Thread Matthew Sgarlata
I finally got the SOAPMonitor up-and-running today, but the applet complains, "The SOAP Monitor is unable to communicate with the server." I am guessing this means I specified the wrong SOAPMonitorPort in web.xml. What port should I use? I tried the default 5001 and the port on which my web serve

Re: Invoking a ws from within of another ws: ConnectionException

2004-03-04 Thread ian_d_stewart
I encounter this exception when attempting to connect to a URL where there is no service running (e.g., Tomcat is running on port 8080 and I try to connect to http://localhost, which implicitly connects to port 80, or I try to connect to http://localhost:9080). The first thing I would do is check

Invoking a ws from within of another ws: ConnectionException

2004-03-04 Thread Gross
Hi all, I have a problem with invoking a web service from within another web service. The both services deployed in Axis (1.1) on the same machine. I use Tomcat 4.1.27 The scenario is very simple: a client invokes a web service on Axis, this web service needs to invoke another web service to del

Re: can two java classes be deployed as one web service?

2004-03-04 Thread Maciek Zywno
Pathuru, Kiran wrote: I am not really sure whether it is possible as I not an AXIS expert. But you can acheive the same using some thing like this: Write your two classes and write a third class with all the methods from both classes, and in method body call the other class. public class java1 {

Axis in jboss-net

2004-03-04 Thread Alexey Yudichev
I am using Axis 1.1 (MANIFEST.MF says Implementation-Version: 1.1 1021 June 13 2003) bundled with JBoss 3.2.2 and 3.2.3 as jboss-net service for exposing my steteless EJB's methods via SOAP. When jboss starts, the service(s) work perfectly. However after some time client starts getting "No SOA

RE: can two java classes be deployed as one web service?

2004-03-04 Thread Pathuru, Kiran
I am not really sure whether it is possible as I not an AXIS expert. But you can acheive the same using some thing like this: Write your two classes and write a third class with all the methods from both classes, and in method body call the other class. public class java1 { method1() {

can two java classes be deployed as one web service?

2004-03-04 Thread Maciek Zywno
hello I tried to deploy two classes as one web service i.e. I would like to have one web service (at one URL) offer many operations. When I tried to put two classes in one service element in wsdd file I still get two wsdl's ? Is there any solution to having one web service based on more that o

RE: EJB Authentication

2004-03-04 Thread Keith Hatton
Hi Ramesh, What app server are you using now? I've had authentication working using Axis on Weblogic and JBoss in the past, though I do remember it was more complicated than I expected. The call.setUsername() and call.setPassword() approach looks fine from what I remember, but maybe that inf

RE: wsdl2java and namespace

2004-03-04 Thread Pathuru, Kiran
I am also looking for the answer for a long time but haven't found yet. Though my application still uses ns1 as namespace instead of what I want it works fine. But any help on how to change this will be great.   Thanks kiran pathuru -Original Message-From: Wei Hsu [mailto:[EMA

Re: Can I make a multiple args ws call between PHP Pear and Axis?

2004-03-04 Thread Kees van Dieren
Making calls from a php soap client, could just be weird because php is week typed. I have some experience with php soap implementation nusoap, it's not easy to make things work. What is the error message you got? At first, try to make things work with a simple method call. For example, if you ha

RE: InvocationTargetException

2004-03-04 Thread Ext-Zoltan.Schreter
Just another hunch: maybe you are using a BeanSerializer/Deserializer, but your Complex Type is not a bean - for example it doesn't have getters and setters for fields, etc. > -Original Message- > From: ext Bobba, Ramesh [mailto:[EMAIL PROTECTED] > Sent: 04 March, 2004 00:07 > To: Axis-

AdminClient problem, getting "Moved Permanently" error

2004-03-04 Thread Jacques-Albert De Blasio
Hi all, After having searched for a long time on the internet, and after having tried everything I thought possible to try, you are the only help left I can turn to. I hope you will be able to help me, as I am getting quite desperate... I am using Axis 1.1, my server is Tomcat 4.1.29. The vari