java.net.ConnectException: Connection refused

2004-01-30 Thread Akacem Mohammed
Hello, -> AxisFault ...java.net.ConnectException: Connection refused any idea why this Exception is thrown ( I use a certificate to authenticate the webserver hosting the webservice )? I know that the webservice is running. thanks Mohammed

in which case is a ServiceException thrown?

2004-01-30 Thread Akacem Mohammed
Hello, my client try to call a metode on the webservice und I get a RemoteException. Any idea when a RemoteException is thrown. I would like to know also when is a ServiceException thrown. ( I can not debug because my client is running on Production machine). I know the webservice is running(

Jaxrpc.jar und wsdl.jar

2003-10-17 Thread Akacem Mohammed
hello, I noticed that in the file jaxrpc.jar und wsdl.jar the same class Qname ( with differrent version) are included. On the weblogic server I have a conflict because this difference. my question is : do I need the wsdl.jar file for my axis client for produktion? ps : axis version 1.0 thanks

ssl und webservice

2003-10-01 Thread Akacem Mohammed
Hello, does anybody knows about a mailing list about ssl thanks Mohammed

IOException: Write Channel Closed, possible SSL handshaking or tr ust failure

2003-09-26 Thread Akacem Mohammed
Hallo, I am trying to call a webservice through ssl and I am getting the following exception. I am able to initate to call without ssl. thanks for any idea Mohammed java.io.IOException: Write Channel Closed, possible SSL handshaking or trust failure java.io.IOException: Write Channel Closed

init() and destroy()

2003-02-06 Thread Akacem Mohammed
Hello, my SteaServiceSoapBindingImp implements also the javax.xml.rpc.server.ServiceLifecycle inteface but neither of the methodes init() or destroy() are being called. I actually when to run some clean code in the destroy methode. I have deployed my service under borland entreprise server(

SAXParser throws carriage returns away

2003-01-27 Thread Akacem Mohammed
Hello, I have the probleme that the SaxParser when parsing a string is presumely replacing \r\n throught \n. Has someone an idea how I could avoid this? I actually need the carriage return (\r) because the string will be displayed later on on a client (win) . ( now I am simply adding the ca

AW: & within a string / parser expects an entity reference

2003-01-08 Thread Akacem Mohammed
reference The XML is invalid. It's not the schema giving you the problem. You need to use a & instead of &. - Original Message - From: "Akacem Mohammed" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 07, 2003 11:29 AM Subject:

& within a string / parser expects an entity reference

2003-01-07 Thread Akacem Mohammed
Hello , I am using Schemata to parse an xml file. and have among other the following element the firmmname element contains an & charachter for example: Gmbh & Co.KG the SaxParser is throwing the following error: Fat

AW: Initialization Parameters

2002-12-06 Thread Akacem Mohammed
I tried the following , but it didn't work may be I am missing something. my code: ( this code snippet is not part of init(java.lang.Object context) of the ServletLifeCyle interface but part of a normal configuration class) ServletEndpointContextImpl endpoint= new ServletEndpointContextImpl(

reading init-parameter from axisservlet?

2002-11-28 Thread Akacem Mohammed
Hello, How can I read a parameter I added als init-parameter from the axisServlet? with this parameter I want to do some initialisation. thanks for any help. Mohammed

AW: How to pass a parametre to a webservice on startup

2002-11-08 Thread Akacem Mohammed
thout having to deploy my service again. is ther a way to do this? thanks Mohammed -Ursprüngliche Nachricht- Von: Akacem Mohammed [mailto:Mohammed.Akacem@;arbeitsamt.de] Gesendet: Freitag, 8. November 2002 15:04 An: '[EMAIL PROTECTED]' Betreff: AW: How to pass a parametre to

AW: How to pass a parametre to a webservice on startup

2002-11-08 Thread Akacem Mohammed
msgCxt = MessageContext.getCurrentContext(); > SOAPService soapSvc = msgCxt.getService(); > soapSvc.getOption("myparam"); > --- > and then someone commented: > > That approach will lock you into using Axis as your SOAP layer. >

AW: How to pass a parametre to a webservice on startup

2002-11-08 Thread Akacem Mohammed
ntext(); SOAPService soapSvc = msgCxt.getService(); soapSvc.getOption("myparam"); --- and then someone commented: That approach will lock you into using Axis as your SOAP layer. hope this is useful. -Original Message----- From:

How to pass a parametre to a webservice on startup

2002-11-07 Thread Akacem Mohammed
Hello, I want to pass a debug option to myservice on startup is there a way to bring such parameter in the configuration file of the webservice application thanks for any help Mohammed

AW: getRealPath() returns an empty string

2002-11-06 Thread Akacem Mohammed
From: Akacem Mohammed [mailto:Mohammed.Akacem@;arbeitsamt.de] Sent: Tuesday, November 05, 2002 10:06 AM To: [EMAIL PROTECTED] Subject: getRealPath() returns an empty string Hallo , In a methode in the class MyServiceSoapBindingImpl I try to get the realpath so I can read from a config file

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

SAXException

2002-10-14 Thread Akacem Mohammed
Hello, In my Code I am using the xerces 2 parser, and I am setting the the feature as follow: parser.setProperty(NonameSpaceSchemaLocation, SchemaLocation) Schemalocation is the url for myschema.xsd (http://desernoh.amplex.de/xml/stea-neu8.xsd) for some reasons the stea-neu8.xsd schema is n

java.net.SocketException: Connection reset by peer: JVM_recv in socket input stream read

2002-09-18 Thread Akacem Mohammed
Hello, I have the following problem: my soap client send an xml string to the soap server. in the transfer soap server methode I try to make an insert in the database. the following occurs: 1) the tomcat is stopped 2) on the soap client I get the following exception: java.net.SocketExceptio

AW: generated classes directory

2002-07-10 Thread Akacem Mohammed
Hi Russel,   would please give me a hint how I could change my wsdl file to achieve this.   I have the SteaServer interface in the de.ba.stea.soap package, the holder class in the de.ba.stea.helper package. I want to put the generated file SteaServerService SteaServerServiceLocater and Ste

generated classes directory

2002-07-10 Thread Akacem Mohammed
Hi, is there a way to tell the WSDL2Java tools where to put the generated classes? I actaully want the tools for example to put the classes testServerServiceLocator, testServerService and the testServerSoapBindingStub In the test.soap.client directory and the classes testServer, testServerSoa

Globale and session variable in axis

2002-07-05 Thread Akacem Mohammed
Hello blake, thank you for your suggestion. Mohammed Mohammed, I could be missing something in your question, but wouldn't a singleton work in this case? Simply create a static current() method on in your connection pool that returns the VMs only instance of the connection pool class. Tha

AW: Globale and session variable in Axis

2002-07-05 Thread Akacem Mohammed
on work in this case? Simply create a static current() method on in your connection pool that returns the VMs only instance of the connection pool class. That way it doesn't matter where it is called, you are always gauranteed to get the single instance. Blake > -Original Mess

Globale and session variable in Axis

2002-07-04 Thread Akacem Mohammed
Hi , in my service class I want to use a connectionpool class and a database class. I want to create only one instance of the connectionpool class which I want to use for parallel request.does axis instantiate only one instance of the myserviecSoapBindingImpl? or does axis instantiate for eve

Internal Server Error when runnig my client

2002-06-28 Thread Akacem Mohammed
Hello evry body there, I got the following exception when runniny my client. I have apache und tomcat 4.0.4 installed. I checked that my service is deployed. Exception in thread "main" Internal Server Error at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:518) HER I

WSDL2Java WSDLException

2002-06-27 Thread Akacem Mohammed
Hello; I tried to deploy a test example HelloServer und got the following error. Below is my deploy.wsdd file. I installed Axis.beta2 und tomcat 4.0 C:\Programme\Tomcat 4.0\webapps\axis\WEB-INF\classes\de\ba\steaI>java org.apache.axis.wsdl.WSDL2Java deploy.wsdd WSDLException (at /deployment):