JMS sample in WebLogic?

2002-11-18 Thread Arulazi D
Hi Does anybody have tried running the JMS sample in WebLogic 7.0(using WebLogic JMS) ? Regards, Arul

How do I change the Envelope Namespace URI?

2002-11-18 Thread Schofield Colin
I am quite perplexed by this one and am a total newbie, so help me out if you can! :o) I am communicating with a preset Soap server and I have written some simple client code, but whenever I run it I get the exception: faultString: org.xml.sax.SAXException: Bad envelope namespace: urn:schemas-xml

Re: _default.java and _return.java files created by WSDL2Java

2002-11-18 Thread Steve Loughran
- Original Message - From: "Vijetha Vadlakonda (vijetha)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 15:53 Subject: _default.java and _return.java files created by WSDL2Java > Hi, > > When I run the WSDL2Java tool on my WSDL file, it creates a > _default.

Install Axis 1.0 org.apache.jasper.JasperException

2002-11-18 Thread Cynthia
I'm trying to get Axis 1.0 up, I got Tomcat 4.1.12 up and running no problem, but happyaxis.jsp returns a 500 status code with the error "org.apache.jasper.JasperException: Cannot inherit from final class". __ Do you Yahoo!? Yahoo! Web Hosting - L

RE: Help with List De-serializer problem.

2002-11-18 Thread Ramaswamy, Muthu
FYI. In my Axis client I had the step: service.getEngine().setOption(org.apache.axis.AxisEngine.PROP_SEND_XSI, new Boolean(false)); This was causing a "problem" to the Array De-serializer. So when I set the PROP_SEND_XSI to true, Array De-serializer was able to see the Qname mapped to {urn:Simp

Which XSL taglibs work with Axis ??

2002-11-18 Thread Reynardine
Hi, When I install and run the http://jakarta.apache.org/taglibs/xsl-1.0 xsl-taglib under Tomcat, my axis client blows up with a SAX error. I am assuming this is because the jars required by the xsl custom tag library ( Xerces 1 XML parser and the Xalan 1 XSLT processor) argue with the version

Re: [want exceptions in Java interface]

2002-11-18 Thread Mitch Gitman
Steve, thanks for taking a shot at this. I had earlier tried descending my custom exception class from RemoteException rather than just Exception. I ended up with the same meat byproducts in the WSDL. Subclassing AxisFault would have the same issue since it too is descended from RemoteException

SOAPBody and SOAPHeaderElement?

2002-11-18 Thread Denis Goeury
Does anybody know why SOAPBody.getChildElements(Name name) deals with SOAPHeaderElements instead of SOAPBodyElements? Here is Axis' source code: package org.apache.axis.message; public class SOAPBody extends MessageElement implements javax.xml.soap.SOAPBody { ... public java.util.I

Re: +AFs-want exceptions in Java interface+AF0-

2002-11-18 Thread Steve Loughran
I dont know the details, but 1. Throw an AxisFault or a SoapFault and it should go over the wire as a soapfault+ADs- Declare you throw java.rmi.RemoteException and you can throw these, BTW. All proxy services built from a WSDL declaration throw RemoteException automatically 2. To send other exce

_default.java and _return.java files created by WSDL2Java

2002-11-18 Thread Vijetha Vadlakonda \(vijetha\)
Title: Message Hi,   When I run the WSDL2Java tool on my WSDL file, it creates a _default.java and an _return.java classes which are no where to be found in the WSDL file or the XSD files. Would anyone know why they would be created?   Also, I see that no java stub/class is generated for one

Re: [want exceptions in Java interface]

2002-11-18 Thread Mitch Gitman
Well, I wound up working around the Axis tools+IBk taking exception to Exception. I stripped the unwanted byproducts of java.lang.Exception from the WSDL that Java2WSDL had generated. Then WSDL2Java worked just fine. I guess I will just incorporate this editing of the .wsdl into my build. Still, t

Re: How do I unsubscribe?

2002-11-18 Thread Martin Jericho
Look in the headers of any email you have received from the list. They will show you the relevant email address. - Original Message - From: "Steve Loughran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 19, 2002 4:31 AM Subject: Re: How do I unsubscribe? > for this

Re: JMS sample can not run

2002-11-18 Thread David Chappell
Kevin, Per Jaime's suggestion to try the alternate approach using the vendor adapter directly, here is the specific command line - java -Dorg.apache.axis.components.jms.JMSVendorAdapter=org.apache.axis.components.jms.SonicMQVendorAdapter samples.jms.JMSTest -c sonic-connection-factory.properti

RE: JMS sample can not run

2002-11-18 Thread Jaime Meritt
Kevin, It looks like the Connection Factory you are pulling out of JNDI is not configured correctly. Did you follow the steps in the document to setup your connection factory in the JNDI repository? Which JNDI implementation are you using? Since you are using SonicMQ, another option exists in

JMS sample can not run

2002-11-18 Thread Kevin Wang
Hi, I'm new to Axis, now I'm trying to run the JMS sample with SonicMQ. But I got an exception like this: C:\xml-axis-10\samples\jms>java samples.jms.JMSTest -c jndi-connection-factory.p roperties -d "MyQ" IBM PRGS Nov 18, 2002 4:57:57 PM org.apache.axis.transport.jms.SimpleJMSListener SEVERE:

RE: Urgent - WSDL2Java takes a very long time to build Java stubs from a WSDL file

2002-11-18 Thread Vijetha Vadlakonda \(vijetha\)
No, They were on the local machine in the same directory as the WSDL file. When I load the XSD file, it does not take that long to display them. I tried --all and did not see much difference. Can anybody help me with my second question, I see that I do not have a java stub for one of the Operati

Re: SOAP over SMTP

2002-11-18 Thread Steve Loughran
- Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 1:26 PM Subject: Re: SOAP over SMTP > yup, read that (SOAP 1.2 Email Binding). I've looked at, but it was kind of a hard read. > I see the samples/security stuff, Is

Re: Generated WSDL <> original WSDL

2002-11-18 Thread Steve Loughran
Looks like you just give it a file and it is opened as a file, relative to wherever the system thinks the current directory is. I'll probably tap in some code to resolve against resources on the classpath if a file isnt found, as that would deem the better approach. - Original Message -

RE: Nullpointerexception during serialization of array parameter

2002-11-18 Thread Randy Evans
For the record: I re-installed Axis with the nightly backup from 11/18/2002 and the problem no longer occurs. I believe there was a change made to SOAPPart.java that deleted a "log.debug" call in the SetCurrentForm method, and now I no longer receive the NullPointerException. The original proble

Re: SOAP over SMTP

2002-11-18 Thread Jason Essington
On Monday, November 18, 2002, at 01:10 PM, Steve Loughran wrote: I am curious if their is already an effort to implement XML-Security into AXIS in a transport agnostic sort of way? The starting place would seem to be the SOAP1.2 SOAP over SMTP spec, and the WS-I stuff on WS-Security. Essenti

RE: NoSuchMethodError while attempting to run admin

2002-11-18 Thread Vidyanand Murunikkara
check this out .. might be a similar error. http://marc.theaimsgroup.com/?t=10376305003&r=1&w=2 -Original Message- From: Joe Morse [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 12:37 PM To: '[EMAIL PROTECTED]' Subject: NoSuchMethodError while attempting to run admin H

NoSuchMethodError while attempting to run admin

2002-11-18 Thread Joe Morse
Hello. Does anyone get a NoSuchMethodError while attempting to access the AdminServlet? I've installed Axis on JRun and keep getting the following stack trace: -- 500 Internal Server Error /axis/servlet/AdminServlet: null java.lang.NoSuchMe

Re: SOAP over SMTP

2002-11-18 Thread Steve Loughran
- Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 11:48 AM Subject: Re: SOAP over SMTP > Licenses, especially the open source type confuse me :-/ closed source licenses dont have any incorporation policies so there i

RE: rpc-encoded and document/literal

2002-11-18 Thread Anne Thomas Manes
See this: http://searchwebservices.techtarget.com/ateQuestionNResponse/0,289625,sid26_ cid494324_tax289201,00.html > -Original Message- > From: Tim Russell [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 18, 2002 1:17 PM > To: [EMAIL PROTECTED] > Subject: Re: rpc-encoded and document/l

Re: SOAP over SMTP

2002-11-18 Thread Jason Essington
Steve I have continued this thread from the axis-user list here because this seems a more appropriate forum. On Monday, November 18, 2002, at 12:21 PM, Steve Loughran wrote: - Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November

RE: java2WSDL/WSDL2Java problems

2002-11-18 Thread Darrell Gamble
As I have the WSDL2Java (but not JAVA2WSDL) working, does anyone have a JSP client example they can share that manipulates the WSDL2Java axis auto-generated files?  Preferably one that uses a function that has at least one input param?  I'm thinking of something along the lines of the 'echo' hello

RE: Urgent - WSDL2Java takes a very long time to build Java stubs from a WSDL file

2002-11-18 Thread Tom Jordahl
Well, were the XSD imports to files on the network? When you get these files in a browser, does it take a long time? Try the --all switch to WSDL2Java, we only generate files for things that are referenced. -- Tom Jordahl Macromedia Server Development -Original Message- From: Vijetha

RE: Generated WSDL <> original WSDL

2002-11-18 Thread Tom Jordahl
The latter. It is an element inside the service description. See the (ick!) source code: deployment.wsdd.WSDDService.java. -- Tom Jordahl Macromedia Server Development -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 2:11 PM To: [EMAIL

Re: SOAP over SMTP

2002-11-18 Thread Steve Loughran
- Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 11:04 AM Subject: Re: SOAP over SMTP > Steve > > Some of the handlers could be easily made a part of axis, but the MBean > that actually checks the email is fairly jbo

RE: Urgent - WSDL2Java takes a very long time to build Java stubs from a WSDL file

2002-11-18 Thread Vijetha Vadlakonda \(vijetha\)
Hi I think this is a bug. When I removed the imports and added the daya from the XSD files into the WSDL file and then ran the WSDL2Java tool, it generated the java stubs in no time. Looks like WSDL2Java does not handle imports and includes well?? I have one more question: I see that I do not

RE: Generated WSDL <> original WSDL

2002-11-18 Thread Daleiden, Mike
Is the filename specified as an absolute path? Or is it relative to the web app? Please provide an example. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: Re: Generated WSDL <> original WSDL --

Re: Generated WSDL <> original WSDL

2002-11-18 Thread Steve Loughran
- Original Message - From: "Tom Jordahl" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 7:13 AM Subject: RE: Generated WSDL <> original WSDL > Please keep in mind that Axis isn't "changing" the WSDL, it is generating the WSDL from the Java classes it has at ha

Re: SOAP over SMTP

2002-11-18 Thread Jason Essington
Steve Some of the handlers could be easily made a part of axis, but the MBean that actually checks the email is fairly jboss specific, and it depends on the JBoss' mail service. also the authentication (xml digital signature) is somewhat JBossSX bound. I certainly need to have this functionali

Re: NoSuchMethodError in Client

2002-11-18 Thread Steve Loughran
- Original Message - From: "Yates, Danny (ANTS)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 7:15 AM Subject: RE: NoSuchMethodError in Client > Well, not THAT many! The indexOf() and lastIndexOf() methods, subSequence() > and append(StringBuffer) are the o

Re: NoSuchMethodError in Client

2002-11-18 Thread Steve Loughran
This now fixed in source. The code went StringBuffer.append(StringBuffer); in 1.3 and before this was cast to append(Object), and all was well; it is only code built against 1.4 that binds to the new declaration and breaks. One of those amusing little gotchas. So the nightly build will work again

Re: SOAP over SMTP

2002-11-18 Thread Steve Loughran
- Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 7:07 AM Subject: Re: SOAP over SMTP > Hi Arul > > I am trying to build an email transport into jboss.net (the axis in > JBoss). There is already some code in cvs > (ht

Re: How do I unsubscribe?

2002-11-18 Thread Steve Loughran
for this mail list, no. First try unsubscribing from all your aliases, I will poke around and see who the list manager is. Someone on axis-dev must know what to do - Original Message - From: "Sikora, Gary" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 5:54 AM

Re: rpc-encoded and document/literal

2002-11-18 Thread Tim Russell
you might find http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnweb srv/html/wsdlexplained.asp useful. Tim. - Original Message - From: "Shriram Kollipara" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 3:26 PM Subject: rpc-encoded and documen

want exceptions in Java interface

2002-11-18 Thread Mitch Gitman
I have a minimal Java interface that I want to expose as a web service. Most of the methods in this interface throw a custom exception derived from Exception. Ultimately, through my RPC web service, I want these exceptions to translate into SOAP faults. My understanding is that I don't have to b

AW: Server side header management

2002-11-18 Thread Robert Sauer
If you set in your deploy.wsdd then you get one Service instance per HTTP session. Thus this instance may work as a simple bridge between Session and stateful EJB. Session management works by default via cookie. Did not find the time till yet to check if URL rewriting is available, too. W

Generating java names from the Symbol Table

2002-11-18 Thread Dandeneau, David J. (LNG-DAY)
I am trying to dynamically access some of my wsdl2java generated classes by walking through the symbol table as generated by org.apache.axis.wsdl.gen.Parser. I am specifically trying to calculate the location of the port classes. The problem that I am running into is that the Documentation elements

Generating java names from the symbol table

2002-11-18 Thread Dandeneau, David J. (LNG-DAY)
I am trying to dynamically access some of my wsdl2java generated classes by walking through the symbol table as generated by org.apache.axis.wsdl.gen.Parser. I am specifically trying to calculate the location of the port classes. The problem that I am running into is that the Documentation elements

Re: Server side header management

2002-11-18 Thread Alex Dovlecel
Does anyone know if I can keep the session id in the header... in order to make a statefull session calling??? Like the way Apache Soap does it? Tx dovle

RE: NoSuchMethodError in Client

2002-11-18 Thread thomas . cherel
Title: Message I think it is a bug that was discovered when the automatic build of Axis started to use JDK1.4. If you build Axis using JDK1.3, you do not have this problem anymore. I think it has been fixed in latest CVS.   Thomas -Original Message-From: Volkmann, Mark [mai

RE: NoSuchMethodError in Client

2002-11-18 Thread Chris Forbis
A thread a little while ago stated it is a bug.  This being said, I would assume that it should not need 1.4, it just does not because of this bug.     -Original Message- From: Volkmann, Mark [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 10:24 AM To: '[EMAIL PROTEC

RE: NoSuchMethodError in Client

2002-11-18 Thread Volkmann, Mark
I don't recall hearing that Axis was going to required JDK 1.4. Is that the case now? -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: Monday, November 18, 2002 9:01 AMTo: [EMAIL PROTECTED]Subject: RE: NoSuchMethodError in ClientIt looks like the jav

rpc-encoded and document/literal

2002-11-18 Thread Shriram Kollipara
Hi, I am trying to understand the differences between rpc-encoded and document/literal. Any pointers regarding this including some books would be of great help. Thanks. shri

RE: NoSuchMethodError in Client

2002-11-18 Thread Yates, Danny (ANTS)
Well, not THAT many! The indexOf() and lastIndexOf() methods, subSequence() and append(StringBuffer) are the only new methods in 1.4. StringBuffer has always been a fairly flexible class.   Rgds,   Dan. -- Danny Yates Technical Architect Abbey National Treasury Services E-mail: [EMAIL PROTECT

RE: Server side header management

2002-11-18 Thread Tom Jordahl
You need to build a handler which will process the header, thus setting the flag that indicates that you understood the header. The docs talk about handlers and how to write/configure one. -- Tom Jordahl Macromedia Server Development -Original Message- From: dweber [mailto:[EMAIL PRO

RE: Generated WSDL <> original WSDL

2002-11-18 Thread Tom Jordahl
Just re-read this message. Java2WSDL uses the package name to map to the namespace. I believe you can change this mapping in the WSDD, but I don't have the syntax off the top of my head. I know Java2WSDL has command line switches for this, but you need the ?WSDL invocation to do the mappings.

RE: Statefull Session EJB and Axis

2002-11-18 Thread Tom Jordahl
No plans that I am aware of. Are you volunteering? :-) -- Tom Jordahl Macromedia Server Development -Original Message- From: Ramon Arias [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 14, 2002 4:17 PM To: [EMAIL PROTECTED] Subject: Statefull Session EJB and Axis Hello there!

RE: Generated WSDL <> original WSDL

2002-11-18 Thread Tom Jordahl
There are various situations where this round trip is either 1) not possible or 2) has bugs. 1) It might not be possible because in going from WSDL->Java, information is lost. In general we keep *most* of the important information in meta data, but important was defined as being required to g

RE: NoSuchMethodError in Client

2002-11-18 Thread cmchenry
It looks like the java.lang.StringBuffer.append(java.lang.StringBuffer) was added in 1.4.0.  I'll download the 1.4.1 JDK and let you know if works. Thanks for the quick feedback! "Volkmann, Mark" <[EMAIL PROTECTED]> 11/18/2002 07:55 AM Please respond to axis-user                 To:    

Re: SOAP over SMTP

2002-11-18 Thread Jason Essington
Hi Arul I am trying to build an email transport into jboss.net (the axis in JBoss). There is already some code in cvs (http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/contrib/ jboss.net/src/main/org/jboss/net/axis/mail/) the code that is there is rather rough so far. I have to have mes

RE: NoSuchMethodError in Client

2002-11-18 Thread Chris Forbis
But not with the new methods that 1.4 offers (1.4 expands on StringBuffer with MANY MANY new goodies)     -Original Message- From: Volkmann, Mark [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 9:56 AM To: '[EMAIL PROTECTED]' Subject: RE: NoSuchMethodError in Client

RE: java2WSDL/WSDL2Java problems

2002-11-18 Thread Darrell Gamble
You're absolutely right this creates the abstracts.  However I can't ge the opposite working now.  The Java2WSDL.  Do you have a batch file for that one as well?  I tried to rig one up using your syntax for the WSDL2Java bat.  But to no avail.  Thanks for your help.   Chris Forbis <[EMAIL PROTECTE

RE: NoSuchMethodError in Client

2002-11-18 Thread Volkmann, Mark
java.lang.StringBuffer has existed since JDK 1.0. -Original Message-From: Chris Forbis [mailto:[EMAIL PROTECTED]]Sent: Monday, November 18, 2002 8:45 AMTo: '[EMAIL PROTECTED]'Subject: RE: NoSuchMethodError in Client What JDK are you using?  If not 1.4.1 you need to

RE: How do I unsubscribe?

2002-11-18 Thread Anne Thomas Manes
Make sure that: 1) you unsubscribe using the same email address that you subscribed with (try unsubscribing with all of your aliases) 2) you reply to the confirmation message using the same email address that you subscribed with > -Original Message- > From: Sikora, Gary [mailto:[EMAIL PRO

RE: NoSuchMethodError in Client

2002-11-18 Thread Chris Forbis
What JDK are you using?  If not 1.4.1 you need to use 1.4.1 due to the fact java.lang.StringBuffer( java.lang.StringBuffer ) does not exist in 1.3.  1.0 did not have this limitation, but it seems the new builds do.  Let us know if it works for you...  I think I saw a bug report opened on th

NoSuchMethodError in Client

2002-11-18 Thread cmchenry
I get the following exeception when trying to run a client application with the 11/17 build.  This same application worked under the 1.0 build. java.lang.NoSuchMethodError: java.lang.StringBuffer: method append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer; not found         at org.apache.axi

Re: webservices list, google search query

2002-11-18 Thread Reynardine
Some more web services are on http://www.webservicex.net/ Also see the IBM UDDI and the Microsoft UDDI i.e. http://uddi.microsoft.com/search/frames.aspx?frames=true&search=a6d2e0ea-cad4-47eb-9f11-70ea618e4efb -Rey - Original Message - From: RXZ JLo <[EMAIL PROTECTED]> Date: Wed, 13 Nov

RE: java2WSDL/WSDL2Java problems

2002-11-18 Thread Chris Forbis
Part of the Xerces 2 dist.  http://xml.apache.org   Chris   -Original Message- From: Darrell Gamble [mailto:[EMAIL PROTECTED]] Sent: Friday, November 15, 2002 6:53 PM To: [EMAIL PROTECTED] Subject: RE: java2WSDL/WSDL2Java problems   Chris where did you get that xmlParserAPIs.

Nullpointerexception during serialization of array parameter

2002-11-18 Thread Randy Evans
I am using Axis 1.0 release dated October 7, 2002, client application. I am receiving a NullPointerException in ArraySerializer:111 on a call to method that uses a two-dimensional array for one of its input parameters. After receiving the NullPointerException, Axis client retries successfully. T

RE: ANT gui question

2002-11-18 Thread Kevin . Bedell
The latest (M3) build of Eclipse has a a graphical Ant interface using Ant View (which has been added to the Eclipse project with this release instead of being 3rd party). "Thibaut Barrere" <[EMAIL PROTECTED]> on 11/18/2002 04:17:11 AM Please respond to [EMAIL PROTECTED] To:<[EMAIL

Re: SOAP over SMTP

2002-11-18 Thread Kevin . Bedell
I believe the upcoming 3.2 version of JBoss will have this using an embedded version of Axis 1.0. I saw some posts on the dev list there discussing it. Arulazi D <[EMAIL PROTECTED]> on 11/18/2002 01:22:59 AM Please respond to [EMAIL PROTECTED] To:Axis User <[EMAIL PROTECTED]> cc:

RE: How do I unsubscribe?

2002-11-18 Thread Sikora, Gary
Been there, done that!? -Original Message- From: Stephen Graham [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 14, 2002 9:58 PM To: [EMAIL PROTECTED] Subject: RE: How do I unsubscribe? This is from the WELCOME message you received when you subscribed to the mailing list. To remove

RE: How do I unsubscribe?

2002-11-18 Thread Sikora, Gary
No, I have not changed my email address. Though, I do have a few aliases. Do you know who I can contact to take care of this? My aliases: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] Thanks -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Saturday, No

Re: Date Serialization by Apache Client.

2002-11-18 Thread Reinhard Moser
Hi, a simple typeMapping in your server-config.wsdd would help, i think. http://util.java"; type="java:java.util.Calender" serializer="your.serializerfactory" deserializer="your.deserializerfactory" encodingStyle="http://schemas.xmlsoap.org/so

Re: Initialization Parameters

2002-11-18 Thread Ben Souther
My code is a little different. All I'm doing is getting init params from the web.xml. Here is my code: getContext().getInitParameter("init-param") I don't know if that's all you were trying to do before. On Friday 15 November 2002 05:00 pm, Ben Souther wrote: > It is running in one of my ap

Re: Date Serialization by Apache Client.

2002-11-18 Thread Thiago Leão Moreira
    Hi     I'm sorry, but it was not this that I wanted to know, I try again.     How can I replace org.apache.axis.encoding.ser.CalendarSer/Deserializer for my own CalendarSer/Deserializer ???     Thiago Steve Loughran wrote: It should be there already. If it isnt in Axis 1.0, get the

Axis and Delphi7

2002-11-18 Thread Arno de Quaasteniet
Hi I'm trying to use AXIS in combination with Delphi 7 but I encoutered some problems with receiving attachments in the Delphi client. I keep getting an error message from the XML parser ('invalid at the top level of the document'). Sending attachments goes fine. The only difference I see is th

How can I get JAXM SOAP with Attachement parts?

2002-11-18 Thread ???\(Junhong Song\)
I received a SOAP with attachment message. Attached data is XML document("text/xml" type). But when I try to get a attachment part by using below source code, I got a NullPointerException. Iterator it = message.getAttachments(); AttachmentPart attachment = (AttachmentPart)it.next(); Stream

RE: ANT gui question

2002-11-18 Thread Thibaut Barrere
Hi, no graphical tool afaik; I'm often using Planty (http://www.gebit.de/download/planty/planty.html), which is a plugin for Eclipse providing ant files edition (including completion & color syntaxing...) really worth it. just my 2 cents Thibaut Barrère AgroMarchés Internationaux 11, rue de C

RE: Help with List De-serializer problem.

2002-11-18 Thread Russell Brown
Muthu, This sounds a lot like my problem with the HashMap property of my Bean. Even though I have written a deserializer for the bean Axis still fails to deserialize it. If I get any answers I'll let you know for sure Good Luck Russell -Original Message- From: Ramaswamy, Muthu [mailto:

RE: Serializing / Deserializing

2002-11-18 Thread Russell Brown
Ben, I am, just here: call.registerTypeMapping(ArgumentSet.class, qn, FSSerializerFactory.class, FSDeserializerFactory.class, t); and yes, the ArgumentSet class ( that is the bean ) is available as I make one and pass it to the webservice in the call ( it is correctly serialized by the way, I

Axis-gSOAP Enumeration compatibility problems?

2002-11-18 Thread Marcus Lindén (EAB)
Hi, I use Axis 1.0 in my SOAP client and try to call a server that is implemented on gSOAP. I have generated the Axis-stubbs from a WSDL-file (below) which contains an operation that takes an enumeration as request parameter. When I call the operation, I get a fault-response from the gSOAP Serve