Re: controling faultDetail in AxisFault

2003-09-10 Thread oleg shteynbuk
It is on the server side I assume, what I saw in the axis code, exceptions go into org.apache.axis.enterprise and org.apache.axis.EXCEPTIONS loggers most of the time it is DEBUG level and I believe that into org.apache.axis.enterprise logger there is an INFO level too, so if in log4j.properties

re:classpath madness

2003-09-10 Thread Haddad, William
Hey, that was it - I didn't have the javax.servlet package anywhere (except hiding in my web server jar) so when I moved it into the endorsed lib, Axis became happy!

controling faultDetail in AxisFault

2003-09-10 Thread Josh Emmons
I'm being overwhelmed by the huge stack traces that are put into the "faultDetail" field of AxisFault by default. My log file is 10x the size it should be with all those stack traces taking up space. Is there something I can put in my log4j.properties file to exclude this junk? There was a re

RE: Customizing RPC provider

2003-09-10 Thread Steve Pannier
You could try creating a custom provider that extends RPCProvider, then override makeNewServiceObject(). Your WSDD "handlerClass" parameter would have a value of "your.package.YourProviderName". I'm doing this, and it seems to work well. Regards. Steve Pannier > Perhaps my problem definition

classpath madness

2003-09-10 Thread Haddad, William
I am trying to run axis on a windows98 laptop, with j2RE1.4.1_03, and I had a quite a time getting past the activation.jar not found message on happyaxis.jsp - HOWEVER, I STILL have not gotten past the similar message at the top: "could not find a dependency of class org.apache.axis.transport.ht

RE: Customizing RPC provider

2003-09-10 Thread Sumant Padbidri
Perhaps my problem definition was not clear enough. I'm interested in customizing the *mechanism* with which an instance is created. As I mentioned below, I do not want an instance to be created using "class.newInstance()". I'd like to be able to, say, call "MyObjectFactory.getInstance(class)"

AXIS 1.1 Support for xsd:duration type

2003-09-10 Thread Tony Opatha
Does AXIS 1.1 support the xsd:duration type. If it does not when can we expect support for it? What kind of workaround option exists in support for xsd:duration? Thanks.        Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software

RE: Customizing RPC provider

2003-09-10 Thread Manchaiah, Girish (LNG-DAY)
It is not instantiated every time in AXIS. Ref: JavaProvider -Original Message- From: Sumant Padbidri [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 3:04 PM To: [EMAIL PROTECTED] Subject: RE: Customizing RPC provider I'm not sure how. Even with application scope RPCPr

RE: Customizing RPC provider

2003-09-10 Thread Sumant Padbidri
I'm not sure how. Even with application scope RPCProvider will still instantiate the object using "class.newInstance()". That's not the behavior I desire. I'd like to get the object instance from a pool and not create a new instance each time. _ Sumant Padbidri

RE: Customizing RPC provider

2003-09-10 Thread Manchaiah, Girish (LNG-DAY)
I believe scope="application" for your service in WSDD will suffice. -Original Message- From: Sumant Padbidri [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 12:57 PM To: [EMAIL PROTECTED] Subject: Customizing RPC provider Are there any hooks available to customize how

Customizing RPC provider

2003-09-10 Thread Sumant Padbidri
Are there any hooks available to customize how the RPC provider gets the target service object? Instead of simply instantiating an instance of the classname I'd like to retrieve an instance from an object pool or factory. Do I have to write a new provider for that? If so, how can I specify a cu

Re: Logging in Axis

2003-09-10 Thread oleg shteynbuk
actually Axis 1.1 shipped with log4j 1.2.8 but you can replace it with a different version. how far back you can go i am not sure, probably as far as commons logging support. there is nowhere in the Axis code referenses to log4j it will not pass unit testing, i have tried it, see my previous me

RE: Web Services and backwards compatibility

2003-09-10 Thread Cory Wilkerson
Florian, I actually posted a similar message to the group not too long ago -- you can likely find it in an archive -- as a matter of fact, here's the text: --- All, We've recently added a new member to an object being returned in our response payload. Basically we've ad

RE: Logging in Axis

2003-09-10 Thread Sriram . V
Hi , Thanks for the replies.. The problem right now we are facing is that my application(which uses Axis) uses log4j older version and axis uses log4j 1.2.8 And some of the other appplications in our production environment uses log4j older version. Is

Re: Logging in Axis

2003-09-10 Thread oleg shteynbuk
agree, it is better to specify org.apache.axis logger than rootLogger, the question was how to disable only axis logger. oleg Fontanel, Laurent wrote: I use: log4j.logger.org.apache.axis=WARN It only leaves severe error messages in the log. Laurent Fontanel Global Crossing -Original Mess

RE: Logging in Axis

2003-09-10 Thread Fontanel, Laurent
I use: log4j.logger.org.apache.axis=WARN It only leaves severe error messages in the log. Laurent Fontanel Global Crossing -Original Message- From: oleg shteynbuk [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 10:25 AM To: [EMAIL PROTECTED] Subject: Re: Logging in Axis

Re: Logging in Axis

2003-09-10 Thread oleg shteynbuk
[EMAIL PROTECTED] wrote: you can set in log4j.properties smth. like this log4j.rootLogger=OFF, A1 note that server logging and client logging use different log4j.properties files. actually Axis uses commons logging and log4j is the default logger for commons logging. Recently I have tried to ins

Custom deserialization

2003-09-10 Thread Manuel Mall
I recently started using Axis to develop a client. I had no prior WSDL/SOAP experience but just pointed the WSDL2Java tool the WSDL of the service I needed to write the client for, wrote a bit of application logic, and it all worked. All pretty simple and straight forward. My congratulations to the

Logging in Axis

2003-09-10 Thread Sriram . V
Hi , Axis 1.1 Final uses log4j 1.2.8 . Is there any way in which to disable axis to not do the logging.. Any help on this would be very useful.. Thanks in Advance Sriram

Re: AXIS via HTTPS

2003-09-10 Thread Martin Linhart
Thank you for your answer, I didn't know about "cacerts" file. Now it works. Thank you, once more, Martin Linhart Florian Lindauer wrote: Martin Linhart wrote: Via unsecured way it works fine, but via secured it cause this: javax.net.ssl.SSLHandshakeException: java.security.cert.Certific

Document/Wrapped Services

2003-09-10 Thread Sashith Kumar
Hi, Please some one send me the examples of Document /Wrapped services I am not getting idea, how they work and please let me know some sites where i can see samples of Wrapped and document based services of Axis Sashith k Mascot Systems Ltd. Chennai - India. & +91-44-230 1236-7-8 X 3328 Live

AxisServlet problem

2003-09-10 Thread Sergey Mironov
Hello! I am using Axis 1.1 Final. Page from AxisServlet with title "And now... Some Services" contains links to WSDL with internal network addresses. If I use proxy server I can not get WSDL. The same problem I have with link in generated WSDL. Best Regards, Serguey

Re: AXIS via HTTPS

2003-09-10 Thread Florian Lindauer
Martin Linhart wrote: Via unsecured way it works fine, but via secured it cause this: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Couldn't find trusted certificate > I don't know, where I can put certificate or if it must be trusted from some CA... Just like a b

Java2WSDL problem

2003-09-10 Thread Ajay Gondhiya
I am having a problem with Java2WSDL in Axis 1.0. The problem is when I declare an exception in my EJB interface and when Java2WSDL generates corresponding WSDL, in the binding information it does not generate "name" attribute for the SOAP fault. Because of this sproxy tool from .NET is not able

Re: AxisFault.

2003-09-10 Thread Ajay Gondhiya
Your exception can subclass from AxisFault and that way you can construct AxisFault with your faultDetail. AxisFault c'tor accepts org.w3c.dom.Element[] as fault details. Ajay [EMAIL PROTECTED] 09/10/2003 02:00 PM Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Su

AXIS via HTTPS

2003-09-10 Thread Martin Linhart
Hallo, I'm trying to connect over SSL to my web-service. I've configured Jetty/4.2.12, so now, when I type https://localhost:8443/axis, I get axis page. But now, I need to connect from my java aplication and it doesn't work. I have set server according to "Web Services Over SSL - HOW TO" and I'

FW: Which parser (DOM or SAX) does Axis makes use of?

2003-09-10 Thread Yuvraj Waswani
Hi, I am sending HUGE beans between my webservice and client, beans of the order of 200 fields and arrays of other nested beans. Although I am able to run the webservice by allocating a lot of memory to the JVM running my app server (Weblogic 6.1) , the performance is seriously affected and somet

AxisFault.

2003-09-10 Thread Sriram . V
Hi , In axis, Can i cutomise what is going in FaultDetails element for an AxisFault. The default is the exception StackTrace I need to override this to provide my ownmessage in the faultDetail element. Is this possible.. Can someone please let me know about this... Thanks

Which parser (DOM or SAX) does Axis makes use of?

2003-09-10 Thread Yuvraj Waswani
Hi,   I am sending HUGE beans between my webservice and client, beans of the order of 200 fields and arrays of other nested beans. Although I am able to run the webservice by allocating a lot of memory to the JVM running my app server (Weblogic 6.1) , the performance is seriously affected an

Re: Out of Memory

2003-09-10 Thread Soma Shekar
in the start up of the server provide this option and try it out -Xms64m -Xmx312m -XX:MaxPermSize=128m if your are using tomcat ,in catalina.bat set CATALINA_OPTS = -Xms64m -Xmx312m -XX:MaxPermSize=128m hope this will be helpfull Rgds Soma Shekar http://www.nextlinx.com "The future doesn't bel

SOAPHeader musUnderstand Attribute

2003-09-10 Thread Haug Thomas
Hi everbody, We have implemented a SOAP service using Axis 1.0 and Axis 1.1. This service added a custom sessionID to the SOAP header. The sessionID is added as an attribute to the header, because of some requirements of our client. Now we have switched from Axis 1.0 to Axis 1.1, but Axis 1.1 seem