Re: href inside response??

2003-08-19 Thread Denero Watz
So are you saying that these hrefs will not come in the case of document style encoding??Sanjay Krishnamurthi <[EMAIL PROTECTED]> wrote: There is an element in your response (i think it isccref) which has id of ccid0. Other elements aresimply referring/pointing to it. Whenever you have aservice tha

Plz somebody help(regarding to jinsight)

2003-08-19 Thread Jeyakumaran.C
Hi all, This is not related with this mailing list any how I hope u people may help me a bit. I am using jinsght2.0 for the performance analysis for an axis project(using j2sdk1.4.0). but jinsight gives an error   java.lang.NoClassDefFoundError: java/security/PrivilegedAction    at org.a

Is this a wrapped service ?

2003-08-19 Thread Dimuthu Leelarathne
Hi all,   Thank you very much for your help Anne.   I have written a web service in wrapped style which takes in an integer and return an integer ( for now). I managed to exclude the "soapenv:encodingStyle=http://schemas.xmlsoap.org/soap/encoding/ " but still I'm unable to remove the xsi:typ

HTTPS Server

2003-08-19 Thread Justin Avaya
Hi, I am running a web service on our server [Tomcat]. I can view my interface by doing http://myserver.com/service/Bean1?wsdl I can also view by doing https://myserver.com/service/Bean1?wsdl . The interface changes accordingly to http and https,   Question: Is there to way to allow the requ

RE: Date serializer

2003-08-19 Thread Whitney Hunter
According to the XML Schema 1.1 spec, the date datatype does not contain a time value: 3.2.9.1 Lexical representation The lexical representation for date is the reduced (right truncated) lexical representation for dateTime: CCYY-MM-DD. No left truncation is allowed. An optional following time zon

Re: Date serializer

2003-08-19 Thread Jeyakumaran.C
hi, As far as I concern, the formate u given for date is correct and axis should accept it.So the problem may be in yr request or somewhere else.What the exact fault messge u receive?. Axis uses calender serializer and deserializer enough comprehensive to yr date format. Regards, Jeyakumara.C -

Re: Can methods in a service be overloaded

2003-08-19 Thread hemapani
Hi Jim ,Jeff yap i am quite agree that it better to keep away from overloaded methods ... I have wirte overloaded methods and send them wrong requests ... e.g. send three parameters to method expect two vise-versa .. Some time they work ... (when they shuld fail..) depend on the service.. If u r

Date serializer

2003-08-19 Thread Whitney Hunter
Hi all, I have an XML schema type that looks like this: When I populate the "day" and "location" attributes and them submit it to my service, tcpmonitor is showing: This is foulin

best practise and exceptions

2003-08-19 Thread Stuart Barlow
If I have a Java interface that I am going to be turning into a web service (with AXIS and the Java2WSDL and WSDL2Java tools). Should I define a hierarchy of exception classes that could be thrown from the server. e.g. Exception <--- MyServiceException MyServiceException < InvalidOperationExcep

Re: href inside response??

2003-08-19 Thread Sanjay Krishnamurthi
There is an element in your response (i think it is ccref) which has id of ccid0. Other elements are simply referring/pointing to it. Whenever you have a service that uses SOAP encoding, you are likely to see hrefs. You can look into the SOAP spec for more details. Sanjay --- Denero Watz <

Re: Can methods in a service be overloaded

2003-08-19 Thread Jeff Greif
Also, overloaded methods are an area where either the server or client software are liable to do a bad job. It's my impression that if you're operating in a tightly controlled environment where you can test the client varieties and server code (and not expect random users to be invoking your servi

Basic Autoentification problem

2003-08-19 Thread Thorsten Mauch
Hi I use axis deployed uner Jboss. I put the users list under the WEB-INF directory and i tried /jboss/bin as well. When I call the service I got always: Need to specify a user for authorization! AxisFault faultCode: {http://xml.apache.org/axis/}Server.NoUser faultSubcode: faultString: Need t

Re: Can methods in a service be overloaded

2003-08-19 Thread Jim Murphy
You can do that but the WSDL generated will not conform to the WS-I Basic Profile[1], specifically R2304. Regards Jim Murphy Mindreef, Inc. [1] http://www.ws-i.org/ Guofeng Zhang wrote: > the service I published has the following operations: >void beat() ; >voi

Date serializer

2003-08-19 Thread Whitney Hunter
Hi all, I have an XML schema type that looks like this: When I populate the "day" and "location" attributes and them submit it to my service, tcpmonitor is showing: This is fouling up my deseri

Unable to create JavaBean of type . Missing default constructor? Error was: java.lang.InstantiationException

2003-08-19 Thread karol . sibielak
I have a class "DataObjectConcrete" that extends from a base abstract class "DataObjectAbstract". My Axis-client calls a method which returns class "DataObjectConcrete". The method is called and processed correctly, but during the response deserialization Axis tries to instantiate the abstract cl

Re: AdminClient throws java.lang.reflect.InvocationTargetExceptionwhile deploy

2003-08-19 Thread Stuart Barlow
Did you get an answer to this issue? I have a similar problem when an exception is thrown from my service. When I attempt to get the source exception from the InvocationTargetException it is null. Which is strange as I thought that InvocationTargetException should have a root cause exception. Kart

Exceptions mapped to AxisFault using WSDL to Java

2003-08-19 Thread Stuart Barlow
When I have an interface and use Java2WSDL followed by WSDL2Java I end up with AXIS types in my interface. This means that AXIS types are now polluting exposed in the client. Exceptions are derived from AxisFault So I have to provide another wrapper around the client interface for client apps to us

Re: href inside response??

2003-08-19 Thread Denero Watz
I got an error while sending it last time. So resending it. dwDenero Watz <[EMAIL PROTECTED]> wrote: I am trying to invoke a public web service http://live.capescience.com/wsdl/AirportWeather.wsdl. The method I am invoking is getSummary. It returns a complex type, each field is of string type. B

Can methods in a service be overloaded

2003-08-19 Thread Guofeng Zhang
the service I published has the following operations: void beat() ; void beat( long b ) ; are they correct?

Re: Help needed serializing a bean.

2003-08-19 Thread Steve Maring
I don't think that you can use the SerializationContext independant of a SOAP MessageContext.  The default JAX-RPC type mapping of complex objects, as implemented by the BeanSerializer requires the ability to have the context call back to the registry to find other serializers (for primitives for e

href inside response??

2003-08-19 Thread Denero Watz
I am trying to invoke a public web service http://live.capescience.com/wsdl/AirportWeather.wsdl. The method I am invoking is getSummary. It returns a complex type, each field is of string type. But for some invalid inputs to this method, I saw it returns the o/p like below. I don't understnd what

href inside response??

2003-08-19 Thread Denero Watz
I am trying to invoke a public web service http://live.capescience.com/wsdl/AirportWeather.wsdl. The method I am invoking is getSummary. It returns a complex type, each field is of string type. But for some invalid inputs to this method, I saw it returns the o/p like below. I don't understnd what t

Client Side deployment

2003-08-19 Thread Gupta, Ankit
Hi group, I have a web service and I want the clients to work with stubs. I wish to know whether it is possible to deploy client side handlers working with java stubs. Using The "org.apache.axis.client.Service" class it is possible to do so but is it possible with java stubs. Any leads will be g

TR: Urgent : fatal error when deploying web service on Axis

2003-08-19 Thread BECHU Thierry - REN ( [EMAIL PROTECTED] )
My apologies if you receive this mail twice, because I've had a problem on the first sending. Hi all, I am trying to deploy a web service on Axis 1.1 with Tomcat 4.1.10 (Apache 2.0.39). When I enter the command "j

Session data destory

2003-08-19 Thread Alexandru Simion
Hello everyone, I'm using setMaintainSession(true) into a axis service client. And, I want to know how can I destroy all the data maintained on the session when session maintaining is no longer needed. It seems that setMaintainSession(false) is not working as I expected. The memory is not beeing

AW: SOAPMonitor

2003-08-19 Thread Thomas Bayer
look at the FAQ: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SoapMonitor > -Ursprüngliche Nachricht- > Von: Vaidya, Raghavendra (CORP, GEITC) > [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 19. August 2003 12:16 > An: [EMAIL PROTECTED] > Betreff: SOAPMonitor > > > Hi,

Urgent : fatal error when deploying web service on Axis

2003-08-19 Thread BECHU Thierry - REN ( [EMAIL PROTECTED] )
Hi all,I am trying to deploy a web service on Axis 1.1 with Tomcat 4.1.10 (Apache 2.0.39).When I enter the command "java org.apache.axis.client.AdminClient -lhttp://myserver/axis/services/AdminService RefOForXml_deploy.wsdd", I get the following error.     Processing file RefOFor

SOAPMonitor

2003-08-19 Thread Vaidya, Raghavendra (CORP, GEITC)
Hi, I am not able to view the SOAPMonitor in browser...the Java console gives following error.. Is there any set up that needs to be doneto get it working...the index page says SOAPMonitor [disabled by default for security reasons] load: class SOAPMonitorApplet.class not found. java.lan

RE: Axis MessageContext to the WebService

2003-08-19 Thread Robert Lowe
I think it's mainly used in multithreaded containers such as Axis, to give components access to context information without intruding into the component model. See the Javadoc at: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ThreadLocal.html - Rob -Original Message- From: Jakob Sko