Re: Experience in AdminClient for Axis service deployment

2003-10-30 Thread Stephen Gordon
Did you look at the samples which come with Axis?? They help a lot when trying to figure out where you're going wrong stephen ebm wrote: Dear Axis new users, I spent about 1 week in org.apache.axis.client.AdminClient to delpoy an axis service. Many unpredictable exceptions occurred. I looked for

Re: schema definition for DataHandler

2003-10-30 Thread kiran patchigolla
Well, I understand that. But what I am trying to find out is the xml schema definition, not the location of the java class file. If I try to validate my WSDL file which has a reference to the DataHandler, I get the following error: Error The qname reference to apachesoap:DataHandler made by th

hi everybody..i need little help please for deploying service using AdminClient

2003-10-30 Thread teoman teoman
hi everybodyl, when I tried to use AdminClient to deploy a service over SSL I got exception as follow: java org.apache.axis.client.AdminClient -lhttps://servername:8443 deploy.wsdd Processing file deploy.wsdd Exception:: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorExce

Experience in AdminClient for Axis service deployment

2003-10-30 Thread ebm
Dear Axis new users, I spent about 1 week in org.apache.axis.client.AdminClient to delpoy an axis service. Many unpredictable exceptions occurred. I looked for answer in axis user group but in vain. I tried to deploy it by modifying many setup and scripts for hundred times. Finally I succeed in

Returning attachments from a web service..

2003-10-30 Thread I-Sampige, Srinivas
I was able to successfully return a "DataHandler" from my web service method and process it on the client side. This is what I used in the WSDD - --- http://schemas.xmlsoap.org/soap/encoding/"; qname="ns2:DataHandler" seriali

Re: headers and body

2003-10-30 Thread Stephen Gordon
Here's what I did with the body - I used JDOM to convert from SAX to DOM: Imports: -SNIP import org.apache.axis.Message; import org.apache.axis.message.SOAPBodyElement; import org.apache.axis.message.SOAPEnvelope; import org.jdom.Document; import org.jdom.input.

hi everybody..i need little help please for deploying service using AdminClient over SSL

2003-10-30 Thread teoman teoman
hi all,   when I tried to use AdminClient to deploy a service over SSL I got exception as follow:   java org.apache.axis.client.AdminClient -lhttps://servername:8443 deploy.wsddProcessing file deploy.wsddException:: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No

headers and body

2003-10-30 Thread David . Hegg
I'm trying to write a web service that will take the incoming SOAP Header and Body elements and invoke another web service using the Header and Body elements I previously gathered. I looked for methods to add the header and body elements to the envelope, but didn't find anything useful. Do I have

Exception:: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found

2003-10-30 Thread teoman teoman
Hi  everybody,   I am running axis 1.1 and Tomcat 4.1.18,and I already made a vertificate.. and I am getting this exception when I try to deploy my service by using java org.apache.axis.client.AdminClient -lhttps://hostname:8443 deploy.wsdd   Exception:: javax.net.ssl.SSLHandshakeException sun.sec

Re: Very odd "No deserializer for java.lang.String" error

2003-10-30 Thread Stephen Gordon
You must be using an old version since there is no getDeserializerForClass method in DeserializationContextImpl in Axis 1.1. If possible you should upgrade. stephen Charles Kubicek wrote: Hi, I have a Web service method that takes two paramaters; a user defined type containing a few Strings,

Re: schema definition for DataHandler

2003-10-30 Thread Stephen Gordon
javax.activation.DataHandler I think It's in activation.jar Google for the API docs :) stephen kiran patchigolla wrote: I am trying to find the where is the DataHandler defined (schema, encoding etc) ? One of my API returns a data handler for returning attachments. The namespace for the DataHan

RE: Configure services for JMS listener

2003-10-30 Thread Ray Chun
Hi Thierry, 1. You'll need a connector and connection factory property map when you create the JMSTransport. There aren't too many options right now. Take a look at SimpleJMSListener (createConnectorMap, createCFMap) for an idea of what you can pass in. Recently, we enhanced the JMS transport so

WSS4J Impl moved back to http://sf.net/projects/wss4j/

2003-10-30 Thread Davanum Srinivas
FYI. Just ran across the IPR statement from RSA Security to the WSS group at OASIS(http://lists.oasis-open.org/archives/wss/200309/msg00066.html). Am pulling back sources from axis' CVS to ensure that we don't step on anyone's toes. code is now at sf.net (http://sf.net/projects/wss4j/). Am being p

output params (1 too few)

2003-10-30 Thread Christopher Blunck
i have a question that might be more appropriate for the dev team but i'll field it on the user list in case any of them read it or in case any other user has encountered this quirk before. i have a message defined with multiple parts. this message is used as my OUTPUT parameter. i'm using the

Urgent. Axis client handler help !

2003-10-30 Thread Timour_Mouratov
Hello All, I'm writing a client handler (implementation of javax.xml.rpc.handler.Handler) which modifies a soap message on request and response. The problem I've encountered is that axis creates a new instance of the handler on request and response, so I cannot share anything between the calls

Re: REQ: modular, small footprint, client side only SOAP Java impl? [Re: Apache.WebServices.Next?]

2003-10-30 Thread Dennis Sosnoski
Hi Alek, I've been working on something similar based on my JiBX data binding framework (http://www.jibx.org). The idea is to both reduce the size and increase the speed of operation over a generalized framework such as AXIS, since many applications don't appear to need the generality - they j

schema definition for DataHandler

2003-10-30 Thread kiran patchigolla
I am trying to find the where is the DataHandler defined (schema, encoding etc) ? One of my API returns a data handler for returning attachments. The namespace for the DataHandler in the generated WSDL is http://xml.apache.org/xml-soap, however that is not a schema location. How would a non-Ja

Very odd "No deserializer for java.lang.String" error

2003-10-30 Thread Charles Kubicek
Hi, I have a Web service method that takes two paramaters; a user defined type containing a few Strings, and a string. To begin with I got an error saying a deserializer could not be found for my user defined type, so I added the correct lines to my .wsdd file so a bean deserializer could be used

Re: which jar is SOAPException in ?

2003-10-30 Thread Henrik Vendelbo
fixed it. It was saaj.jar missing from classpath :( - Original Message - From: "Henrik Vendelbo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 30, 2003 3:25 PM Subject: which jar is SOAPException in ? > Where to I find javax.xml.soap.SOAPException > > apparently it

REQ: modular, small footprint, client side only SOAP Java impl? [Re: Apache.WebServices.Next?]

2003-10-30 Thread Aleksander Slominski
hi, replying to Dims' "Apache.WebServices.Next" post i would like to look on more fundamental question concerning Apache WS modularity: i am interested to find out if there is any interest in very modular, low footprint, Java SOAP implementation that is based around XML Infoset object model wi

Understanding issues with large envelopes?

2003-10-30 Thread Greg Hess
Hi All,   I am trying to understand why it is so inefficient to process large SOAP envelopes and the need to use attachments?   After reading a couple papers on the subject I have come to the understanding that the problem resides in parsing such large XML data structures. It seems str

How do I write a wsdd for this return type?

2003-10-30 Thread Søren Neigaard
I have a method that returns a MessageStatus object: import java.io.*; /** * Title: * Description: * Copyright: Copyright (c) 2003 * Company: Mobilethink * @author Søren Neigaard * @version 1.0 */ public class MessageStatus implements Serializable { private M

which jar is SOAPException in ?

2003-10-30 Thread Henrik Vendelbo
Where to I find javax.xml.soap.SOAPException apparently it wasn't found when I executed my classes in junit [junit] java.lang.NoClassDefFoundError: javax/xml/soap/SOAPException [junit] at org.apache.axis.encoding.DefaultTypeMappingImpl.(DefaultTypeMappingImp l.java:153)

some general questions

2003-10-30 Thread Alex Chatziparaskewas
Hi Everybody We have used web services using the axis implementation on one of our projects. Among other things the web services served as a bridge between a .NET client and a J2EE backend and is actually working quite well. But anyway, during the implementation of the project some 'problems' popp

Re: Apache.WebServices.Next?

2003-10-30 Thread Glen Daniels
I've modified the Wiki pages to account for a) the need for a general extensibility architecture before we start having too many extensions, and b) the fact that there are currently two WS-RM prototypes over Axis (probably three, counting Dug's! But we won't see that one :)). --Glen - Origin

All my deployed services has all objects from all deployed servic es?

2003-10-30 Thread Søren Neigaard
If i deploy a new service with a deployment descriptor like this: http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";> http://data.soap.otatacapi.mobilethink.dk"; languageSpecificType="java:dk.mobilethink.otatacapi.soap.data.Device"/> http

Version that contains fix for bug 17017?

2003-10-30 Thread "Geiß, Matthias"
Hello, I have come across the problem in WSDL2Java generation that unbound sequences in a sequence are not mapped correctly. I found a similar description in bug no 17017. I installed the binary package of version 1.1. Is there a stable version that contains a fix for this bug? Otherwise I would

Re: JAXM vs. SAAJ clarification

2003-10-30 Thread Stuart Barlow
Apologies for going back to this earlier thread, but... At the end you recommend AXIS over the Sun JWSDP but dont give any specific reasons. Do you have any reasons? Thanks, Stuart. Anne Thomas Manes wrote: JAXM vs. SAAJ clarificationJAXM 1.0 was the first Java API to support SOAP. It originally

Re: [newbie] how to set JSESSIONID cookie

2003-10-30 Thread Tore Halset
On Wed, 29 Oct 2003, Tore Halset wrote: > What about the client? How can I set the JSESSIONID cookie header on every > http-request that the axis client performs? Should this be done in another > way? Appending ;jsessionid= to the service-url does work, but is that the way it should be done? -