Re: java.net.ConnectException: Connection refused: connect (RESOLVED)

2003-04-02 Thread Hans Russo resowe
USING SLASH INSTAD OF BACKSLASH RESOLVED THE PROBLEM: But the line for the variable Zeitansage_Service_address was created from tool WSDL2Java. So somebody should have a look if this a bug of WSDL2Java for windows. Thank you very much Hans - Original Message - From: Steve Loughran

Re: WSL2Java Question -- Document/Literal

2003-04-02 Thread Paul Jackson
On a related message-style topic, if I deploy the messaging sample (in samples\message), the wsdl from MessagesService?wsdl contains style=rpc. Can anyone explain why the message sample's generated wsdl has style=rpc and not style=document? - Original Message - From: [EMAIL PROTECTED] To:

Unable to update a string element within a message with 1.1 rc2.

2003-04-02 Thread Neil Blue
Hello, We are now using axis 1.1 rc2, and we have built a request hander, in which we are trying to alter the request message before it arrives at the soap binding class. In the handler we perform the following steps: first we get the request message from the message context with: Message

initialization of webservice

2003-04-02 Thread Davinder Singh
Title: initialization of webservice Hi, I have a webservice and the service end point class implements javax.xml.rpc.server.ServiceLifecycle interface. Is there a way i can have init() method called without submitting a request to the webservice? I am using weblogic 7.0 SP 1 / Axis 1.1RC1.

java.util.List and 1.1.RC2

2003-04-02 Thread Brain, Jim
Does anyone know if: Bugzilla Bug 8435 [xsd:list] WSDL2Java doesn't handle schema list enumerations has been fixed. I don't know how current Bugzilla is, though I concerned it is, as this seems to preclude the use of AXIS for our project (makes heavy use of Lists) Jim Jim Brain,

Vector serializer ...

2003-04-02 Thread Carl Cabou
Hi all !! I've deployed successfully 2 services on Axis. I use two home made classes A and B. Each one has a beanserializer declared in the WSDD file. The 1st service returns a vector of A objects, it works just fine without declaring any serializer for java.util.Vector. The 2nd service

stubs and custom serializers

2003-04-02 Thread Volkmann, Mark
Title: stubs and custom serializers When a client is invoking an Axis web service using a stub generated by wsdl2java, is there any way it can register custom serializers/deserializers to be used when calls are made on the stub? It seems to me that the best solution would be to specify the

RE: help required for attachment using ejb as webservice provider

2003-04-02 Thread subhendukumar mohanty
Hi Toshiyuki (B (BMy Answers are as below (B (BAxis 1.0 (But we may go for Apache Soap latest version comes with websphere 4.0) (BType of Image (Jpeg). We get the image as byte array from other source. We do not get (Bfile reference. (B (BProblem. If i expose my ejb method as webservice

Re: WSDL error after deploying a service using AdminClient

2003-04-02 Thread Debbie Vasaturo
Olivier, Thanks for your suggestion. I added the namespace tags but I am still getting the same error. I can see the new namespace tags in the server-config.wsdd. I can also see the new beanMapping tags defined in my deploy.wsdd. Oddly though, qName="". I have also read earlier posts

Re: [java.util.List and 1.1.RC2]

2003-04-02 Thread Mitch Gitman
Jim, There seem to be two separate issues here. The one (which bug 8435 addresses) is how to emulate an enumeration type, which of course is not natively supported in Java. I could have sworn recently I saw (maybe on this list) a roundabout example how to code a Java class that Axis would

Re: WSDL error after deploying a service using AdminClient

2003-04-02 Thread Debbie Vasaturo
I'm replying to my own post here. I was not able to solve this problem but I found a post by Gene Chuang on 12-30-02 explaining a workaround. I used Java2WSDL to create the wsdll and then used WSDL2Java -s to create deploy.wsdd. The xml namespaces were created and my app deployed just fine.

Invalid WSDD element 'service' (wanted 'deployment')

2003-04-02 Thread Clay Graham
Hello Axis Users! I have run into a bit of a wall here and desperately need to some advice on how to fix it. I have been looking through the archives quite a bit and haven't found anything quite like this problem. I have done the basic axis install to the tomcat webapp directories, I am using the

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Brain, Jim wrote: Does anyone know if: Bugzilla Bug 8435 [xsd:list] WSDL2Java doesn't handle schema list enumerations if its open, its probably open; you can always write a test to make sure. Note that is the special case of a list enum, not a simple list. The way .NET serialises a

Re: [java.util.List and 1.1.RC2]

2003-04-02 Thread Steve Loughran
Mitch Gitman wrote: Jim, There seem to be two separate issues here. The one (which bug 8435 addresses) is how to emulate an enumeration type, which of course is not natively supported in Java. I could have sworn recently I saw (maybe on this list) a roundabout example how to code a Java class

RE: java.util.List and 1.1.RC2

2003-04-02 Thread Brain, Jim
All I know at present is that when I expose a method that returns List, the Java2WSDL piece in AXIS complains bitterly when I do ?WSDL. As for customizing AXIS, I'm willing to try, but my knowledge of the inner workings of AXIS is extremely limited. Jim Jim Brain, [EMAIL PROTECTED] Researching

Re: java.util.List and 1.1.RC2

2003-04-02 Thread James Black
Brain, Jim wrote: All I know at present is that when I expose a method that returns List, the Java2WSDL piece in AXIS complains bitterly when I do ?WSDL. As for customizing AXIS, I'm willing to try, but my knowledge of the inner workings of AXIS is extremely limited. What I did is to just turn

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Mitch Gitman
Right, refer to the Forgive me... message which I sent out five minutes later when I realized this. I'm still wondering about the apparent existing support for java.util.List and the like. It seems to me that Java2WSDL should generate an exception when it comes across a collection class that

RE: java.util.List and 1.1.RC2

2003-04-02 Thread Brain, Jim
I know, and I thought of that. Unfortunately, I need to expose 296 service classes, containing 5000 references to List, and I have a program that is creating web service wrappers for all the classes (the original classes combined data and access logic, which had to split in half to work in the

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Mitch Gitman wrote: Right, refer to the Forgive me... message which I sent out five minutes later when I realized this. yeah, I caught that I'm still wondering about the apparent existing support for java.util.List and the like. It seems to me that Java2WSDL should generate an exception when it

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Brain, Jim wrote: I know, and I thought of that. Unfortunately, I need to expose 296 service classes, containing 5000 references to List, and I have a program that is creating web service wrappers for all the classes (the original classes combined data and access logic, which had to split in half

extending i18n message files

2003-04-02 Thread Herrick, Mike
Hi, I am following the directions at in the Integration Guide for Extending Message Files, but am having trouble. I keep getting Cannot find resource. I copied all of the files from java/src/org/apache/axis/i18n into my package structure: I updated the copy the MessageConstants class like

happyaxis.jsp Error

2003-04-02 Thread Willis, Keith
Title: happyaxis.jsp Error Hi All, I am trying to set axis up on a server and I am getting a 500 server error on happyaxis.jsp. Here is the error I am gettting... any help would be appreciated. Thanks, Keith type Exception report message description The server encountered

Capitalization issue with Java2WSDL

2003-04-02 Thread Steve Pannier
Hello all. Axis-1_1RC2: I'm using Java2WSDL to generate WSDL for my service. I have class properties that start with an upper case letter. The generated WSDL, however, contains the property name with the first letter lower case. Why does Java2WSDL do this? Is there a way to force it to

RE: Capitalization issue with Java2WSDL

2003-04-02 Thread Steve Stallion
take a look at the sun coding standards. also, i am assuming you are using beanMappings -- these follow javabean introspection rules, so you need follow that standard to get reliable results. -Original Message- From: Steve Pannier [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02,

Re: [Re: java.util.List and 1.1.RC2]

2003-04-02 Thread Mitch Gitman
I've used toArray() numerous times in my service code and had no problem with that. Obviously, Jim (the fellow who started this thread) doesn't have the luxury of coding that manually. My point, to be more precise, is that JAX-RPC 1.0 says nothing about java.util collections classes/interfaces.

RE: java.util.List and 1.1.RC2

2003-04-02 Thread Brain, Jim
Well, I don't mean to toot my own horn, but I am rather impressed with my tool. It supports the following features: * Automatically takes classes with mixed data (getters/setters) and action methods and splits them into Beans and Impl Action classes * Converts all methods to throw

RE: Capitalization issue with Java2WSDL

2003-04-02 Thread Steve Pannier
I'm aware of the coding standards, etc. I probably should have explained that the service code I'm working with is generated within a GUI which allows the user to design/create service methods; they can define variables, parameters, data types, and programmatic flow. If the name of a variable

RE: happyaxis.jsp Error

2003-04-02 Thread Willis, Keith
Title: happyaxis.jsp Error I found out what this was already... A permissions issue on the server. Thanks, Keith -Original Message-From: Willis, Keith [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 02, 2003 2:50 PMTo: '[EMAIL PROTECTED]'Subject: happyaxis.jsp Error Hi

Turning off ?wsdl feature

2003-04-02 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message Is there a way to limit access to the ?wsdl feature or turn it off completely? I need to be able customize the WSDL file based on the client, so I don't want it readily available to all clients. Thanks, Ozzie

RE: Turning off ?wsdl feature

2003-04-02 Thread Kellogg, Richard
Title: Message Try the following article: http://www.fawcette.com/javapro/2003_02/online/WSDL_kjones_02_27_03/default_pf.asp -Original Message-From: Gurkan, Ozzie (MAN-Corporate) [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 02, 2003 4:18 PMTo: '[EMAIL PROTECTED]'Subject:

RE: Turning off ?wsdl feature

2003-04-02 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message That works great for only one, but I want to be able to select different WSDL files, not just one. I guess you could conceivably have different service urls for each client, but that gets ugly fast. -Original Message-From: Kellogg, Richard [mailto:[EMAIL

RE: Turning off ?wsdl feature

2003-04-02 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message Short of writing a filter to intercept the ?wsdl querystring, I am not sure how I trap that request in the web.xml file. Currently, the web.xml has an entry for /axis/* for all services to be handled by the AxisServlet. How would I intercept something like "/axis/*?wsdl"?

RE: Turning off ?wsdl feature

2003-04-02 Thread Mike Burati
Title: Message You lost me - not sure why you'd want it to be /axis*?wsdl... The article describes how in the WSDD deployment descriptor, you would go about changing the URL used for that service, for retrieving WSDL. That URL can be a resource in your WAR - it does not have to be under

RE: Capitalization issue with Java2WSDL

2003-04-02 Thread Steve Stallion
ala the wsdd reference in axis docs: beanMapping qname=ns:localName classname=classname A simplified type mapping, which uses pre-defined serializers/deserializers to encode/decode JavaBeans. The class named by classname must follow the JavaBean standard pattern of get/set accessors.

RE: Turning off ?wsdl feature

2003-04-02 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message Mike, I believe I understand what you mean now. The wsdlFile entry can be replace with a URL, so it doesn't necessarily have to be a physical resource such as a file. I will have to give that a shot to see if it works. I probably have to give it an absolute URL for it work,

RE: cofiguring SOAPMonitor

2003-04-02 Thread Allen, Michael E.
Title: RE: cofiguring SOAPMonitor Ok; so I would like to see every soap message received and sent by axis. How do I do that? Do I need to modify the deploy.wsdd file generated by WSDL2Java, or is do I add the services I want to monitor to web.xml, or ...? -Original Message- From:

Aha! (Was:RE: cofiguring SOAPMonitor)

2003-04-02 Thread Allen, Michael E.
Title: RE: cofiguring SOAPMonitor I just found that I had not read enough of the documentation. There is link under Reading Guide to page that describes how to deploy SOAPMonitor. Now why that deploy-monitor.wsdd file is not part of the distribution and why none of this is mentioned under

Re: Turning off ?wsdl feature

2003-04-02 Thread Steve Loughran
I've thought of (in the axis 1.2 timeframe) letting you specify a WsdlGenerator, a class that generates wsdl for an endpoint. The base impls. would be 'return a resource' and 'make one from introspection', but I'd envisage smarter things like running the resource through velocity to expand

Re: Turning off ?wsdl feature

2003-04-02 Thread Steve Loughran
- Original Message - From: Mike Burati [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 13:44 Subject: RE: Turning off ?wsdl feature You lost me - not sure why you'd want it to be /axis*?wsdl... The article describes how in the WSDD deployment descriptor, you

RE: Invalid WSDD element 'service' (wanted 'deployment')

2003-04-02 Thread Clay Graham
Just for a followup This all seems to go away when I remove the server-config.wsdd. So it seems that I cannot invoke the admistrator remote, so the only way to get this to deploy through the init method of the servlet I posted earlier. Its ok, I consider it to be a superior way anyway, I

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: Re: [java.util.List and 1.1.RC2] Gesendet (c) GRZ/RACON Linz

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: cofiguring SOAPMonitor Gesendet (c) GRZ/RACON Linz 2001 Agent

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: Re: java.util.List and 1.1.RC2 Gesendet (c) GRZ/RACON Linz

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: Re: java.util.List and 1.1.RC2 Gesendet (c) GRZ/RACON Linz

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: RE: cofiguring SOAPMonitor Gesendet (c) GRZ/RACON Linz 2001

Thomas KRIECHBAUM ist außer Haus.

2003-04-02 Thread Thomas KRIECHBAUM
Ich werde ab 31.03.2003 nicht im Büro sein. Ich kehre zurück am 07.04.2003. Die Rückmeldung bezieht sich auf ein Mail mit folgendem Thema: extending i18n message files Gesendet (c) GRZ/RACON Linz 2001

[newbie] cannot read patch

2003-04-02 Thread Joerg Buchberger
Hi. There is a patch that allows us to expose Avalon Components via SOAP: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12903 Unfortunately, whenever I click on one of the patch/attachment links, the patch isn't shown. Can someone please send me that patch by mail? Thanks. Cheers. Joerg