Re: problems with wsdl understanding

2004-02-03 Thread Robert Koberg
Feng Yuan wrote: Hi Robert, I met the same problem several times. I do not really remember how to solve it now. But you may try the webapps\axis\WEB-INF\server-config.wsdd to check if you can find something useful there. Thanks. I have pasted the relevent portion of the server-config.wsdd below.

Re: problems with wsdl understanding

2004-02-03 Thread Feng Yuan
Hi Robert, I met the same problem several times. I do not really remember how to solve it now. But you may try the webapps\axis\WEB-INF\server-config.wsdd to check if you can find something useful there. Cheers, Feng - Original Message - From: "Robert Koberg" <[EMAIL PROTECTED]> To: <[EMA

problems with wsdl understanding

2004-02-03 Thread Robert Koberg
Hi, [apologies for the length] I have read through the docs and spec but I am still unclear on a few things. The samples all work and all is well. I have created a wsdl file and use the ant task to generate java files, then compile and deploy -- everything works so far. I must be building the

Server Report

2004-02-03 Thread axis-user
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment. <>

Axis, Document Style Services and XML schema...

2004-02-03 Thread Marepalli, Somesh
Hi: I have asked this question before. Today, I read some more archived entries for this user forum and I am more confused... -Essentially, I would like to start with a WSDL document and XML schema to define the operations and types of my web service interface. -I would like the client

Instant deployment

2004-02-03 Thread Tony
Hi there,   The axis documentation has a Claculator.java example. The doc says to instantly deploy this class is to copy Calculator.java to server_root/webapps/axis/Calculator.jws then poin the browser to http://localhost:8080/axis/Claculator.jws. Of course Calculator.java does not contain any comp

RE: java.net.SocketTimeoutException: Read timed out

2004-02-03 Thread Kirby, Stephen (Civ,ARL/CISD)
Soniya, Thanks for the information. I was finally able to up the timeout time by going into the WSDL2JAVA generated stub and finding where a call is created in my getAvnData() method and adding call.setTimeout() there. Best regards, Steve -Original Message- From: Shah, So

RE: java.net.SocketTimeoutException: Read timed out

2004-02-03 Thread Shah, Soniya M. [RA]
I have tested timeout upto 4 minutes and it is o.k. Only difference is I use call.invoke Soniya -Original Message- From: Kirby, Stephen (Civ,ARL/CISD) To: [EMAIL PROTECTED] Cc: Kirby, Stephen (Civ,ARL/CISD) Sent: 2/3/2004 11:30 AM Subject: java.net.SocketTimeoutException: Read timed ou

Please help...

2004-02-03 Thread Mr HrH Himself
Hi, I am new to axis. I searched through the Archives and read posts related to my problem. I applied some of the suggestions and yet I can't resolve the problem. The problem has to do with deserializer: I have 2 beans, a service and a client class. I compiled them, placed the class files for the b

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
Hi Brian,   This is just a shot in the dark but have you tried using setFullTargetObjectURI instead of setTargetObjectURI?   I don't find it odd that there's an Axis/JWSDP disconnect! There is too little effort put in to XML Schema-related tools. I'm not criticizing Apache here: active contri

Re: sending xml files as string parameters

2004-02-03 Thread Brian Shields
Thanks Jeff, Obviously ns1 is not a default namespace, but a default variable name for the urn:Foo namespace. this is what i meant. I set urn:Foo as the namespace by using the setTargetObjectURI method of the org.apache.soap.rpc.Call class. I just find it odd that it works perfectly when sent to a

Re: sending xml files as string parameters

2004-02-03 Thread Brian Shields
Thanks Jeff, Obviously ns1 is not a default namespace, but a default variable name for the urn:Foo namespace. this is what i meant. I set urn:Foo as the namespace by using the setTargetObjectURI method of the org.apache.soap.rpc.Call class. I just find it odd that it works perfectly when sent to a

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
Hi!   Clearly, the error message identifies the problem as the the opening tag of xmlFileParameter element. Since you are using UTF-8, the error is obviously not due to character encoding. The only other issue that comes to mind is the absence of a namespace: I'm speculating that JWSDP may no

java.net.SocketTimeoutException: Read timed out

2004-02-03 Thread Kirby, Stephen (Civ,ARL/CISD)
Title: Message Hi,     I have a web service that I am testing out.  I can see that the web service is deployed  and starts up OK.  However, when I call one of its methods, getAvnData() in a client program, I am seeing  a read timed out error (after 60 secs) as below.  The getAvnData() meth

UTF-16 encoding / axis.xmlEncoding wsdd parameter

2004-02-03 Thread Fontanel, Laurent
The documentation [http://ws.apache.org/axis/java/reference.html] states that it is possible to specify force UTF-16 encoding using the global wsdd parameter 'axis.xmlEncoding'. I have tried to set it in my server-config.wsdd and I'm still seeing UTF-8 encoded responses. Is this a bug? Am I missi

Re: sending xml files as string parameters

2004-02-03 Thread Brian Shields
How? that is an automatically generated SOAP message. I am simple creating a parameter...("xmlFileParameter, String.class, xmlFile, Constants.NS_URI_SOAP_ENC); where xmlFile is the string containing the xml file! II presume ns1 is a default namespace?? BrianJeff <[EMAIL PROTECTED]> wrote: Try u

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
Try using:       Jeff   - Original Message - From: Brian Shields To: [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 10:11 AM Subject: sending xml files as string parameters Hi all, I am trying to send an xml file as a parameter in a web service ca

sending xml files as string parameters

2004-02-03 Thread Brian Shields
Hi all, I am trying to send an xml file as a parameter in a web service call. This xml file is in string form. I have created the string using the XMLOutputter class from the jdom.output package. I send this to another locally hosted service, also deployed using axis, and everything works fine. I c

RE: Axis C++ on Solaris

2004-02-03 Thread Galbreath, Mark A
thanks for reminding the rest of us why we use Ant! Mark -Original Message- From: Gabriel Dos Santos [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 7:47 AM To: [EMAIL PROTECTED] Subject: Re: Axis C++ on Solaris I will see if I can make it work and then it can be added to the

Re: Axis C++ on Solaris

2004-02-03 Thread Gabriel Dos Santos
I will see if I can make it work and then it can be added to the distribution just as you say. Thanks. Gabriel From: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: Axis C++ on Solaris Date: Tue, 3 Feb 2004 06:36:21 -0500 (EST) Hi Gabirel, IMHO Axis C++ bui

Re: Axis C++ on Solaris

2004-02-03 Thread damitha
Hi Gabirel, IMHO Axis C++ build files are very simple which use newer version of GNU autotools. You need only write Makefile.am's and configure.ac and what you need to write is very simple. If it is not possible to build axisc++ using these newer tools I suggest the following two methods. 1)Do the

Axis C++ on Solaris

2004-02-03 Thread Gabriel Dos Santos
Hi, I was wondering if anybody has tested Axis C on Solaris. I'm having problems compiling it and my system administrator is not very fond with the idea of installing newer versions of libtools, automake and autogen. Is there any way around this problem? Thanks in advance, Gabriel _

RE: soap sample/attachments problem

2004-02-03 Thread GANDHIRAJAN,AYYAPPAN (HP-India,ex2)
HI santa,   Please remove the namespace (xmlns:ns1="urn:EchoAttachmentsService") in your wsdd file and see if it works. Thanks & regards, Ayyappan Gandhirajan Senior Software Engineer, E-Mail: [EMAIL PROTECTED]