Re: Test Web services?

2002-11-29 Thread michel
- Original Message - From: "Trond Hjelmaas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 29, 2002 10:29 PM Subject: Re: Test Web services? > > try www.xmethods.com some of them are not simple so you have to look for a > simple one. > > If you need a program to invok

Re: Performance Testing?

2002-11-29 Thread Steve Loughran
When I was doing load testing we -wrote a client to simulate the real client as much as possible, with delays and things where appropriate client side -had the main() routine take #threads and #iterations as params, among others -output the results in basic CSV format, with the timestamp of each

Re: Test Web services?

2002-11-29 Thread Trond Hjelmaas
try www.xmethods.com some of them are not simple so you have to look for a simple one. If you need a program to invoke services, try www.mindelectric.com (GLUE) /Trond On Fri, 29 Nov 2002, michel wrote: > Hi, > > I'm using JBuilder 7 for SOAP development, and I'm getting weird results > even c

wsdl doesnt change

2002-11-29 Thread Raju Gottumukkala
Hi   I deploy a service using deploy.wsdd like example3, in userguide. I undeploy it then i make some modifications in the service file, copy the new class and redeploy it again, butI find that the wsdl file doesn't change, could anyone please tell me what is the problem and how to rectify i

Test Web services?

2002-11-29 Thread michel
Hi, I'm using JBuilder 7 for SOAP development, and I'm getting weird results even connecting to services on my own local server. Are there any simple test services available on the net, like "hello world"? Thanks!

Performance Testing?

2002-11-29 Thread Roy Wood
Anyone here have suggestions as to generating some semi-relevant performance numbers for a SOAP service? Any recommended tools out there, or should I just roll my own? All I'm looking for is some rough idea as to what sort of client transaction load my app/server can support. -Roy

mixing soap encoded and literal parameters?

2002-11-29 Thread Vervoort, Claude
I have a method that takes among its parameters a complex type defined in an external schema: someMethod(boolean param1, long param2, Assessment param3) I have created custom de/serializer for Assessment following the external schema definition and added the following mapping: http://www

Re: commons-logging issue (maybe JUnit-related)

2002-11-29 Thread Mitch Gitman
Sure enough, this problem does not arise when running my Axis client directly. So where's the conflict with JUnit? The JUnit archive doesn't define these classes. At 11:45 29.11.02 -0800, you wrote: I'm trying to run some JUnit tests on an Axis client. My client class' constructor calls the def

commons-logging issue (maybe JUnit-related)

2002-11-29 Thread Mitch Gitman
I'm trying to run some JUnit tests on an Axis client. My client class' constructor calls the default constructor for org.apache.axis.client.Service. This causes an exception to crop up: java.lang.ExceptionInInitializerError at org.apache.axis.client.Service.(Service.java:108) ... Caused by: org.a

Re: WS Inetrop

2002-11-29 Thread Steve Loughran
- Original Message - From: "Wayne Yan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 28, 2002 23:50 Subject: RE: WS Inetrop > Does the architecture allow for custom 'interceptors' / 'links' to be > inserted into the message handling chain ? > yep; they are calle

RE: why have to copy .class files of existing webapp into Axisweb-inf folder??

2002-11-29 Thread Adam Leggett
As a follow up to Alex's original query there is now a section in the install.htm guide (step 7) which gives some clues as to how to integrate axis with your own webapp. It also links to a sample chapter http://www.manning.com/hatcher/chap15.pdf which elaborates on the process. Available with the

AdminService?wsdl generates a duplicate attribute error

2002-11-29 Thread dev
Hi all, having some troubles with a service, I decided to start again from the beginning. I got through the axis installation page and deployed the web-app of the distribution into the web-app of my resin. All seemed to work properly, I got through the 4 steps without any error, but when I trie

Re: build compiler problems

2002-11-29 Thread Adam Leggett
If i switch to jdk 1.4.0 it builds fine. I was getting the previous error using 1.3.1_06 on Red Hat 8. A search on google for the error yielded little info. Seems to arise due to a problem with default encoding. I tried setting encoding="UTF-8" in the javac task but still got the same message. On

Antwort: Re: Antwort: RE: German umlaut with Axis

2002-11-29 Thread Sven . Dahringer
Thanks for this information, it should be the problem. When I have fix the problem, I give you feedback. Bye Sven Sven Dahringer InfoScore Software Service GmbH Rheinstrasse 99 76532 Baden-Baden [EMAIL PROTECTED] Tel.: 0 72 21 / 50 40

RE: Help doing attachments

2002-11-29 Thread Anne Thomas Manes
WASP 4.5 will also support DIME. - C++ beta is available now. - Java beta will be available Dec 15. > -Original Message- > From: Arno de Quaasteniet [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 29, 2002 4:01 AM > To: [EMAIL PROTECTED] > Subject: RE: Help doing attachments > > > >

How to avoid any writing in server-config

2002-11-29 Thread I.V.Rajesh
Hi all, I am using axis 1.0 release. I have a doubt here. How can i avoid my service beeing written in this file server-config.wsdd. Is there any ways?. As the my service details and type mappings are written in to it if i restart my service i get problems. In the earlier relaese my service detail

build compiler problems

2002-11-29 Thread Adam Leggett
Hi all, Excuse the cross-post. Am attempting to checkout and build Axis. Have configured my environment as per the supplied building doc. However, Ant falls over on the compile target with the following message: compile: [javac] Compiling 555 source files to /home/tele/dev/libraries/apachecv

Problem with namespace management and Signature

2002-11-29 Thread pascal . recchia
Hi, I resend this mail. In fact, I signed SOAP message. The development environment is : Axis and WebSphere 4. I have develop from the axis sample of signature a signature mechanism which runs. But, I want to avoid deserialize or serialize the SOAP enveloppe as Axis sample. I use this code : i

RE: Help doing attachments

2002-11-29 Thread Arno de Quaasteniet
> there is no attachment support in .net; if you want interop > with .net 1.0 > you must use base64. the new .net web services toolkit adds > DIME, that axis > also supports, but the rest of the java land doesnt I've understood that Glue 3.3 will also support DIME. Arno

RE: Help doing attachments

2002-11-29 Thread Arno de Quaasteniet
> Essentially, I need to know what the server-side class would > look like. This is very simple. Just use something like this: import javax.activation.DataHandler; public class AttachmentService { public void putXMLDocument(DataHandler document) { } } In the attachments samples o