Need help in installing AXIS on Oracle Application Server

2003-07-01 Thread SUNILK_CHAMARTI
Hi, Does anyone has documentation\information for installing AXIS for Oracle application server? Regards, Sunil

Re: help required for attachment using ejb as webservice

2003-07-01 Thread Toshiyuki Kimura
Hi Jacek, (B (B Yes, you have a mistake about serializer's configuration. (BIf you're using AXIS 1.1 final, please try again with no (BtypeMapping on your wsdd. (i.e. You should re-deploy your (Bservice, after you drop the typeMapping node on your wsdd.) (B (B In case of any exceptions or

Re: Axis vs Glue

2003-07-01 Thread Parames
Well, quite true. Anne, You mentioned that Glue as".Net for java" Why any advance features or way gkue works differs from AXIS to enhance better to .netclinet.. IF you dont mind can i get more info on it? Is it means you are suggesting GLue for .Net client with java webservices.?? Thanks ---

RE: About Message Style Service(new bie)

2003-07-01 Thread Sachin
Hi, I have not deploy example on axis Message Service but it is generating wsdl for Element[] method But when i am trying org.dom4j.Document it is not working Well i am thinking of writing *.wsdd file for it instead of using java2wsdl. -Original Message- From: Balaji Thirugnanam [mailt

How to create an EAR file for deploying a web service to Axis

2003-07-01 Thread Carter, John G
Does anyone know how to create an EAR file that may be used to deploy a web service to Axis in Tomcat? Is it even possible? I thought I remember someone in this group saying that they included Axis in the EAR file (or was it WAR file?) they created but that seems like overkill. If there is a

Re: Problem invoking Document/literal with XML Document as parameter

2003-07-01 Thread Junaid . Bhatra
I'm not sure if anyone replied to this email or not but anyways >From the Javadoc of Call.invoke(Object[] params) : "For Messaging (ie. non-RPC) the params argument should be an array of SOAPBodyElements. All of them need to be SOAPBodyElements, if any of them are not this method will d

Re: Problems serializing NonNegativeInteger

2003-07-01 Thread Davanum Srinivas
WellTurns out that it is a JDK Bug (http://developer.java.sun.com/developer/bugParade/bugs/4378370.html). Any suggestions? -- dims --- Davanum Srinivas <[EMAIL PROTECTED]> wrote: > I see it in JDK13. Please open a bug report (http://nagoya.apache.org/bugzilla) > > Thanks, > dims > > --- "Ba

Re: Problems serializing NonNegativeInteger

2003-07-01 Thread Davanum Srinivas
I see it in JDK13. Please open a bug report (http://nagoya.apache.org/bugzilla) Thanks, dims --- "Baker, Michael R (Gp98)" <[EMAIL PROTECTED]> wrote: > Hi. I am working with Axis and I am running into a problem serializing > NonNegativeInteger. I > looked at the list of open bugs, but I did no

Problems serializing NonNegativeInteger

2003-07-01 Thread Baker, Michael R (Gp98)
Hi. I am working with Axis and I am running into a problem serializing NonNegativeInteger. I looked at the list of open bugs, but I did not see this listed. I ran a simple test against the latest CVS source and I got the following stack trace: Exception in thread "main" java.lang.NullPointerE

using wsdl2java and replacing http transport?

2003-07-01 Thread Sterling, Brian
I would like to use wsdl2java to generate stubs from a wsdl file because the service I am using will be changing the wsdl over time and I don't want to keep hand-coding all the necessary changes. However, I would also like to replace the built-in http transport with my own (so I can log with my ow

RE: Creating message-style services

2003-07-01 Thread Anjaneya Swamy Varada
Sachin, I've attached the e-mails I've received from Davanum Srinivas regarding this. -Swamy -Original Message- From: Sachin [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 11:56 PM To: Axis userList (E-mail) Subject: Creating message-style services Hi All, well i have p

how to update correctly from 1_1RC to 1_1final?

2003-07-01 Thread remko de knikker
I have a running service on Axis 1_1RC2 (which has a Document method(Document doc) signature, in doc/literal message-style ws ) in order to test out if the new version Axis_1_1final works 'purer' with the added org.apache.axis.encoding.ser.DocumentSerializer instead of having to use the ElementSe

Re: Axis vs Glue

2003-07-01 Thread Anne Thomas Manes
btw -- I don't want to be accused of giving GLUE unfair endorsement. If asked, I will give equally ringing endorsements of WASP, Cape Clear, and XMLBus. Each product has its niche specialty and is a leader in some capacity. And all of them have easier to use tools than Axis, but GLUE is the

Configuring a web service object

2003-07-01 Thread Shellman, Joel
I set up a web service object in Axis: MyService (application scope). It accesses various other modules in the application. I want to pass it instances of the objects it should interact with. How can I do this? 1) Is there a way to control the instantiation of MyService so I can pass it at that ti

RE: Axis vs Glue

2003-07-01 Thread Stephen Eaton
I switched from glue to axis as I could not get phpsoap working with glue. -Original Message-From: Jan Agermose [mailto:[EMAIL PROTECTED]Sent: Tuesday, 1 July 2003 4:39 AMTo: [EMAIL PROTECTED]Subject: Axis vs Glue Does anyone have any pros/cons on the two? If this is a

RE: How can I tell the server not to send response with "Transfer-Encoding: chunked"

2003-07-01 Thread Chandra Talluri
Went through the code and found it is not possible to send without "Transfer-Encoding: chunked" it is because the sendResponse() of AxisServlet never sets the Content-Length of the response. So the servlet engine will do chunking if content-length is not specified. -Chandra -Original Message

Re: About Message Style Service(new bie)

2003-07-01 Thread remko de knikker
I saw the new version has the DocumentSerializer added, try again... r Jim Poulsen wrote: A guy just responded to your post on the newsgroup. It appears that he also is only able to make the public Element[] evaluate(Element[]) type method work in the axis framework. There is also a very good ex

Re: Creating message-style services -> example

2003-07-01 Thread remko de knikker
In addition I have to notice that in the latest release a DocumentSerializer is added, I need to upgrade! r remko de knikker wrote: I had two difficulties when I was trying to create a message style service with other signatures than the examples: - to create a correct wsdd for me

RE: Concurrent usage of the Call object ?

2003-07-01 Thread Jackson, Jen (CCI-Atlanta)
I'm new to axis myself, but I have been investigating some memory leak problems. Through looking for that, I found out that the Call object contains everything, for lack of a better word, to send and receive the data, so if you want concurrency, you have to create seperate call objects for that

Re: Creating message-style services -> example

2003-07-01 Thread remko de knikker
I had two difficulties when I was trying to create a message style service with other signatures than the examples: - to create a correct wsdd for message-style services - to create a client The Axis call.invoke method always receives an Object type as response no matter what the return type

RE: Creating message-style services

2003-07-01 Thread Makhijani, Ashish
This how we implemented message style service : Service code : import org.w3c.dom.*; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; public Element[] validate(Element [] input) throws ValidationException { if(input == null || input.length == 0) {

RE: About Message Style Service(new bie)

2003-07-01 Thread Balaji Thirugnanam
Seems like the information on the link is misleading, He uses a server side method that takes a Vector, whereas there is no Vector based API for the AXIS-MESSAGE service, -B -Original Message- From: Jim Poulsen [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 9:48 AM To: '[EMAIL PRO

RE: About Message Style Service(new bie)

2003-07-01 Thread Jim Poulsen
A guy just responded to your post on the newsgroup. It appears that he also is only able to make the public Element[] evaluate(Element[]) type method work in the axis framework. There is also a very good example site for what you are trying to do: http://cass123.ast.cam.ac.uk/documents/AxisMsgPa

RE: Axis vs Glue

2003-07-01 Thread George Jagodzinski
I have been playing around with docsoapxdk. The Interoperability and performance look promising. It is definitely worth a look. The xgen tool is very helpful. http://www.commerceone.com/developers/docsoapxdk/ --george

Problem invoking Document/literal with XML Document as parameter

2003-07-01 Thread ofeus
Hi, i am a newbie to axis and have a problem with calling a soap web service with a prebuild XML Document as a parameter and hope someone can give me a hint. The service i implemented uses message style document/literal and expects a XML Document as parameter. The service was tested and works fi

About Message Style Service(new bie)

2003-07-01 Thread Sachin
Hi, Is it possible to deploy following Class as MessageStyle Service or I have to user import org.w3c.dom.Document for it.Please help me. Class: import org.dom4j.Document; public class Engine { public Document evaluate(Document document) { return(document); } } A

Namesopace added of return element in Axis 1.1?

2003-07-01 Thread Renee Tenheaff
I have upgraded from Axis 1.1RC2 to 1.1 Final, but our client application does not work anymore. Axis 1.1RC returned the following response: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>

Re: Axis vs Glue

2003-07-01 Thread Anne Thomas Manes
Absolutely If that were the case, Axis would be ahead of the independents rather than the other way around. - Original Message - From: "Davanum Srinivas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 01, 2003 9:10 AM Subject: Re: Axis vs Glue > Anne, > > Wish all Ax

RE: Getting value from http header field from handler

2003-07-01 Thread Laenzlinger, Christof
Title: RE: Getting value from http header field from handler Hi John, The Axis http transport listener servlet (org.apache.axis.transport.http.AxisServlet) puts some of the http headers (e.g. the "Authorization" header into the MessageContext These headers can be looked up from within Handl

Apache Soap to Axis communication

2003-07-01 Thread Praveen Peddi
My server and client are right now in apache. We are planning to migrate to apche axis. Changing the server is easy but there are multiuple client and due to the time constraints we can't migrate to apache axis on the client side.   My question is, can I keep my client as it is (in Apache S

Re: Axis vs Glue

2003-07-01 Thread Davanum Srinivas
Anne, Wish all Axis committers were on this full-time...Right? -- dims --- Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > I didn't say that Axis is not as good as GLUE, and I didn't mean to imply it. I only > said that > GLUE is easy to use and that the standard edition is free. (facts, not com

Re: Object array And Document literal -

2003-07-01 Thread Balaji D L
Thanks Anne, Will do it right now!. Regards Balaji --- Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > Santosh, > > It shouldn't be Balaji's responsibility to generate > the elements rather than > soap-enc:Array -- this is a problem with java2wsdl. > As Balaji says, the > generated WSDL is still

Re: Axis vs Glue

2003-07-01 Thread Anne Thomas Manes
I didn't say that Axis is not as good as GLUE, and I didn't mean to imply it. I only said that GLUE is easy to use and that the standard edition is free. (facts, not comparisons)   Obviously -- based on the amount of time I spend answering questions on this list -- I am a big supporter of Axi

RE: Creating message-style services

2003-07-01 Thread Balaji Thirugnanam
Title: RE: Creating message-style services try this link,   http://cass123.ast.cam.ac.uk/documents/AxisMsgParam.html -Original Message-From: Volkmann, Mark [mailto:[EMAIL PROTECTED]Sent: Tuesday, July 01, 2003 9:00 AMTo: '[EMAIL PROTECTED]'Subject: RE: Creating message-style

RE: Creating message-style services

2003-07-01 Thread Volkmann, Mark
Title: RE: Creating message-style services I think the reason you've only seen examples of using the signature public Element [] method(Element[] bodies) is that the other three supposedly supported signatures don't work. I've tried to use them without success. I too would like to see work

RE: doget in Message Style service

2003-07-01 Thread John Smith
I would like to avoid anything to do with servlet filtering , since that would require modifying the web.xml , which i don't want to do. I want to dyanmically deploy in axis. modifying only the .wsdd file , not web.xml. How can handlers trap doget Methods.? John From: [EMAIL PROTECTED] Repl

Re: Object array And Document literal -

2003-07-01 Thread Anne Thomas Manes
Santosh, It shouldn't be Balaji's responsibility to generate the elements rather than soap-enc:Array -- this is a problem with java2wsdl. As Balaji says, the generated WSDL is still using still using soap-enc:array. If you specify doc/literal, java2wsdl should generate an element definition to rep

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Srinath Perera
Hello Anne I do not know special name It is suppose to be the C++ implementation for axis in repository it xml-axis/c/bin/linux/server ect... (end linux /server not relevent here). regards Srinath On Tue, 2003-07-01 at 18:11, Anne Thomas Manes wrote: > What's the name of the C++ project? >

RE: Object array And Document literal -

2003-07-01 Thread Balaji D L
Hi Santhosh, Thanks for replying. Sorry for my mis-formed question. Actaully I'm trying to return an element containing complextypes(unbounded). If I deploy them with "RPC" style then I can able to consume it from java and .NET, but if I deploy them with "document/literal" stlye, I'm getting the e

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Anne Thomas Manes
What's the name of the C++ project? - Original Message - From: "Srinath Perera" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 01, 2003 1:55 PM Subject: Re: Application/Web Servers supported by AXIS 1.1? > Hello Anne > yes you are right if we say Axis 1.1 and java vers

Re: SOAP intermediatries - explanation

2003-07-01 Thread Anne Thomas Manes
A SOAP intermediary is a SOAP node that is both a SOAP server and a SOAP client. It is a SOAP node that sits in the middle of a SOAP message route -- somewhere between the client SOAP node and the ultimate receiver SOAP node. A SOAP intermediary intercepts the SOAP message, processes the message, p

RE: doget in Message Style service

2003-07-01 Thread santosh . joshi
John, Try Servlet filtering (delivered post Servlet 2.3), otherwise you also have the option of AXIS handlers (which can be pre or post handlers), but Servlet filters will give you complete HTTP details as well. Hope this helps, Regards, Santosh -Original Message- From: John Smith [mai

RE: accessing .net webservices which needs client authentication

2003-07-01 Thread Kellogg, Richard
Please take a look at:   http://nagoya.apache.org/wiki/apachewiki.cgi?WebServicesProjectPages/WebServicesProjectProposals   for more information. -Original Message-From: Tony Opatha [mailto:[EMAIL PROTECTED]Sent: Monday, June 30, 2003 5:16 PMTo: [EMAIL PROTECTED]Subject: RE: ac

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Srinath Perera
Hello Anne yes you are right if we say Axis 1.1 and java version. the C++ code is underdevelopment and is in apache repositary. **It is still usder developmet** but it can be add to the Apache http server or IIS as a module. (for Apache already done and IIS same thing should be possible.) regar

doget in Message Style service

2003-07-01 Thread John Smith
I have a webservice written using the MessageStyle Service, i would like to catch the doget method and print the custom message. Is it possible to do the same. John Smith _ Attention NRIs! Send money home in a jiffy. http://server

CFMX and Axis again ... help please ............

2003-07-01 Thread D. Delcomminette
Hi, Can't succeed to have a CFMX Document/literal Web service working. By default CFMX generates RPC/encoded Web Services, I tried in different ways to change the WSDL file to Document/literal , generate the new stubs and so on, but cannot succeed. Would anyone have sample code and WSDL and/or WS

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Anne Thomas Manes
I don't believe that Axis 1.1 runs directly in Apache Web Server or IIS. You must install a servlet engine first. Axis can run in any servlet 2.1 or later servlet engine. - Original Message - From: Dimuthu Leelarathne To: [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003

Re: SOAP intermediatries - explanation

2003-07-01 Thread Davanum Srinivas
See http://www-106.ibm.com/developerworks/webservices/library/ws-soapbase/?dwzone=webservices for details. Yes, they are usually soap servers that forward the request to another adjacent soap server and also relay the response back from the adjacent soap server back to the client. -- dims ---

ClassCastException in SOAP response

2003-07-01 Thread Vijayalakshmi Vimal
Hi all, I had successfully deployed and accessed my test and couple of other ejbs as web services. Now, for one more of the same type, I get the ClasscaseException, I don't know for what reason. SOAP request POST /axis/services/GetElementsServ

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Guillaume Sauthier
Axis run successfully under JOnAS 3.1.5 too

RE: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Farrelly, John J
Axis 1.1 works with websphere 4.0. -Original Message-From: de Blaauw [mailto:[EMAIL PROTECTED]Sent: Tuesday, July 01, 2003 12:13 AMTo: [EMAIL PROTECTED]Subject: Re: Application/Web Servers supported by AXIS 1.1? Hi, We ran axis 1.0 and now 1.1 just fine under websphere 5

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread de Blaauw
Hi, We ran axis 1.0 and now 1.1 just fine under websphere 5.0   later Leo - Original Message - From: Dimuthu Leelarathne To: [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 1:02 PM Subject: Re: Application/Web Servers supported by AXIS 1.1? Hi,   For Appa

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Sameer Bombatkar
It also works Okay with WebLogic6.1 service pack 4 Sameer. . From: "Dimuthu Leelarathne" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: Application/Web Servers supported by AXIS 1.1? Date: Wed, 2 J

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Dimuthu Leelarathne
Hi,   For Appache Web Server and IIS Axis 1.1 surely supports.   For Web Shphere and JBoss probably yes ... maybe not.   Other things I don't know.   Regards, Dimuthu  - Original Message - From: Agarwal, Naresh To: Axis (E-mail) Sent: Monday, June 30, 2003 1:33 PM S

SOAP intermediatries - explanation

2003-07-01 Thread Srinath Perera
Hi All In soap spec it describes about SOAP intermediatries (with this must understand attrbute ect..) Q) What is an SOAP intermediatrie. is it a soap server ... that the requst is pass from the server to server go to end point and came back. is it a handler ... the message is passed from handl

RE: Object array And Document literal -

2003-07-01 Thread santosh . joshi
Balaji, Why are you trying to send/receive Array of objects in the Document/literal style in the first place. Have you thought about what would an java.lang.Array or a java.lang.Object mean to a non-java client? If you want to use Document/literal for interop reason, then consider using elements

RE: SOAP Message or SOAP Body or SOAP Header access from endpoint s (H OW TO)

2003-07-01 Thread santosh . joshi
All, Call to all the experts on the list. Please help me. Regards, Santosh -Original Message- Subject: RE: SOAP Message or SOAP Body or SOAP Header access from endpoint s (H OW TO) Daniel, I assume you are saying that process the incoming request in a Handler (pre-process) and inser

Object array And Document literal -

2003-07-01 Thread Balaji D L
Hi, Have any one tried to create a webservice which returns an array of objects in document/literal style. I'm able to do it with RPC style, but with document/literal style I'm getting the below exception when I try to consume the service Referenced type 'http://schemas.xmlsoap.org/soap/encod

Problem sending large files

2003-07-01 Thread Barry White
I've written a web services client for uploading images to a company using Apache SOAP 2.3.1. It works fine until the images get larger than about 4Mb at which point it starts running out of memory. My first point is that this seems rather soon considering that there is 64Mb available by defaul

Re: Axis vs Glue

2003-07-01 Thread Jan Agermose
well no, im not really saying anything - more asking :-) Im reading the documentation for Glue and it seams very simple to get going, where as axis, well I played around with it (1.1 rc1 I think) an it was somewhat difficult to get going. To me anyways :-D And then the performance que

Creating message-style services

2003-07-01 Thread Sachin
Hi All, well i have posted two problem related to XML Document handling via web Services but got no response. but After some study on net and help of some users.I am able to find that for this i have to create message-style service Axis has given four methods for it public Element [] metho

Getting value from http header field from handler

2003-07-01 Thread Farrelly, John J
I am writing some web services in Java. I want to access information from the http header from a custom Handler but cannot find out how to do this. Any help would be much appreciated Thanks in advance John John Farrelly Associate Software Engineer FISC-Ireland Limited Parkmore East Industrial

RE: Axis vs Glue

2003-07-01 Thread Parames
Sorry for the interuption , Quite true, But any tool should be easy to develop... Is it?Normally open source has drawback when its comes to deveopmentIf some tools gives you user-friendliness or ease development, it should be good enough is it? Im also evaluating AXIS and Glue... comments a

RE: Axis vs Glue

2003-07-01 Thread santosh . joshi
Anne,   Are you saying that AXIS (supported by IBM and Apache) is not as good as GLUE?   Who supports The Mind Electric? (Unless Microsoft does!!)   I would think that AXIS is a safer bet, so that finally when Web Services standards fully mature, then one can migrate to a professional produ

Re: Axis vs Glue

2003-07-01 Thread Parames
ANybody knows price for GLUE professional or enterprise edition. --- Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > GLUE is very easy to use. The standard edition is > free for commercial use. > > Anne > - Original Message - > From: Jan Agermose > To: [EMAIL PROTECTED] > Sent: