It is my hope that a new WSIF user group is set up.

2003-02-10 Thread Jason Weinstein
It is my hope that a new WSIF user group is set up. At this point I have to filter out most of the axis posts (which I used to be able to go through but has turned out to be a little too active for me) when I would be much more interested in hearing only about WSIF. Ideally I would like to manage

RE: Has anyone used the axis APIs to generate XSD from Java? Something like java2XSD?

2003-01-14 Thread Jason Weinstein
used the axis APIs to generate XSD from Java? Something like java2XSD? Jason, You can use JAXB,Castor like to get the Java From a XSD. Hope that helps. Thanks Kamesh -Original Message- From: Jason Weinstein [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 10:36 AM To: [EMAIL

Has anyone used the axis APIs to generate XSD from Java? Something like java2XSD?

2003-01-14 Thread Jason Weinstein
Has anyone used the axis APIs to generate XSD from Java? Something like java2XSD? Is anyone aware of another tool which can do it? Axis certainly has the capability, but there appears to be no straightforward way to do it. Ideally I'd like a command line interface. Class: org.apache.axis.wsdl.f

RE: class SOAPMonitorApplet.class not found

2003-01-09 Thread Jason Weinstein
class wasn't compiled yet. There was a SOAPMonitorApplet.java file in the document root of the axis web application, but no SOAPMonitorApplet.class. - Original Message - From: "Jason Weinstein" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 09,

load: class SOAPMonitorApplet.class not found

2003-01-09 Thread Jason Weinstein
I am having trouble with the SOAPMonitorApplet NOTE: I followed this excellent help file: http://www.sosnoski.com/presents/java-xml/axis/axis-monitor.html Could this be a permissions problem or a classpath problem? Any ideas? http://localhost:8080/axis/SOAPMonitor load: class SOAPMonitorApplet.

RE: No deserializer defined for array type ?

2003-01-08 Thread Jason Weinstein
This may not answer your question, but I found this post to be very useful (e.g., steps 1-4). > -Original Message- > From: Gene Chuang > [mailto:[EMAIL PROTECTED]] > Sent: Sunday, December 29, 2

RE: how to stop logging (completely)

2002-12-20 Thread Jason Weinstein
Title: how to stop logging (completely) I cannot say how completely, but this has worked for me: (thanks to another axis-user)   # Set root logger level to DEBUG and its only appender to stdout. log4j.rootLogger=DEBUG, stdout   # Set axis logger category to FATAL and its only appender

How do I use the type classes and interface classes generated by axis in WSIF?

2002-12-17 Thread Jason Weinstein
Woops here's the new question. How do I use the type classes and interface classes generated by axis in WSIF? Are there examples for doing this? (read below for context) -Original Message- From: Jason Weinstein Sent: Tuesday, December 17, 2002 9:40 AM To: [EMAIL PROTECTED] Subjec

RE: [wsif] PortTypeCompiler? Plus new Question?

2002-12-17 Thread Jason Weinstein
This is the response I received to a similar question: WSIF generates stubs dynamically at runtime so doesn't require a stub. It does require the service interface which is what the dynamic stub is generated from. WSIF doesn't yet have its own tool for generating these but you can use the WSDL2Ja

How do I turn Axis debugging off?

2002-12-16 Thread Jason Weinstein
I have a log4j.properties file which is logging DEBUG statements to system out. I would like to keep this, but turn axis debugging off. Does anyone have an example log4j.properties file with axis logging turned off or know how to turn it off? Thanks, Jason

RE: registerSerializer method

2002-12-11 Thread Jason Weinstein
I would check your wsdl4j.jar file. Decompile ExtensionRegistry if necessary or javap?. If the class does not contain the method perhaps you need a different version. Otherwise check that wsdl4j.jar is in your classpath.   -Original Message- From: Roberto Podesta' [mailto:[EMAIL

Can I generate WSIF stubs for executing against a web service?

2002-12-06 Thread Jason Weinstein
Can I generate WSIF stubs for executing against a web service (similar to how axis does it)? Thanks