AW: TCPMon question

2003-01-13 Thread Sebastian . Beyer
Title: Nachricht Hi Willie,   I wish a lot of luck. But your question is posted wrong here in axis mailing list. waht you need is a Java-course. Maybe also you need a Linux-course if you dont know how to set up the environment. You should begin learning Java, than startiung with a we servic

Creating SOAPBody

2003-01-13 Thread Shobha Rani Jagathpal
Hi, How should I create a SOAPBody? org.apache.axis.message.SOAPBody constructor takes (java.lang.String namespace, java.lang.String localPart, java.lang.String prefix, org.xml.sax.Attributes attributes, DeserializationContext context, SOAPConstants soapConsts) Could somebody give details on thes

Re: TCPMon question

2003-01-13 Thread Gene Chuang
Zoiks! Zero java experience and assigned to develop a java-based credit card txn Web services heh? Let me know what ecommerce site it is so I don't submit my CC#! :-) Well I admire your bravery, so here a pointer: put $JAVA_HOME/bin in your PATH environment to get "java" and "javac". Good luck

Re: newbie books

2003-01-13 Thread Gene Chuang
I'm half way through Sams "Building Web Services with Java" and found it a pretty good read. It's got a good primer chapter on XML and focuses on WS development on Apache Axis. Gene --- Dan <[EMAIL PROTECTED]> wrote: > Any suggestions for a good read on XML,SOAP and web services for Java > develo

Re: AXIS in Weblogic 6.1

2003-01-13 Thread beoh
Hi, The previous stack trace was generated when AXIS is running in tomcat container and the EJB web service in AXIS calls an EJB from Weblogic 6.1. When AXIS running in Weblogic web server, requesting for the same EJB web service generated the same stack trace as below, AXIS error Sorry, somethi

TCPMon question

2003-01-13 Thread Willie Slepecki
Quick background on me, I am a VB developer with more than a few years experience that was recently charged with developing a java web service on linux/apache/tomcat/axis to handle credit card transactions.  This is my first time knowing they existed let alone how to use them.    I am ge

Re: [wsif] Running against ws.cdyne.com's zip2geo service

2003-01-13 Thread Nirmal Mukhi
Hello Rhett, I see a problem with the SOAP request msg generated from your WSIF application. Here's the SOAP msg (copied from what you sent): http://ws.cdyne.com";> 80231 Here, the zipcode and LicenseKey elements both have the xmlns attribute set to "", which is incorrect. They sho

newbie books

2003-01-13 Thread Dan
Any suggestions for a good read on XML,SOAP and web services for Java developers, especially for those of us with no practical experience with XML?

Re: WSDL of java.* types

2003-01-13 Thread Steve Loughran
- Original Message - From: "Volkmann, Mark" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 12:34 Subject: RE: WSDL of java.* types >> > In particular, the following class is *not* exportable as a >> web service: >> > >> > public class test >> > { >> > public

Re: Axis client, OutOfMemoryException

2003-01-13 Thread James Carman
Oh, and wouldn't he get a StackOverflowError as opposed to an OutOfMemoryError? - Original Message - From: "Daleiden, Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 4:18 PM Subject: RE: Axis client, OutOfMemoryException You're probably overrunning your s

[wsif] Running against ws.cdyne.com's zip2geo service

2003-01-13 Thread Rhett . DeWall
I am using the ApacheAxis provider for WSIF attempting to invoke the zip2geo web service. Below is the output from two executions of the same web service. The first execution request/response pair was obtained after executing the service from an online application enabling access to any web servi

Re: Axis client, OutOfMemoryException

2003-01-13 Thread James Carman
However, String parameters are actually object reference parameters. So, the contents of the string are not copied onto the stack, only the value of the reference (basically the address of the string on the heap). ALL objects live on the heap in Java. - Original Message - From: "Daleiden,

RE: Axis client, OutOfMemoryException

2003-01-13 Thread Daleiden, Mike
You're probably overrunning your stack, not heap. Try increasing stack size on the client VM. When arguments are passed in a method call, they are placed on the stack, not the heap. -Original Message- From: Brian W. Young [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:15 PM

Axis client, OutOfMemoryException

2003-01-13 Thread Brian W. Young
Hello, I have a simple Axis client, just a few lines borrowed from the included examples. My call returns String, and in this case the String is the contents of a 2 meg XML file that I will be parsing into a Document once it has been received. However, I can't get that far. With a 128 meg he

RE: first Document Style client

2003-01-13 Thread Joel Grenon
Just an advise, start with the WSDL2Java tool and try to understand what's going on. You'll find most of your anwers. I think this is the best learning approach. Joel -Original Message- From: Dan [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:04 PM To: [EMAIL PROTECTED] Sub

first Document Style client

2003-01-13 Thread Dan
I'm just getting started with XML, SOAP, and Axis. I'm in the early "figuring it out" stages. For experience, I'd like to try writing a bare bones client to get the service at: http://www.webservicex.net/uszip.asmx using the GetInfoByZipCode function. I've written an RPC client that ca

NoSuchMethodError: ParameterDesc.

2003-01-13 Thread Matt Clark
Hi, I’m try to call a webservice that I’ve deployed in Axis and seeing the following exception:   Java.lang.NoSuchMethodError: org.apache.axis.description.ParameterDesc.(Ljavax/xml/namespace/QName;BLjavax/xml/namespace/QName;Ljava/lang/class;ZZ)V   In my skeleton’s static declarat

RE: faultString: org.xml.sax.SAXNotRecognizedException: Feature: http ://xml.org/sax/properties/lexical-handler

2003-01-13 Thread Han, Kenneth
This is solved by applying xerces-1_4_4. Regards, Ken -Original Message- From: Han, Kenneth Sent: Monday, January 13, 2003 2:11 PM To: '[EMAIL PROTECTED]' Subject: faultString: org.xml.sax.SAXNotRecognizedException: Feature: http ://xml.org/sax/properties/lexical-handler I got the foll

RE: WSDL of java.* types

2003-01-13 Thread Volkmann, Mark
Title: RE: WSDL of java.* types > -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 13, 2003 2:13 PM > To: [EMAIL PROTECTED] > Subject: Re: WSDL of java.* types > > - Original Message - > From: "Karsten Düsterloh" <[EMAIL PROTECTED]>

Re: WSDL of java.* types

2003-01-13 Thread Steve Loughran
- Original Message - From: "Karsten Düsterloh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 02:39 Subject: WSDL of java.* types > In particular, the following class is *not* exportable as a web service: > > public class test > { > public test() {} > pub

faultString: org.xml.sax.SAXNotRecognizedException: Feature: http://xml.org/sax/properties/lexical-handler

2003-01-13 Thread Han, Kenneth
I got the following error when I am trying to deploy the sample stock service to the Oracle9iAS's OC4J. Can anyone give a hint on how to solve this? Thanks in advance, Ken F:\downloads\apache\xml-axis-10\webapps\axis\WEB-INF\lib>java org.apache.axis.cl ient.AdminClient -lhttp://localhost:/a

RE: Load the AXIS source into IDE problem: required more libs

2003-01-13 Thread Bin Ni
Thanks Joel. I guess you are right. I guess build.xml exclude the files that don't need to compile. BTW, I never tried using ant build in Eclipse yet. Is it correct that I just replace "Java Build" with "Ant Build"? I am wondering if it still works as "incremental compile" way or it call ant onc

RE: Load the AXIS source into IDE problem: required more libs

2003-01-13 Thread Tom Jordahl
See build.xml for various jar files that will include/exclude files and packages. -- Tom Jordahl Macromedia Server Development -Original Message- From: Bin Ni [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 2:30 PM To: [EMAIL PROTECTED] Subject: Load the AXIS source into IDE

When and How to add a new encoding

2003-01-13 Thread Bin Ni
Hi guys, I have my xml ser/deser framework done already. Now I am trying to use AXIS as my WebService Engine. I have made it work on WebLogic 7.0. I have written an generic ser/deser as the bridge between my xml framework with AXIS Serialization framework. I registered my new types(ser/deser f

RE: Load the AXIS source into IDE problem: required more libs

2003-01-13 Thread Joel Grenon
I guess you should use the Axis Ant build instead, it already contains all dependencies. Eclipse has a good support for ant. I did this using the cvs code with success. Joel -Original Message- From: Bin Ni [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 2:30 PM To: [EMAIL PROTE

Load the AXIS source into IDE problem: required more libs

2003-01-13 Thread Bin Ni
I loaded AXIS source code into an IDE called Eclipse. But there are a bunch compiling errors occurred. I added few libs such as j2ee.jar , xerers.jar, jimi.jar. But I still cannot all source compiled. I have to delete few files to make them all compiled. Can somebody teach me where can I find t

Re: AXIS in Weblogic 6.1

2003-01-13 Thread Gene Chuang
Not that I doubt you, but the stacktrace seem to indicate Axis is running in Tomcat and not WL? --- [EMAIL PROTECTED] wrote: > Hi, > > I already successfully deployed both AXIS war into Weblogic 6.1 and one of > the EJB (in WL server) to the AXIS. > > When I tried to hit http://localhost:7001/ax

RE: Interfaces as parameters to web service functions?

2003-01-13 Thread Volkmann, Mark
Title: RE: Interfaces as parameters to web service functions? > -Original Message- > From: Ajanta Phatak [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 10, 2003 3:45 PM > To: [EMAIL PROTECTED] > Subject: Interfaces as parameters to web service functions? > > > Newbie question...

EBJ Stateful Session Beans

2003-01-13 Thread Kovács Péter
Title: EBJ Stateful Session Beans Anyone working on an improved integration of EJB Stateful Session Beans? Is it possible to integrate them at all based on the current JAXRPC specification? There seems to be no appropriate component of the JAXRPC API that could be used for the EJBObject.remove

AXIS in Weblogic 6.1

2003-01-13 Thread beoh
Hi, I already successfully deployed both AXIS war into Weblogic 6.1 and one of the EJB (in WL server) to the AXIS. When I tried to hit http://localhost:7001/axis/services/UserBean?WSDL, I encountered the following problem. AXIS error Sorry, something seems to have gone wrong... here are the deta

Re: SSL Client

2003-01-13 Thread Th Templ
Hello, Perhaps this thread can help you: http://marc.theaimsgroup.com/?l=soap-user&m=104156152816988&w=2 Templth Hello, I'm using Apache Axis on Tomcat 4.1. I've made SSL setup for the Tomcat server in the following way 1) Created a server.keystore 2) Exported to server.crt 3) Created a cl

Re: [wsif] zip2geo sample questions

2003-01-13 Thread Anthony Elder
There isn't an architected way of doing this with the AXIS provider yet. I think there needs to be one and I am working on this, I'll let you know when something is available. In the meantime if you know you are using the WSIF AXIS provider you can get the AXIS call object and then its TypeMappin

SSL Client

2003-01-13 Thread Vijay R
Hello, I'm using Apache Axis on Tomcat 4.1. I've made SSL setup for the Tomcat server in the following way 1) Created a server.keystore 2) Exported to server.crt 3) Created a client.keystore 4) Exported to client.crt 5) Imported client.crt to server

Serializer/Deserializer

2003-01-13 Thread E. Sriram
My service (more than 1) is already functional via RMI. Now I am evaluating if SOAP communication between my client and server is possible. All the parameters used by my service follow the Java Beans pattern. The method parameters are either one of the following Bean object Array of Bean Object

WSDL of java.* types

2003-01-13 Thread Karsten Düsterloh
Hi! Since I'm new to Axis, I might miss something very obvious. If so, please redirect me accordingly. I run an Axis 1.1b/Tomcat 4.1.12 combination to deploy some web services. The java classes to be exported as services specify functions with java.lang.* or java.io.* parametres. These classes are

RE: [wsif] Help: error in getting the soap provider

2003-01-13 Thread Anthony Elder
Hi Tony, First check this is not something wrong with your client program by using the DynamicInvoker sample, for example: >java clients.DynamicInvoker http://www.xmethods.net/sd/2001/BabelFishService.wsdl BabelFish de_en "halt die ohren steif" Reading WSDL document from 'http://www.xmethods.net