castor problem

2003-12-09 Thread Pradeep Jonnalagadda
Guys , When i use castor with axis i get this problem. I have followed this article http://www-106.ibm.com/developerworks/webservices/library/ws-castor/?Open&ca=daw-ws-news. But it gives me this error.I have thos class descriptor files but still it gives me this error. any help appreciated thx pra

axis message level secuurity

2003-12-09 Thread Sid Subr
I was looking into the security documentation for axis and looks like it provides transport level security by using HTTPS.. is there any way to include message level security is other than XML signatures (which is end to end) by way of XML encryption mechanisms out there. ___

RE: 1.2 alpha and castor serialization

2003-12-09 Thread Pradeep Jonnalagadda
This exactly the error i got. Will be great help if u find a solution to this!! This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail

RE: 1.2 alpha and castor serialization

2003-12-09 Thread Keith Bohnenberger
I am trying to get a modified version of the stock example to work with built in castor serialization. I am using the alpha1.2 release from http://www.apache.org/dist/ws/axis/1_2alpha However, since it did not include the ...encoding.ser.castor.* classes I built a new axis.jar from the CVS reposit

Axis client serialized int,long, short, etc. defaulted to 0 if not specified

2003-12-09 Thread Mitch Winkle
Has anyone noticed that if a request is generated without setting values for int, long, etc. bean parameters, that Axis serializes these values defaulted to zero? This causes problems with some web services. I can't see any way to turn off this behavior. Can someone enlighten me? What is a p

Re: .NET and Axis Namespace Incompatability

2003-12-09 Thread Christoph Tratter
Hi Greg! Just a little remark. It should not be a problem, but maybe in the future cause for undetectable bugs: The Extensible Markup Language (XML) 1.0 (Second Edition) W3C Recommendation 6 October 2000 states in its section 3 "Logical Structures" (http://www.w3.org/TR/REC-xml#sec-logical-stru

Re: SOAP to DOM

2003-12-09 Thread Jeff Greif
try document.getDocumentElement().normalize() Jeff - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 09, 2003 6:41 AM Subject: SOAP to DOM > In a handler (axis BasicHandler type), I need to transform the soap part of > the message into a Docum

RE: .NET and Axis Namespace Incompatability

2003-12-09 Thread Bobak, Greg P.
Title: .NET and Axis Namespace Incompatability The nice thing about typing out a question is that I often answer it myself.  The problem below is caused because the AXIS example was placing a namespace in the xml element that the .NET client was not:     vs.     G.   Greg Bob

Réf. : Re: SOAP to DOM

2003-12-09 Thread valerie . bauche
I've done exactly the same : public void invoke(MessageContext msgContext) throws AxisFault { try { org.apache.axis.Message testMsg = msgContext.getCurrentMessage (); org.w3c.dom.Element element = testMsg.getSOAPEnvelope ().getAsDOM(); .. eleme

.NET and Axis Namespace Incompatability

2003-12-09 Thread Bobak, Greg P.
Title: .NET and Axis Namespace Incompatability Hi, We are working on creating an Axis client for a .NET web service.  Our Axis client, created primarily with WSDL2java, creates the following SOAP body:   http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="CreditCardAuth">       

RE: Non-RemoteException serialization

2003-12-09 Thread Fernandez Martinez, Alejandro
Title: RE: Non-RemoteException serialization Hi dims, I have tried 1.2 Alpha, as suggested, and everything has broken. TypeMappings, serialization, and even WSDL processing. Do I bother to fill in bug reports? Alex. > -Mensaje original- > De: Davanum Srinivas [mailto:[EMAIL PROTEC

1.2 alpha and built in castor serialization

2003-12-09 Thread Keith Bohnenberger
The 1.2 alpha release does not seem to have the org.apache.axis.encoding.ser.castor.* classes in it. Am I missing something or is that intentional? I downloaded the 1.2 alpha release from http://www.apache.org/dist/ws/axis/1_2alpha Thanks keith -Original Message- From: Hainer Neil [mail

Re: SOAP to DOM

2003-12-09 Thread Christoph Tratter
Hi! The whole thing can be much simplified if you want the SOAPEnvelope (not only the body of it) in the current context (request or response): void invoke(MessageContext msgContext) { try { org.apache.axis.Message testMsg = context.getCurrentMessage(); org.w3c.Element element

Re: response xml query

2003-12-09 Thread Sloan Seaman
Microsoft in particular does not send back valid XML...   If you are dealing with Microsoft XML/A you may want to check out www.sourceforge.net/projects/xmlaprocessor which is a project I wrote to deal with XML/A.   It stores the results in a true multidimential data structure of cubes, dime

Re: SOAP to DOM

2003-12-09 Thread Christoph Tratter
Hi Valerie! You can try something like this: In the method invoke of your handler (as it extends BasicHandler) you have the following signature: void invoke(MessageContext msgContext) So you can try something like: void invoke(MessageContext msgContext) { org.apache.axis.Message testMsg = c

RE: response xml query

2003-12-09 Thread Sumeet Satish Agarkar
Thank you Mike. I’ll check up on the link you have sent. I have tried sending three MDX queries to get the data from OLAP using msxisapi.dll Each time depending on the data I want to fetch for the columns for the rows and for the values as elements. The child elements vary accordi

RE: response xml query

2003-12-09 Thread Mike Burati
  AxisInfo is specific to XMLA, not to Apache AXIS - it's just a coincidence that the names are similar.   Our web services guy with XMLA expertise is out of the office, otherwise I could probably give you a link to XMLA info, but you can probably find more via google / altavista...   Note,

SOAP to DOM

2003-12-09 Thread valerie . bauche
In a handler (axis BasicHandler type), I need to transform the soap part of the message into a Document object I use the javax.xml.transform.Transformer and I get the Document object. But this Document is full of "\n" and sometimes "\r" or spaces !!! It's not very easy to use : is there any solutio

RE: Handler question

2003-12-09 Thread Mark D. Hansen
OK. What, specifically, should I use as the reference for "Axis 1.2 Alpha"? The latest automated snapshot in http://cvs.apache.org/snapshots/ws-axis ? Sorry to be such a novice with the Apache stuff! -- Mark > -Original Message- > From: Davanum Srinivas [mailto:[EMAIL PROTECTED] > Sent

RE: Handler question

2003-12-09 Thread Davanum Srinivas
Please try Axis 1.2 Alpha. If that does not work as expected, then log a bug report. -- dims --- "Mark D. Hansen" <[EMAIL PROTECTED]> wrote: > Actually, I'm trying to write a patch for the JAXRPCHandler class since it does not > work > correctly when false is returned. Any ideas? > > -- Mark >

Re: Publishing Java Class as a web service

2003-12-09 Thread Aleksander Slominski
Hitesh Dhingra wrote: Hi everybody, I have a java class and the wsdl describing the java class . I want to publish the java class as a webservice. I will be using JBoss as the application server and jetty as a servlet container and most probably WSIF for the invocation of the web service . My ques

response xml query

2003-12-09 Thread Sumeet Satish Agarkar
Hi, I have got a response from OLAP in form of xmla. Can u tell me the meaning of the tags like …… Else can u tell me of a link which explains this? thnx   Regards, Sumeet Agarkar Software Engineer MAC Infosys Technologies Limited® Bangalore. Extn:55936 mailto:[EMAIL PROTECT

RE: Handler question

2003-12-09 Thread Mark D. Hansen
Actually, I'm trying to write a patch for the JAXRPCHandler class since it does not work correctly when false is returned. Any ideas? -- Mark > -Original Message- > From: Thomas Bayer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 09, 2003 3:44 AM > To: [EMAIL PROTECTED] > Subject:

Error While Running The Client Class

2003-12-09 Thread Dhanush Gopinath
Hi All,   I have written a client class which calls a webservice deployed.   But when i run I get the following error( The one in red).   C:\AxisDemos\mysample\axis>java mysample.axis.Client1 Dhanush Error processing WSDL document:org.xml.sax.SAXException: Fatal Error: URI=http://localhost:

Using two XML Parsers!

2003-12-09 Thread Tony Vieitez
Hi all   I have a bit of a problem! I want to use Xerces with axis but I am restricted in that I have a web application running on my web server that is reliant on an old parser (nasty I know), and axis will not run with this parser.   So here is what I would like to find out – is it p

AW: Handler question

2003-12-09 Thread Thomas Bayer
Use a JAXRPCHandler and return false if you want to stop processing. > -Ursprüngliche Nachricht- > Von: Mark D. Hansen [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 8. Dezember 2003 23:43 > An: AXIS Users (E-mail) > Betreff: Handler question > > > I need to write a handler (server side) th

Apache Axis Tutorial

2003-12-09 Thread Yves
I'm following a tutorial for Apache Axis I found on the web, I'm at the point where I'm supposed to compile the java app but mine keeps returning errors. Here's the DOS prompt from where I tell it to compile and the errors that I get:   C:\j2sdk1.4.1_05\dev>javac TaxClient.java TaxClient.java:2: pa