Re: Wrapper/lit, Messaging Interop with .NET

2005-02-17 Thread Paul Callahan
You can certainly use message style... .NET can work with your XML Schema-defined message parts. A good way to test interop (from the message part standpoint) is to use the xsd.exe commandline utility in .NET to chomp your XSD file you have created for your Axis message style service. This will

Re: Minimal production environment for Axis application

2005-02-16 Thread Paul Callahan
you could look at Jetty--little more lightweight than Tomcat. -pc On Wed, 16 Feb 2005 10:21:28 +0300, Eugene Prokopiev [EMAIL PROTECTED] wrote: Hi, I need minimal production environment for Axis application. For org.apache.axis.transport.http.SimpleAxisServer I read in javadoc: This is not

Re: Axis workflow based services

2005-02-10 Thread Paul Callahan
You might want to take a look at Apache Beehive... It is more oriented toward service-based presentation layers. http://incubator.apache.org/beehive/ -pc On Wed, 9 Feb 2005 14:06:36 -0800 (PST), Abdullah Jibaly [EMAIL PROTECTED] wrote: Hi all, Is there a recommended way to implement

Re: calling MessageService sample with .NET client

2005-02-10 Thread Paul Callahan
Praveen, This really depends on how you have structured your wsdl for the service. If you are using message style services, then in most cases, you are providing your own XML Schema to define the types that are passed via the method you expose as a message-based service. Whether you use JAXB,

Re: web service hanging

2005-02-08 Thread Paul Callahan
you might want to check your console or log to see if Tomcat/axis is giving you any useful messages... -pc On Tue, 8 Feb 2005 14:14:34 -0400, Derek Lohnes [EMAIL PROTECTED] wrote: My apache web service is timing out when I try to deploy it in tomcat on linux.

Re: Standalone Java web services server

2005-01-21 Thread Paul Callahan
It might be worth taking a look at Jetty. It has a much smaller footprint and is more embeddable than Tomcat. -pc On Thu, 20 Jan 2005 20:11:58 -0500, Douglas Kunzman [EMAIL PROTECTED] wrote: Hi, I am looking for a java based web services server that does not need tomcat or an http server

Re: Memory Leap on server side

2005-01-18 Thread Paul Callahan
Do you have multiple applications running on that instance of Tomcat, and if so, are you deploying the WAR files frequently? Like I mentioned last week, there is a mem leak in Tomcat when deploying over and over that will cause OutOfMemoryError's... Otherwise, is it happening after the

Re: AXIS and JAXB

2005-01-17 Thread Paul Callahan
know about the performance comparing Castor. BR Senaka --- Paul Callahan [EMAIL PROTECTED] wrote: Hi Roger, There are a couple of ways that you can integrate the two (or Axis and any XML serializing mechanism for that matter). One way is discussed in this article by IBM

Re: AXIS and JAXB

2005-01-14 Thread Paul Callahan
Hi Roger, There are a couple of ways that you can integrate the two (or Axis and any XML serializing mechanism for that matter). One way is discussed in this article by IBM... They are using Castor, but the underlying theme is the same.

Re: document style webservice

2005-01-14 Thread Paul Callahan
Please see my response to a similar thread this morning... Hope that helps. -pc On Fri, 14 Jan 2005 09:25:44 +0100, Harm de Laat [EMAIL PROTECTED] wrote: Hi all, I am trying to develop a document based webservice using Apache Axis. Currently I have written my schema files (xsd) and my

Re: Axis running out of Memory?

2005-01-12 Thread Paul Callahan
I'm sure there is probably better doco somewhere on this, but I generally experience this from redeploying a resource in Tomcat several times (thru the manager) without restarting. I believe that when you undeploy, the memory is not dealloc'd--so hence the memory leak. Day to day, I redeploy

Re: XSD2Java utility?

2004-11-23 Thread Paul Callahan
Leonard, For those tasks, I would recommend XMLBeans, JAXB, or Castor. Those all provide XML--Java serialization/deserialization. Any of these can be used with Axis to handle message style web service requests/responses. -pc On Mon, 22 Nov 2004 16:02:29 -0800 (PST), Leonard Harris [EMAIL

Re: Axis and JAXB

2004-11-19 Thread Paul Callahan
I would seriously take a look at XMLBeans. Full support of XML Schema. Serialization via either XMLBeans or JAXB would be supported by using the message style services in Axis. See this doc for details: http://ws.apache.org/axis/java/user-guide.html#PublishingServices On Fri, 19 Nov 2004

Re: Initialising Axis

2004-11-19 Thread Paul Callahan
You can implement the following interface that will be called when the context containing Axis is loaded: javax.servlet.ServletContextListener On Fri, 19 Nov 2004 12:30:01 +, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a way to run some initialisation code once, when Axis

Re: Signal to noise ratio in Soap is very high

2004-11-16 Thread Paul Callahan
I second that... And would just add that you might want to think about when your application is just too 'chatty' for SOAP... -pc On Tue, 16 Nov 2004 08:48:30 -0900, Elaine Nance [EMAIL PROTECTED] wrote: SOAP is not designed to create compact dataflows. It is designed for interoperability

Re: using axis from IP address as opposed to domain name

2004-10-13 Thread Paul Callahan
a good rule of thumb might be to change that port num. i.e.--7001 is default for weblogic and 8080 for tomcat... never hurts to conceal any details that you dont have to give out... -pc On Wed, 13 Oct 2004 10:25:50 +0100, Suzy Fynes [EMAIL PROTECTED] wrote: Hey, Can

Re: how to set the usename and passwork in C#

2004-10-07 Thread Paul Callahan
You should look in the generated proxy for the service in VS.NET... There you can override the GetWebRequest method, and use request.Headers.Add method in order to add headers before returning the request. -pc On Thu, 7 Oct 2004 12:52:44 +0800 (CST), ffd3ffc2

Re: WS call another WS

2004-09-20 Thread Paul Callahan
i have a webservice calling another webservice, and my client wsdd is deployed within web-inf/classes while my server config wsdd is in /web-inf. hope that helps. -pc - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Mon, 20 Sep 2004 14:06:45 +0100 Subject: Re: WS

Re: WSDL2Java issue

2004-09-14 Thread Paul Callahan
whats in SomeXObject? what is being generated--in addition to what should be there? - Original Message - From: Fady Kaddoum [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 09:15:56 +0200 Subject: WSDL2Java issue To: [EMAIL PROTECTED] Hello everybody! I 've developped some services that

Re: AW: Axis webservices and Visual Basic

2004-09-08 Thread Paul Callahan
Peter, You can also just use the WinHttpRequest to send and receive raw SOAP. I use this with a doc/literal style service I developed in Axis 1.1. Here is some sample code: Private Function SendRequest() As IXMLDOMNodeList Dim httpReq As New WinHttpRequest Dim responseDoc As New

Re: Jibx, jaxb and webservices question

2004-09-08 Thread Paul Callahan
This sounds like a good candidate for XSL. If you were to use a message-style service, you could obtain the XML DOM directly, do the transformation via XSL to send to the remote system. To return, just transform back with XSL again and return the resulting Dom... might be worth thinking

Re: changing HTTP header values from Axis

2004-09-08 Thread Paul Callahan
Take a look at the generated service factory... There should be a getService method that takes a string--which will give you the ability to send to a different endpoint. -pc On Wed, 8 Sep 2004 09:25:35 -0700, Samir Shaikh [EMAIL PROTECTED] wrote: Hi, I have a (axis generated WSDL2JAVA)

Re: Axis with .Net WebService

2004-08-24 Thread Paul Callahan
does your wsdl specify a default namespace? -pc On Tue, 24 Aug 2004 10:51:47 -0400, Uday Kamath [EMAIL PROTECTED] wrote: Hi This may have been repeated many times on the list, but I couldn't search for this in the archives. If anyone has clue please respond 1. I use Axis 1.1 as a client

Re: Axis with .Net WebService

2004-08-24 Thread Paul Callahan
:[EMAIL PROTECTED] Sent: Tuesday, August 24, 2004 11:58 AM To: [EMAIL PROTECTED]; Paul Callahan Subject: RE: Axis with .Net WebService Thanks for responding. The wsdl is as shown below, there is no default namespace from what I understand..Since this is external web service hosted

Re: Handler initialisation as part of server start-up?

2004-08-18 Thread Paul Callahan
it might be useful to look at implementing ServletContextListener in order to capture the startup of your context. -pc On Wed, 18 Aug 2004 18:58:30 +0100, S.E.Parkin [EMAIL PROTECTED] wrote: Hi, With the help of this mailing list I've found out how to reduce the need to re-initialise

Re: RAW Response

2004-08-17 Thread Paul Callahan
ru using message style services? On Mon, 16 Aug 2004 08:50:29 -0700 (PDT), Markus Benne [EMAIL PROTECTED] wrote: I have no trouble getting the RAW request from the client (through SOAPEnvelope and SOAPBody), but I'm having difficulty supplying a RAW response. I have the response XML in a

Re: axis 1.1 and jaxb

2004-08-12 Thread Paul Callahan
i'm trying to do right now, has not been succesfull yet. Paul, what are these 4 method signatures that Axis allows.? Are you referring to the message service style? Regards, Robin -Original Message- From: Paul Callahan [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11

Re: Axis getXMLReader error

2004-08-12 Thread Paul Callahan
are you sure you have the correct version of xercesImpl.jar? or is it being overshadowed by WSAD4's version--if that is what it is indeed using... -pc On Thu, 12 Aug 2004 07:04:34 -0500, Dave LaCroix [EMAIL PROTECTED] wrote: I ran the Java2WSDL and WSDL2Java routines to build server side

Re: REPOST Re: Why there is restriction for Method Signatures in MESSAGE Style?

2004-08-11 Thread Paul Callahan
what is in the string you are returning? a response code, or a document? -pc - Original Message - From: Dhanush Gopinath [EMAIL PROTECTED] Date: Wed, 11 Aug 2004 10:33:34 +0530 Subject: REPOST Re: Why there is restriction for Method Signatures in MESSAGE Style? To: [EMAIL

Re: axis 1.1 and jaxb

2004-08-11 Thread Paul Callahan
Hi, An alternative to creating a custom serializer is to use the doc/literal style service and use one of the 4 method signatures that Axis allows. You can inspect the incoming XML to determine what kind of message you have received. From there, use the utilities provided by the JAXB api to

Re: Javac not found

2004-08-09 Thread Paul Callahan
Philippe, Pls check to see that you are using a full Java SDK and not just the JRE... JRE won't compile those JSP's. -pc On Mon, 9 Aug 2004 14:31:59 -0500 , Philippe Cornut (QC/EMC) [EMAIL PROTECTED] wrote: sorry i meant global variables not classpath -Original Message- From:

Re: ServiceLocator on Linux

2004-08-05 Thread Paul Callahan
it might be useful to build axis from source--insert some timings around the instance method on the service locator class that is generated by wsdl2java. particularly, the meat of the work looks like it is done in the soapbindingstub, so perhaps try to put some timings/log statements in there?