RE: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Ingrid Falk
> "ryan" == ryan cuprak <[EMAIL PROTECTED]> writes: ryan> Thanks, but I've wrapped it in my own webapp. I tried this: ryan> http://149.98.242.166:8080/GMPServer/services/GMP ryan> which returned the page: GMP Hi there, this is an AXIS ryan> service! Perhaps there will be a f

wsdl4j compatibility

2003-02-19 Thread Ben Wyckoff
Hello, I am a relatively new Axis user, and I have been trying to both create and consume web services. I found an interesting article at on Dynamic Discovery and Invocation of Web Services which uses

Re: (GETTING CLOSER- bug?) Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 13:18 Subject: (GETTING CLOSER- bug?) Re: Determining if a service is deployed (wrapped in my own webapp) > Okay, I removed the server-config.wsdd from my project so it wouldn't > au

(GETTING CLOSER- bug?) Re: Determining if a service is deployed (wrapped inmy own webapp)

2003-02-19 Thread ryan . cuprak
Okay, I removed the server-config.wsdd from my project so it wouldn't auto-deploy on startup. I then deployed it manually from the commandline and it worked perfected. The contents of the 'service' tag from the config file were copied directly into the deploy.wsdd. So, if I try to have it deployed

Axis deployed services.

2003-02-19 Thread Praveen Peddi
If I deploy all my soap services using axis along with weblogic 7.0, does it generate any file which I can use in other instances of weblogic servers.   I used to do this for Apache SOAP. When I deployed soap services using Apache SOAP, it used to generate DeployedServices.ds file which I us

RE: calling gSoap server from Axis client - "method not implemented" error

2003-02-19 Thread Joe Johannsen
What I meant is I'm calling a web service called magic on my test server. The method name is magic ... this is one of the gSoap examples; here's the gSoap sample client C++ code snippet: const char magicserver[] = "http://192.168.0.2:/"; . . .   matrix *A = soap_new_matrix(&soap, -1);   r = r

(solved) Re: 302 fault?

2003-02-19 Thread ryan . cuprak
I figured it out - had to add 'service' to the url that I supplied =) Ryan Cuprak [EMAIL PROTECTED] Office: (203)-786-5682 Cell: (203)-376-8789 Ryan D. Cuprak/507107/EKC@Kodak 02/19/2003 03:59 PM Please respond to axis-user                 To:        [EMAIL PROTECTED]         cc:        

302 fault?

2003-02-19 Thread ryan . cuprak
 Why would a fault return a http 302 error? C:\Documents and Settings\L507107\My Documents\Development\GMPServer\lib>java -cp axis.jar;jaxrpc.jar;saaj.jar;log4j-1.2.4.jar;commons-logging.jar;com mons-discovery.jar org.apache.axis.client.AdminClient -l http://127.0.0.1:8080/GMPServer list - Excep

Getting DIME attachment from MS SOAP web service

2003-02-19 Thread Nguyen Anh-PT1427
Help, I'm in a rush to get this working. I'm trying to get a DIME attachment from a web server (using MS SOAP Toolkit 3.0). My code is something like: String endpoint = "http://okmg01:8080/PtkLCDRemoteInterface/TestWS.WSDL";; Service service = new Se

RE: calling gSoap server from Axis client - "method not implemented" error

2003-02-19 Thread Mike Burati
  Your email description says you're calling a "server" named magic, but in the code you set the service operation name (eg, RPC method name) to "magic".  Are you sure that operation shouldn't be something like:      call.setOperationName(new QName("http://soapinterop.org/", "echoSt

Re: Attempting to configure AXIS for the first time

2003-02-19 Thread chenp

calling gSoap server from Axis client - "method not implemented" error

2003-02-19 Thread Joe Johannsen
I've looked thru archives and see quite a few questions about compatibility with gSoap and not too many answers to the questions. I am using Axis 1.1 RC 1 and gSoap 2.2.2, trying to call the example gSoap server named "magic" from vanilla java code (below). I have verified the server responds usi

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread ryan . cuprak
 I am using axis 1-1 Release candidate 1 - downloaded it yesterday from the Axis website. If I type in a service that obviously isn't there (instead of GMP), I receive a 404 error page.  The only weird thing I am doing is deploying my webservice with 'server-config.wsdd' so it is immediately avai

Error testing installation

2003-02-19 Thread Thomason, Michael
I have installed everything and the happy axis page works correctly. I'm able to view the list of installed services correctly and the wsdl option for each. But when I try to test the local endpoint by issuing the url http://localhost:8080/axis/EchoHeaders.jws?method=list I get a page cannot be di

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 12:13 Subject: Re: Determining if a service is deployed (wrapped in my own webapp) > Thanks, > I tried http://149.98.242.166:8080/GMPServer/services/GMP?WSDL > but recieved a http

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread ryan . cuprak
Thanks,  I tried http://149.98.242.166:8080/GMPServer/services/GMP?WSDL  but recieved a http 404 code. When I try to pass parameters to it:  http://149.98.242.166:8080/GMPServer/services/GMP?method=authenticate¶m= rcuprak¶m=alpha  I get the same fault in the webbrowser that I am seeing when I try

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 10:34 Subject: RE: Determining if a service is deployed (wrapped in my own webapp) > Thanks, > but I've wrapped it in my own webapp. I tried this: > http://149.98.242.166:8080/GMPS

RE: HTTP status 404 in .net

2003-02-19 Thread Drooker, Matthew
Take a look @ the proxy class .NET created for youIt strips off the port if you are running on anything other then 80. For example- http://localhost:8080/axis/services/wsJMSHarness Will be created like http://localhost/axis/services/wsJMSHarness I just add the 8080 back to th

Axis and Servlet Runners

2003-02-19 Thread Anecito, Anthony (HQP)
Title: Axis and Servlet Runners Dear Axis Developers, Should Axis run in any process that can run servlets (i.e. servlet runners)? If so, what is the lowest version of servlet API should be used? Thanks for any info. Tony

Re: AW: Global Request Handler

2003-02-19 Thread K P
No luck yet. Is there anything else I need to do to configure these global handlers? Has anyone had this problem? Thanks, KP From: "Oliver Adler" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: AW: Global Request Handler Date: Wed, 19 Feb 2003 16:40:30 +0100 Hi,

Re: tcpmon problemagain

2003-02-19 Thread Jue \(Jacky\) Shu
Title: Message oh, yeah. it works now. thx very much, apostolopoulos, i really appreciate it. - Original Message - From: Apostolopoulos Paris To: [EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 1:19 PM Subject: RE: tcpmon problemagain The tcpmon will

AW: security - AdminService

2003-02-19 Thread Mark Uhlemann
Hi, RC1 means Release Candidate 1, which you can get at the Axis Homepage. In the docs folder is a file called security.html. greetz Mark -Ursprüngliche Nachricht- Von: Gianluca Del buono [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 19. Februar 2003 19:35 An: [EMAIL PROTECTED] Betreff:

RE: HTTP status 404 in .net

2003-02-19 Thread Wagner,Harry
Hi James, > Any idea when this problem started? Should this be filed > as a bug report? Sorry. It's been like this since I started using it, but I'm a relatively new Axis user. Take a look at the mod-jk option. I find it very useful since it doesn't require exposing any additional ports to

RE: Axis 1.1 RC1 and SSL issue : NullPointerException on HTTPSender.getSocket

2003-02-19 Thread Stephane Lecercle
Hello,   I have installed the Axis 1.1 RC1 release, and I have still the same problem, about SSL and Axis. Here is the sample that I am using :   import java.security.Security;import javax.xml.namespace.QName;import javax.xml.rpc.Call;import org.apache.axis.client.Service;import org.apache

R: security - AdminService

2003-02-19 Thread Gianluca Del buono
Hi Steve , thanks for your answer... sorry for the silly question, but >>RC1 has a document on security what do you mean by RC1 and where can I find this document ? thanks -Messaggio originale- Da: Steve Loughran [mailto:[EMAIL PROTECTED]] Inviato: mercoledì 19 febbraio 2003 18.36 A: [

RE: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread ryan . cuprak
Thanks,  but I've wrapped it in my own webapp. I tried this:  http://149.98.242.166:8080/GMPServer/services/GMP  which returned the page: GMP Hi there, this is an AXIS service! Perhaps there will be a form for invoking the service here... I assume this means I have sucessfully deployed the serv

RE: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Apostolopoulos Paris
Title: Message Assuming that you use tomcat on localhost on port 8080, if you go at http://localhost:8080/axis/index.html and then press the View the list ot deploye Web services ,http://localhost:8080/axis/index.html you will be able to see the deployed services and the equivalent WSDL of

Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread ryan . cuprak
Hello,  I am trying to determine if my webservice is being 'deployed'. I have wrapped Axis into my own webapp by:  - copying the jars into WEB-INF/lib  - copying the contents of Axis Webapp's web.xml into my web.xml  Then I wrote a service (now just one java class) which gets compiled, jared, and

RE: tcpmon problemagain

2003-02-19 Thread Apostolopoulos Paris
Title: Message The tcpmon will listen to a specific port and then redirect the request to the port that the tomcat-axis is listening! So configure your tcpmon to listen eg.on port 8081 and specify that you want the requests to be redirected on 8080! At same time..you should change your clie

Re: HTTP status 404 in .net

2003-02-19 Thread James Black
"Wagner,Harry" wrote: > I had the same problem, which I have since resolved. The problem is that > the wsdl does not include the port in the url of the service. You can > either add the /axis entry to your mod_jk configuration on tomcat (so that > tomcat passes these entries to the right port),

RE: HTTP status 404 in .net

2003-02-19 Thread Wagner,Harry
Hi James, I had the same problem, which I have since resolved. The problem is that the wsdl does not include the port in the url of the service. You can either add the /axis entry to your mod_jk configuration on tomcat (so that tomcat passes these entries to the right port), or add the port to th

Re: soapmonitor service

2003-02-19 Thread Steve Loughran
yes, read security.html - Original Message - From: "Cory Wilkerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 07:44 Subject: soapmonitor service Hrmmm. I don't particularly care for how myhost.com/services shows all the available services. Is there

Re: security - AdminService

2003-02-19 Thread Steve Loughran
RC1 has a document on security...it should answer your questions. AdminService only accepts calls from the local host, and it already has a default password..you can change it if you want - Original Message - From: "Gianluca Del buono" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wedn

re: HTTP status 404 in .net

2003-02-19 Thread James Black
Hello, I have some java clients for my webservices (unit tests) and these work fine. All the tests pass. The .NET tests fail, most of them with 'HTTP status 404: Not Found.' I am using Tomcat 4.1.18, and the newest release for axis, and jdk1.4.1 for Solaris, on the server side. Any ideas

RE: Attempting to configure AXIS for the first time

2003-02-19 Thread Nirmal Mukhi
Return Receipt Your RE: Attempting to configure AXIS for the first time document :

*** Axis and Handler Chains ***

2003-02-19 Thread Josh Kropf
Is it possible to configure a handler chain in the wsdd file to only run for a specified method? I want to have a hnadler chain that parses attachments in a message but it only needs to run for say the "getFile" method of the service. -- Josh Kropf Syste

RE: Attempting to configure AXIS for the first time

2003-02-19 Thread Hainer Neil
I did it. Now I get the following two lines after restarting tomcat: Server is running Current load = 1 Is this what should be displayed? Thanks, Neil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Guillaume Sauthier Sent: Wednesday, February 19, 200

beanMapping

2003-02-19 Thread Jue \(Jacky\) Shu
hi all,   i followed the examples to deploy ws. here is an example of wsdd. but i don't know where the "SalaryService" (in red) comes from? i read the reference guide, but no detailed info provided. thx a lot.                languageSpecificType="java:SalaryBean"/> 

WSDL2Java xsd:choice bug?

2003-02-19 Thread Victor Kazuo Tatai
Hello all, I'm using WSDL2Java to generate Java to the following WSDL: (...) (...) However, the Java code generated in class X has two Z attributes with the same name, and two identical pairs of getter/setter methods, what causes the co

tcpmon problemagain

2003-02-19 Thread Jue \(Jacky\) Shu
hi again. - Original Message - From: Jue (Jacky) Shu To: [EMAIL PROTECTED] Sent: Tuesday, February 18, 2003 5:58 PM Subject: tcpmon problem hi all   i got a problem to use tcpmon. each time i wat to start tcpmon, i got the following output on the tcpm

Re: Attempting to configure AXIS for the first time

2003-02-19 Thread Hainer Neil
James, Thanks for the reply. Actually I did do this. It was step 1 "creating the webapps" of the Installation instructions. Regards, Neil -Original Message- From: James Black [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 11:33 AM To: [EMAIL PROTECTED] Subject: Re: Atte

Re: Attempting to configure AXIS for the first time

2003-02-19 Thread Guillaume Sauthier
Response for the second question : to run "Administer AXIS", you have to set up the servlet mapping in AXIS : open axis/WEB-INF/web.xml in your tomcat's webapps directory and uncomment some lines ! the ones with servlet-name element corresponing to AdminServlet (or AdminAxis ?) After, you have to

Attempting to configure AXIS for the first time

2003-02-19 Thread Nirmal Mukhi
Return Receipt Your Attempting to configure AXIS for the first time document :

Re: Attempting to configure AXIS for the first time

2003-02-19 Thread James Black
Hainer Neil wrote: > 1. I am configuring AXIS 1.0 for the first time. I am using tomcat 4.1.18. > I noticed the following when I ran happyaxis.jsp: > > Note: On Tomcat 4.x, you may need to put libraries that contain java.* or > javax.* packages into CATALINA_HOME/commons/lib > > Exactly what sho

RE: WSDL2Java exception with complex .NET WSDL

2003-02-19 Thread Richards, Mark
FYI, If others see this problem. It appears to be a crimson issue. When I used Xerces it worked fine. -Original Message- From: Richards, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 4:33 PM To: [EMAIL PROTECTED] Subject: WSDL2Java exception with complex .NET WSDL

Attempting to configure AXIS for the first time

2003-02-19 Thread chenp

DEserialization help needed

2003-02-19 Thread Gorbunov, Igor {PBSG}
Hello, I am trying to use Axis just to serialize (and deserialize) my arbitrary java beans, that is, I don't really use the SOAP invocation side of Axis right now. I don't have any problems with serialization, as I enabled AutoTyping: (i.e. mapping.setDoAutoTypes(true)). The serializationContext.

Attempting to configure AXIS for the first time

2003-02-19 Thread Hainer Neil
Hi, 1. I am configuring AXIS 1.0 for the first time. I am using tomcat 4.1.18. I noticed the following when I ran happyaxis.jsp: Note: On Tomcat 4.x, you may need to put libraries that contain java.* or javax.* packages into CATALINA_HOME/commons/lib Exactly what should I place in CATALINA_

FW: soapmonitor service

2003-02-19 Thread Cory Wilkerson
Suppose I could ditch the servlet mapping...but is this the default behavior of the AxisServlet? -Original Message- From: Cory Wilkerson Sent: Wednesday, February 19, 2003 9:45 AM To: [EMAIL PROTECTED] Subject: soapmonitor service Hrmmm. I don't particularly care for how myhost.com/se

soapmonitor service

2003-02-19 Thread Cory Wilkerson
Hrmmm. I don't particularly care for how myhost.com/services shows all the available services. Is there a way to turn this feature off? Cory

QUARANTINED MESSAGE - PLEASE READ - AUTOMATED RESPONSE

2003-02-19 Thread postmaster
The antivirus system on mail.domainbank.com has detected a virus infected email message. From: "Oliver Adler" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: AW: Global Request Handler The message has been remove

AW: Global Request Handler

2003-02-19 Thread Oliver Adler
Hi, try to define the type with the full package name like this: Regards Oliver Oliver Adler, Senior Consultant SYRACOM Systems AG - "The IT-Architects" Otto-von-Guericke-Ring 15 D-65205 Wiesbaden Tel +49 6122-9

RE: Pass null value for parameter? Optional params?

2003-02-19 Thread Roy Wood
Sounds pretty reasonable. I'll give it a try. Thanks for the suggestion. -Roy >Have you considered using the "Value Object" pattern. Specifically, >you can create a bean which holds the update values and also a set >of booleans indicating which fields to update: > > { >long ID; >bool

RE: java.lang.reflect.InvocationTargetException when calling webs ervice from Excel.

2003-02-19 Thread Ricardo Coutinho
Title: RE: java.lang.reflect.InvocationTargetException when calling webs ervice from Excel. Nothing specific to Axis. They were Jboss jars. Now that I put them in the lib directory it works Ricardo -Original Message- From: Laurent Perez [mailto:[EMAIL PROTECTED]] Sent: 19 February

Re: using ApacheSOAP or Axis

2003-02-19 Thread Brian Ewins
Currently you have to use /both/ if you talk to a mix of Schema 2001 and Schema 1999 services - see http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15581 However, if you only need 2001, Axis is better. Switch. Oliver Hauger wrote: Hi, I've sourcecode written for ApacheSOAP and now I am thin

RE: Axis 1.0 and Websphere

2003-02-19 Thread Mike Burati
Sounds like a version issue wrt wsdl4j.jar? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 8:01 AM To: [EMAIL PROTECTED] Subject: Axis 1.0 and Websphere I was running a server project built with Websphere Application Studio Devl

Re: java.lang.reflect.InvocationTargetException when calling webservice from Excel.

2003-02-19 Thread Laurent Perez
Thanks for your reply. That was it exactly, I was missing some jars!!! hi what jars were you missing ? thanks

Problems with Deserialization

2003-02-19 Thread Oliver Hauger
Hi, I try to deserialize the SOAPMessage below which I get as a response to my RPC-Request. But I do not know how to set the return-type for my call an how to deserialize this response. I use a DII-Client because the WSDL2Java-Tool could not manage the WSDL file. and are long-type. Maybe somebod

RE: java.lang.reflect.InvocationTargetException when calling webservice from Excel.

2003-02-19 Thread Ricardo Coutinho
Title: java.lang.reflect.InvocationTargetException when calling webservice from Excel. Hi Krishnakumar,   Thanks for your reply. That was it exactly, I was missing some jars!!! What is dislike like is that the message given had nothing to do with the actual error. I am not sure if this is an A

Axis 1.0 and Websphere

2003-02-19 Thread Harry . Kobetitsch
I was running a server project built with Websphere Application Studio Devloper 5.0.(which contains Apache SOAP by default). I got rid of the Apache Soap related jars and added Apache Axis 1.0 jars. We also did this with WASD 4.0 with no trouble. Using the WASD 5.0 test server I get the followi

Axis and SSL issue : NullPointerException on HTTPSender.getSocket

2003-02-19 Thread Stephane Lecercle
Hello,   I am trying to make a client invoke a web service with Axis/Tomcat. The client initializes the JSSE with the following settings :   System.setProperty("javax.net.ssl.trustStore",_storeLocation);System.setProperty("javax.net.ssl.trustStorePassword",_storePassword); System.setProperty

RE: using ApacheSOAP or Axis

2003-02-19 Thread Anne Thomas Manes
It's always possible that there might be another release of bug fixes, but no new work is being done to the Apache SOAP project. I'd recommend that you switch to Axis. Anne > -Original Message- > From: Oliver Hauger [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 19, 2003 6:42 AM >

Re: java.lang.reflect.InvocationTargetException when calling webservicefrom Excel.

2003-02-19 Thread Laurent Perez
I have the exact same problem, using RC1.1, TC4.1.18, JDK1.4 on Linux box, client being a Visual Basic app. The service is working fine with Axis 1.0 but throws a java.lang.reflect.InvocationTargetException when it's being called. The worst thing is that catalina.out logfile doesnt mention anyt

using ApacheSOAP or Axis

2003-02-19 Thread Oliver Hauger
Hi, I've sourcecode written for ApacheSOAP and now I am thinking of using Axis. Is it right that there will be no more releases from ApacheSOAP in future? Thanx, oli

RE: Pass null value for parameter? Optional params?

2003-02-19 Thread Yates, Danny (ANTS)
Hi Roy, Have you considered using the "Value Object" pattern. Specifically, you can create a bean which holds the update values and also a set of booleans indicating which fields to update: { long ID; boolean updateID; String name; boolean updateName; ... } You could al

security - AdminService

2003-02-19 Thread Gianluca Del buono
Hi, How safe is to go into a production environment leaving the AdminService enabled ? That would make my web services vulnerable to a malicious attack where -for example- someone could use the AdminService to easily undeploy my services. What are the security precautions I should take before deplo