The AXIS engine could not find a target service to invoke!

2003-08-14 Thread Chen, Li (Research, YOH)
Hi all, I am having a very strange problem with deploying some services in Axis. I have running on my machine a JBoss 3.2.1 server with Tomcat 4.24.1, and have successfully deployed a service under a folder (let's call it myService.war, in the deploy directory of the JBoss installation). I

RE: From Handler to Service

2003-07-11 Thread Chen, Li (Research, YOH)
Context context = MessageContext.getCurrentContext(); String org = (String)context.getProperty("org"); } HTH, Ian Ian D. Stewart Open Systems Engineer II Enterprise Midrange - Bank One Infrastructure & Operations [EMAIL PROTECTED] (614) 213-6100 "Chen, Li (Research, YOH)&quo

From Handler to Service

2003-07-11 Thread Chen, Li (Research, YOH)
Hi all, Is there any way to pass information (say, a String value) from a handler to a service? The service is "registered" in the deploy.wsdd file. Thanks. g GE Global Research __

Is MessageContext Problem specific to Windows 2k/XP?

2003-07-11 Thread Chen, Li (Research, YOH)
Hi, It seems that trying to access MessageContext using MessageContext context = MessageContext.getCurrentContext(); Inside a service (not a handler) on the server side will result in InvocationTargetException on Windows 2000/XP. Has anyone else been able to replicate the problem

RE: Version of SOAP

2003-07-11 Thread Chen, Li (Research, YOH)
The Axis 1.1 final version support SOAP 1.2 standards...see http://cvs.apache.org/viewcvs.cgi/%7Echeckout%7E/xml-axis/java/changelog.htm l -Original Message- From: Lanigan, Ronan [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 5:49 AM To: '[EMAIL PROTECTED]' Subject: Version of SOAP

RE: TCPMON Port

2003-07-11 Thread Chen, Li (Research, YOH)
Title: TCPMON Port you can start tcpmon by saying:   java org.apache.axis.utils.tcpmon 8082 localhost 8080   which will tell tcpmon to "listen" on port 8082, and direct all incoming messages to localhost:8080...so if you have a service at http://localhost:8080/myService, you'd give your cli

RE: Simple MessageContext problem...

2003-07-10 Thread Chen, Li (Research, YOH)
MessageContext problem... 1) Is this the username/password for the HTTP Basic Authentication header or for a SOAP security header?   2) how can we extract the userid & password for SOAP security header in AXIS handler? "Chen, Li (Research, YOH)" <[EMAIL

RE: Simple MessageContext problem...

2003-07-10 Thread Chen, Li (Research, YOH)
or for a SOAP security header?[Chen, Li (Research, YOH)]  yes.    2) how can we extract the userid & password for SOAP security header in AXIS handler?[Chen, Li (Research, YOH)]  if you have invoke(MessageContext msg) method, say msg.getUsername(), msg.getPassword()  &

Simple MessageContext problem...

2003-07-10 Thread Chen, Li (Research, YOH)
Hi All, There seems to be a problem with using MessageContext object in Axis 1.1. I've deployed a service (a .java file, not JWS) with deploy.wsdd and all, plus a handler that intercepts the incoming SOAP message before it arrives the service...there was no problem accessing MessageContext

Mysterious AdminClient Error

2003-07-07 Thread Chen, Li (Research, YOH)
Hi, I'm in the process of deploying a handler that gets to process an incoming SOAP message before the actual "web service" class gets the message. However, whenever I try to use the AdminClient (org.apache.axis.client.AdminClient) to process the deploy.wsdd file, it shows some unintelligib

RE: Trouble connecting web service in Axis to Oracle DB

2003-07-07 Thread Chen, Li (Research, YOH)
rtain limitaions) regards Srinath On Wed, 2003-07-02 at 18:28, Chen, Li (Research, YOH) wrote: > Hi all, > Here is a peculiar situation that I am trying to resolve: I am > trying to deploy a simple web service that would connect in a "chain" > fashion to the back-end J

Trouble connecting web service in Axis to Oracle DB

2003-07-02 Thread Chen, Li (Research, YOH)
Hi all, Here is a peculiar situation that I am trying to resolve: I am trying to deploy a simple web service that would connect in a "chain" fashion to the back-end JDBC-Oracle connection class and retreive data from the Oracle database. The "client" sees a simple JWS file as the endpoint U