RE: XML and web services

2002-10-31 Thread Mike Hearn
Try changing Document to Element. I've found Axis will serialize this without throwing exceptions BUT it does so incorrectly, which foobars other SOAP implementations. On Wed, 2002-10-30 at 16:07, Barry Lulas wrote: > I get the following error message when using the Document version: > > The clas

Re: Why don't WSDL URLs in UDDI contain 'service' elements?

2002-10-31 Thread John Francis
In article <001201c28072$44aa1720$0a01a8c0@T30COLGRAVE>, [EMAIL PROTECTED] (John Colgrave) wrote: > - Original Message - > From: "John Francis" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Wednesday, October 30, 2002 12:31 PM > Subject: Why don't WSDL UR

RE: addAttribute/setType problem

2002-10-31 Thread Stefan . Kleineikenscheidt
Hello Chris & all, FYI: I also seem to have a problem with org.apache.axis.message.MessageElement and type definitions in SOAP requests. I'm using Axis 1.0 and Xerces XML-Parser (i've had the same problems with both 2.0 and 2.2). For testing purposes i've written a small program, which analy

Re: Why don't WSDL URLs in UDDI contain 'service' elements?

2002-10-31 Thread John Colgrave
- Original Message - From: "John Francis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 31, 2002 11:01 AM Subject: Re: Why don't WSDL URLs in UDDI contain 'service' elements? > In article <001201c28072$44aa1720$0a01a8c0@T30COLGRAVE>, > [EMAIL

Re: migrating from apache-soap (unable to generate WSDL)

2002-10-31 Thread António Manuel Nogueira Santos
> Hi people :) > > I have developed a webservice app using apache-soap and just trying to > tweak abit in axis just to generate the WSDL for my service. I deployed > it with a .jws file, had tomcat already running, but somehow when I > access http://localhost:8080/axis/myService.jws?wsdl, nothin

Re: Why don't WSDL URLs in UDDI contain 'service' elements?

2002-10-31 Thread John Francis
> - Original Message - > From: "John Francis" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Thursday, October 31, 2002 11:01 AM > Subject: Re: Why don't WSDL URLs in UDDI contain 'service' elements? > > Thanks for the reply, John. I think I just about figu

Re: isolation of web services deployed on axis

2002-10-31 Thread Francisco Andrades Grassi
Greetings, I believe (I might be wrong) there is no easy way to achieve this. One workaround (if you are using tomcat) would be to create multiples services in server.xml, each one having its own webapp/axis tree. Yo could use simlinks to avoid copying all the classes over. That way you can have

RE: .NET multi dimensional array

2002-10-31 Thread Cun Yong Tan
ASP.NET can handle SOAP interoperability across various SOAP implementations. .NET Remoting only works for talking between .NET Server & .NET clients. From: "Peake, Chris" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: .NET multi dimensional array Date: W

RE: addAttribute/setType problem

2002-10-31 Thread Chris Williamson
I honestly think there are several bugs in MessageElement and I have not had anyone tell me differently in the last few days. I am probably going to submit the bugs I have found to bugzilla today. I have around seven that are all related to MessageElement. Kind of scary. Plus, these are all rel

Re: Empty arrays not serialized properly

2002-10-31 Thread Cun Yong Tan
Have you tried changing your bean from: public class MyBean { public String[] Values; } to: public class MyBean { private String[] Values; public String[] getValues(); public void setValues(String[] x); } to see if it makes a difference ? From: "Martin Jericho" <[EMAIL PROTECTED

WSDL2Java creates an already-existing class

2002-10-31 Thread Olivier Gauwin
Hi, I'm trying to create a function on the server side with a org.omg.CORBA.Any parameter. The problem isn't (yet) about serialization, etc. I'm using a typeMapping tag in the wsdd file that specifies that the Any type corresponds to the org.omg.CORBA.Any class. I can deploy the service, and

Problem consuming web services from a servlet

2002-10-31 Thread Reynardine
Hi, I am quite new to Axis and can deploy and test some simple services from the command line. I want to consume these services from a servlet. For example, I've tried Eric Jung's example on http://marc.theaimsgroup.com/?l=axis-user&m=102942726001805&w=2 I'm using Tomcat and 'normal' servlets

Re: Problem consuming web services from a servlet

2002-10-31 Thread Francisco Andrades Grassi
Greeting, You need to add the axis related jars to the servlet runtime classpath (ie: WEB-INF/lib). The NoClassDefFoundError implies that the class was found at compile time but it's not found at runtime. Regards Francisco Andrades Grassi www.NextJ.com On Thu, 2002-10-31 at 10:57, Reynardine wro

RE: REPOST5 PLEASE HELP! WSDL2Java generates uncompilable code

2002-10-31 Thread Bloch, Ben
Title: RE: REPOST5 PLEASE HELP! WSDL2Java generates uncompilable code Peter, Are you doing an OMI implementation of some sort by the way? I will try to look at your WSDL in detail but there are - or were in 1.0 spec anyway - issues in general with WSDL and how OMI specifies its serialization

2 questions, (starting/stopping web services) and (when is a ws constructor called)...

2002-10-31 Thread Barry Lulas
Title: 2 questions, (starting/stopping web services) and (when is a ws constructor called)... 1.  Is is possible to start/stop specific web services?  If so, can this be done from an ant script.  I know that Tomcat has some ant tasks, such as deploy, undeploy, redeploy, list, start and stop. 

typeMapping Version

2002-10-31 Thread Tevoi Andrea
In WSDL2Java you can select typeMapping Version (SOAP 1.1 JAX-RPC and SOAP 1.1 encoded). What is the difference? thanks in advance, Andrea Tevoi

RE: 2 questions, (starting/stopping web services) and (when is a ws c onstructor called)...

2002-10-31 Thread Barry Lulas
Title: 2 questions, (starting/stopping web services) and (when is a ws constructor called)... Okay, I sort-of answered my first question, I can start/stop Axis, but can I start/stop a particular web service running under Axis.  If so, would the context be /axis/webservicename?   I still need

RE: Stub generation of a .net Service

2002-10-31 Thread Jianliang Zhao
I guess Axis only handles SOAP binding, but the WSDL contains HTTP binding, too. You can save the WSDL into a file, remove the HTTP binding, and generate client from the file. -Original Message- From: suresh narsimhan [mailto:sureshnarsimhan@;rediffmail.com] Sent: Wednesday, October 30,

Re: 2 questions, (starting/stopping web services) and (when is a ws c onstructor called)...

2002-10-31 Thread Ben Souther
Look at deploy.wsdd and undeploy.wsdd in the "stock" example that shipps with Axis. On Thursday 31 October 2002 05:02 pm, Barry Lulas wrote: > 1. Is is possible to start/stop specific web services? If so, can this be > done from an ant script. I know that Tomcat has some ant tasks, such as

RE: Stub generation of a .net Service

2002-10-31 Thread Nantz, Brian
You can turn off the other bindings in .Net: Web.config: -Original Message- From: Jianliang Zhao [mailto:jzhao@;zaplet.com] Sent: Thursday, October 31, 2002 11:54 AM To: [EMAIL PROTECTED]; suresh narsimhan Subject: RE: Stub generation of a .net Service I guess Axis

RE: 2 questions, (starting/stopping web services) and (when is a ws c onstructor called)...

2002-10-31 Thread Barry Lulas
Title: RE: 2 questions, (starting/stopping web services) and (when is a ws c onstructor called)... I looked at these files.  For which number question was I to find the answer in these files? -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 31,

Re: Problem consuming web services from a servlet

2002-10-31 Thread Bahman Kalali
I was actually trying to get the Eric's example work. Here is my problem: 1) I created the html form and saved it to %CATALINA_HOME%/webapps/axis/GetStock.htm. 2) I created the StockQuoteServlet to handle form requests and call the Axis StockQuoteService 3) I compiled the code and saved it in %CAT

What's the best way to retrieve a service's config file.

2002-10-31 Thread kevinz
Hi, I have a java class, deployed onto AXIS as a web service. I want to have a config file (preferably in the same directory as server-config.wsdd) for the service. since the service class does not have a handle of any AXIS related object(i.e. message context). I dont want to hardcode the location

java.lang.reflect.Proxy?

2002-10-31 Thread Ed Snible
When I try to call ServiceDesc.loadServiceDescByIntrospection() on a "dynamic proxy class" (a class created by java.lang.reflect.Proxy.getProxyClass()), I get a null pointer exception in org.apache.axis.components.bytecode.ClassReader.getBytes(ClassReader.java:141). I'm using .jars from xml-axi

Re: isolation of web services deployed on axis

2002-10-31 Thread Steve Loughran
- Original Message - From: "Len Takeuchi" <[EMAIL PROTECTED]> To: "Axis User" <[EMAIL PROTECTED]> Sent: Wednesday, October 30, 2002 4:21 PM Subject: isolation of web services deployed on axis > Hello, > > Is there any mechanism available in axis to achieve some level of isolation > betwe

RE: isolation of web services deployed on axis

2002-10-31 Thread Peake, Chris
Is this what people are doing in a production world? I've been wondering what folks are doing in a complex environment with multiple web services. (i.e. 20+) There are also the questions related to where a an applications jar has to be. Currently the \lib dir. There's always the possiblity a

REPOST: axis integration

2002-10-31 Thread Bryan Weingarten
hi,   i've been working on a specialized rpc server and would now like to integrate soap into it.  the axis project seems to be a perfect fit for our project.  i've read the user's guide, the integration guite and the architecture guide, and browsed through some source code, but i can't fin

Re: isolation of web services deployed on axis

2002-10-31 Thread Steve Loughran
- Original Message - From: "Peake, Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 31, 2002 15:08 Subject: RE: isolation of web services deployed on axis >Steve Loughran wrote: >>the trick is to stop having multiple apps in the axis webapp, and move to >>one web

RE: isolation of web services deployed on axis

2002-10-31 Thread Vidyanand Murunikkara
Hi Steve We have been doing exactly like this .. but if you are running in somethign like tomcat it chokes after the 7th app .. this is without using any of the X options while running tomcat ... is this a problem with tomcat or is it becoz axis eats too much of the resources ??? is hosting them

Problem with JMS Transport using XAQueueConnectionFactory

2002-10-31 Thread Len Takeuchi
Hello, I am using JMS Transport with the caller being a session EJB and I would like to use extended transactions within the bean (i.e. if web service call and other operations should all succeed or all should get rolled back). The code that I'm using from the bean method is very similar to how t

Re: Empty arrays not serialized properly

2002-10-31 Thread Martin Jericho
Thanks for the tip, it has given me further insight into the problem. Your suggestion works, but it introduces another problem. Specifying the beans in this way means that Java2WSDL will give the element the name "values" instead of what I want, which is "Values" with the first letter capitalised

Re: Problem consuming web services from a servlet

2002-10-31 Thread Reynardine
Problem fixed - thankyou Francisco, I copied my 15 jars from webapps/axis/../lib to common/lib, restarted Tomcat and the servlet works fine. (Note I had to make some minor changes to the servlet on http://marc.theaimsgroup.com/?l=axis-user&m=102942726001805&w=2 i.e. the URL and adding a doGe

SimpleNonPrimitiveSerializerFactory ?

2002-10-31 Thread Vidyanand Murunikkara
Hi In Axis beta 2 there was this class SimpleNonPrimitiveSerializerFactory( in the package org.apache.axis.encoding.ser). Can anyone tell me what is the equivalent of this in Axis 1.0. Is it the SimpleSerializerFactory ( in the same package )? thanx Vidyanand

SOAPMonitor doesn't work right?

2002-10-31 Thread Stephen Graham
Hello, Before I start trying to work out why SOAPMonitor doesn't work on my system, I thought I should ask if anyone else has got it to work, or is it known to be broken? Regards Stephen Graham.

Fw: Problem consuming web services from a servlet

2002-10-31 Thread Bahman Kalali
Thanks to Paul, my problem also solved. --Bahman - Original Message - From: "Bahman Kalali" <[EMAIL PROTECTED]> To: "Paul Campbell" <[EMAIL PROTECTED]> Sent: Thursday, October 31, 2002 5:06 PM Subject: Re: Problem consuming web services from a servlet > Thanks Paul, > > The problem exa

is nagoya.org working? connection refused

2002-10-31 Thread Raju Gottumukkala
Hi   I couldn't get any reponse nor could I view the wsdl files at the http://nagoya.apache.org since yesterday(oct 30), coz I tried to view the wsdl location of different examples but the page doesnt display, I also get connection failed error when i try to run any sample Clients, but ever

XMLType of StringHolder

2002-10-31 Thread chasee
Hi, What is the XMLType of StringHolder and other Holders?   Thanks, ChaseeDo you Yahoo!? HotJobs - Search new jobs daily now

RE: is nagoya.org working? connection refused

2002-10-31 Thread Stephen Graham
I've been seeing the same problem (connection refused) with http://nagoya.apache.org since I started using Axis on 8th October. I've never seen it work.   In relation to the other samples, are you trying to access services on you local network or external? If only the external ones are failing

Again: StringHolder XMLType

2002-10-31 Thread chasee
Does anybody know XMLType for StringHolder? Please kindly tell.   Thanks, ChaseeDo you Yahoo!? HotJobs - Search new jobs daily now

RE: is nagoya.org working? connection refused

2002-10-31 Thread Stuart Halloway \(DevelopMentor\)
+1. I am not behind a firewall and I cannot get to http://nagoya.apache.org:5049/axis/services/echo. -Stu -- Stuart Halloway : staff.develop.com/halloway DevelopMentor   : www.develop.com Essential Java  : www.develop

Re: RE: Stub generation of a .net Service

2002-10-31 Thread suresh narsimhan
hi, sorry if this ques is stupid where can i find the Web.config file?? where can i find the On Thu, 31 Oct 2002 Nantz, Brian wrote : You can turn off the other bindings in .Net: Web.config: -Original Message- From: Jianliang Zhao [mailto:jzhao@;zaplet.com] Sent: Th

Re: is nagoya.org working? connection refused

2002-10-31 Thread Raju Gottumukkala
      I tried to acess on my local network, I' am not sure whether firewall is blocking, telnet /ping doenst work on that port. but I should be able to see the wsdl file isnt it, i     have tried other wsdl locations they work.     Good Luck   Raju - Original Message - From:

Session sharing across Services

2002-10-31 Thread Robert Herold
I have a few services running in the same web-application. The way things are now, each service ends up having a separate session. I would like to have a session shared across the services (e.g. login/authenticate in one service, put auth token in session, access auth token in another service fro

First call to AXIS fails, subsequent calls succeed

2002-10-31 Thread Anil Guntupalli
I'm facing this weird problem with Axis. I have a tag library that makes Axis calls to get to a web service. The first time the JSP page that uses the tag library is loaded, the SOAP call fails with an error (below). All subsequent calls succeed... Any Ideas what am I doing wrong? -- AxisFa

RE: isolation of web services deployed on axis

2002-10-31 Thread KUMAR,PANKAJ (HP-Cupertino,ex1)
I have been watching this discussion with some curisity ... There is an intersting parallel here with the Web Application world. There are huge sites that run on farm of servers and then there are tiny sites that get hosted on a single box, all served by one web server. I don't see how the web ser

RE: SOAPMonitor doesn't work right?

2002-10-31 Thread Sprenger, Karel
Title: SOAPMonitor doesn't work right? Hi,   It doesn't do a thing for me either.  The applet comes up and notices it looses a connection when I stop Tomcat but that's all it does.   Cheers, Karel -Original Message-From: Stephen Graham [mailto:[EMAIL PROTECTED]]Sent: vrijdag 1 no