one-way notification in Axis?

2002-06-03 Thread Jesper Söderlund
Title: Message I tried to use invokeOneWay to send a callback notification to a client without expecting any reply but Axis replies with: "SaxException: The document's root element could not be found" .   This comes from the HTTP-reply message doesn't contain any message at all since it's a

naming of service

2002-06-03 Thread SWesten
Hi All,   My web service consists of a DashboardManager class which returns an array of Dashboard (s).   Publishing this service results in client side classes called DashboardManagerService and Dashboard.   In my opinion this is a bit too much: "...ManagerService". I rather would have two

How do I access a webservice via HTTPS?

2002-06-03 Thread Nuno Guerreiro
Well, it really should be simple, but the fact is that I'm behind a firewall and I've set the proxyHost and proxyPort properties, but when JSSE tries to connect to the proxy, it raises an IOException, because it expects to receive HTTP/1.0 instead of HTTP/1.1 in the proxy reply. There is an artic

Accepting a digital certificate in Axis

2002-06-03 Thread Nuno Guerreiro
Is there a way to accept an incoming Web Service call only if it comes with a Digital Certificate of a certain entity? Can this be solved only on the Web Server side and have no Axis involvement? Many thanks, Nuno Guerreiro __ Do You Yahoo!? Yah

Re: Need Help, Unable to run any Axis Samples

2002-06-03 Thread Carl Trusiak
I had something similar on Tomcat 4.0.3. In the logs it was reporting a security exception on a class in the tt-bytecode.jar. I extracted all the files and rebuilt the jar. Everything worked after that. Carl --- Sybase Employee <[EMAIL PROTECTED]> wrote: > I've installed Tomcat 4.0.4 beta 3 a

Complex/Custom Types without using wsdl2java

2002-06-03 Thread kulin parikh
Can anybody give me one code sample for calling webservice which takes complex type as input but "does not" use wsdl2java. All the examples provided with axis which takes complex types requires use of wsdl2java . I have a situation where i cannot generate stubs in advance. ___

How to configure Logging on Tomcat 4.0.3

2002-06-03 Thread Carl Trusiak
I tried placing a commons-logging.properties file in WEB-INF/lib note, this is the only part of the classpath I have access to. I don't get the Log file I configure in the RollingFileAppender. How is this done __ Do You Yahoo!? Yahoo! - Offici

Re: Error with BeanSerializer

2002-06-03 Thread Stefan Wagner
Am Donnerstag, 30. Mai 2002 16:55 schrieben Sie: > you will have to change the set classpath.sh file in tomcat/bin directory > and set the java.endorsed.dirs to point to the your "lib" in which you keep > ur jar file of the service. > eg: > in setclasspath.sh > -Djava.endorsed.dirs=: I don't have

WSDL Question

2002-06-03 Thread Edwards, Jeff
I'm having a problem with the following wsdl example: http://www.w3.org/1999/XMLSchema"; xmlns:xsd1="urn:FooBar2" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns="http://schemas.xmlsoap.org/wsdl/";> http://ww

instanciating AxisServlet directly

2002-06-03 Thread Adrian 'Dagurashibanipal' von Bidder
Howdy! We're writing an application with a jaxrpc webservices API as a part (admin intercase) of it. As this is only a small part of the application, I'm trying to set the webservices up statically (i.e. without any config files), using jetty as servlet container. Are there any examples around o

hi attachment problem need solution

2002-06-03 Thread Abhinav
Hi, I am trying to run the samples attachment examples ,it deploys properly but when I run it gives me Encoding unsupported exception.I am using weblogic 5.1 and JDK 1.4. PLz help me urgently . Abhinav Shrivastava Software Engineer Iopsis Softwares Pvt. Ltd. Phone:6054191/92 Extn:105 Email:[E

href snag w/ mozilla javascript soap

2002-06-03 Thread Heitzso
because of possible cyclic reference problems mozilla javascript (current incarnation anyway) refuses to touch href's. I rewrote a class this morning from an array of objects to several arrays of simple data types, thinking that I would bypass the href problem that way. But axis is still using

Re: WSDL Question

2002-06-03 Thread James Yegerlehner
> > If I change the message-type attribute from 'element' to 'type' it works!?! Jeff- Sure, because "Ping" is a type, not an element. If you want to use element instead of type, add a Ping element to the schema. BTW the schema uses the obsolete schema namespace: http://www.w3.org/1999/XMLSchema

RE: AxisFault vs SOAP Fault

2002-06-03 Thread St-Germain, Sylvain
I did not figure how we can throw your own fault type, which seems possible from what I am reading here, however, you can get access to all of the content of the faultDetail. Here is some sample code... Element[] detail = e.getFaultDetails(); for (int i=0; imailto:[EMAIL PROTECTED]] Sent: Thurs

Error at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:518)

2002-06-03 Thread Irfan Niaz
Hi,   When and Why we will get following error?   Internal Server Error Internal Server Error     at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:518)       at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrateg y.java:71)     at

RE: Help for those trying to do document style

2002-06-03 Thread Jill Heck
hi, this looks very much like what i had to put together. one thing, in your wsdd file, make sure you add a style to the service tag: that way, when axis renders the wsdl, you don't get an RPC description. the other thing we encountered was dealing with the AxisFault so we could pass the exc

Running axis in two distinct webapps in tomcat.

2002-06-03 Thread St-Germain, Sylvain
Anyone has ever been sucesfull with this?    I lost the exception I get at tomcat startup, but it has to do with a configuration file... -- Sylvain This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended re

Axis web services for MySQL Connection.

2002-06-03 Thread Joe Harrison
I just setup Axis last week. My plan was to use Axis for database connectivity to MySQL. But I cannot find any examples of anyone using Axis with JDBC (or specifically the MM MySQL driver). I even bought several books, and one that is Axis-centric, but found no database examples…Am I on the

RE: question on migrating from Soap 2.2 to Axis

2002-06-03 Thread Edwards, Jeff
Hi, I am having problems getting this to work. I defined my service to be of 'application' scope and have my service impl class implementing the 'javax.xml.rpc.server.ServiceLifecycle' interface. The 'init' message is not being called after the service is started -- for the initial call or subs

Axis Sessions

2002-06-03 Thread Jill Heck
hi, i have an existing application that stores user session info. it is a standard web application. it allows me to monitor who is on, etc. i am simply gathering data from the HttpSession and HttpServletRequest objects for this. i have created a web service using axis over http. i am passing alo

Re: Running axis in two distinct webapps in tomcat.

2002-06-03 Thread Dennis Reil
Just look at the IBM WSTK. It configures a seperate Axis-Engine for every webapp. - Original Message - From: St-Germain, Sylvain To: Axis-User (E-mail) Sent: Monday, June 03, 2002 8:50 PM Subject: Running axis in two distinct webapps in tomcat. Anyone has ever

Re: Axis web services for MySQL Connection.

2002-06-03 Thread Alexi Polenur
It seems that your question is more JDBC specific then Axis specific. It is a lot of books on JDBC exists. You might want to look at JDBC tutorias on java.sun.com --- Joe Harrison <[EMAIL PROTECTED]> wrote: > I just setup Axis last week. My plan was to use Axis > for database > connectivity to M

BeanSerializer is missing xsi:tye

2002-06-03 Thread Kesav Kumar
BeanSerializer is not adding xsi:type if the value of the field is null.  If xsi:type is missing then the server is not able to deserialize.   I am using axis nightly drop of 05-31 on client side and soap toolkit which comes along with Websphere on the server end.  Does any one experience

Re: How do you pass an XML document between Axis and .Net Client?

2002-06-03 Thread Robert Evans
This all sounds good, and I have been able to pass XML documents back and forth as RPC and Document parameters. The problem is getting it to work with .NET. 1. I haven't found a way to access the Document parameters on the .NET side. If somebody has an example, that would be great. 2. I hav