The return SOAP message is a empty Response message. I'm not returning anything from the method. All it does is insert data into a database. However, I can't even tell if it's running. I've tried println's and runtimeexceptions, and neither seem to work. I even tried creating a file so that I could output to it, but that didn't work either. How does the log4j stuff work?
Chris -----Original Message----- From: Greg Michalopoulos [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 2:47 PM To: [EMAIL PROTECTED] Subject: RE: Method not executing You can use log4j to log execution of the method. Its included with the axis libs. What does the return SOAP message indicate happened on the server? Greg -----Original Message----- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 2:33 PM To: '[EMAIL PROTECTED]' Subject: RE: Method not executing I've checked the server and it gives me the WSDL, and the SOAPMonitor shows the messages being sent and returned. But none of my code seems to execute. Is there any way to log the method to show that it's executing? Chris -----Original Message----- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 2:20 PM To: [EMAIL PROTECTED] Subject: RE: Method not executing 1. Did you check if the services are really deployed? Are you able to get a list of deployed web services? Check if you are able to obtain a wsdl dynamically from a running server. The URL will look something like this http://localhost/XXXXXX/servlet/AxisServlet XXXXX is depenedent on where you placed your project. It can be Axis. 2. You can use Soap Monitor to verify if your message has gone across. Did you do that? sagar -----Original Message----- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 11:08 AM To: '[EMAIL PROTECTED]' Subject: Method not executing I'm deploying a client and server from a WSDL. I created all of the files with WSDL2Java, and set them up on the server and client. However, whenever I call the methods from the client, they don't appear to run on the server. I'm not getting any errors at all. Also, none of my println's are showing up, and I even tried throwing a runtimeexception, and that didn't do anything. Any suggestions? Chris