RE: POJO Classpath Question

2007-12-03 Thread Spies, Brennan
How about WEB-INF/classes? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 03, 2007 11:49 AM To: axis-user@ws.apache.org Subject: POJO Classpath Question I am trying to implement a simple encryption service using POJOs in Tomcat. I

RE: BEA 8.1 sp5 and Axis2 (QName no such method)

2007-11-21 Thread Spies, Brennan
The NoSuchMethodError is because you have an older version of QName that lacks this constructor on your classpath. Write a debugging method that prints out QName.class.getProtectionDomain().getCodeSource().getLocation() from the point of your code where this error occurs. If QName is

RE: Possible classloader issue - help needed

2007-10-25 Thread Spies, Brennan
Joao, (I don't see where the Xerces jar is--it's not in your AAR. Can't be the Sun JDK 1.5 version, because all of those are prefaced with com.sun.) You might try: 1) Run the JRE with -verbose:class option. See if your class is actually getting loaded. 2) Get a reference to a classloader the

RE: Error :javax.xml.namespace.QName

2007-06-26 Thread Spies, Brennan
Sounds like you have an older version of QName (which lacks that constructor) on your path (looks similar to a WebSphere 5.x problem where one of the parent classloaders loads an older version of QName). Try something like QName.class.getProtectionDomain().getCodeSource().getLocation() at the

RE: Axis/Wss4j Websphere NoClassDefFoundError

2007-05-03 Thread Spies, Brennan
I haven't played around with v6.1 yet, but in 5.x Axis is included as part of the base WAS libraries in WAS_HOME/lib. Since these libs are loaded first, it can interfere with any Axis installation on your own app path. You may want to try PARENT_LAST classloading. -Original Message-

RE: Problems using Axis on i5/iSeries/AS400/whatever they call it these days

2007-04-25 Thread Spies, Brennan
Jon, NoClassDefFoundError is a linkage error. Probably because the ClassLoader that loaded org.apache.catalina.startup.HostConfig is unable to see the ClassLoader that loaded HttpSessionListener (i.e. it was loaded by a child or sibling ClassLoader). AFAIK, Tomcat does not expose its classloading

RE: Migrating .net web service to axis HELP

2007-04-03 Thread Spies, Brennan
You can use Axis 2.0 with WAS 5.1...but because the root WAS classloader has jars on its classpath that are incompatible, you'll need to... 1. Use non-delegating classloading option (PARENT_LAST) on the server. 2. Fix bugs that result from this...(Commons Logging--need to define a system property

RE: How to make SOAP messages smaller?

2007-03-28 Thread Spies, Brennan
This should be pretty easy to do...have the servlet filter check the Accept-Encoding before applying GZIP compression. Then, when debugging, have the client turn off this header. -Original Message- From: Christian Poecher [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 28, 2007 10:12

RE: stand-alone SOAP server with Axis

2007-03-27 Thread Spies, Brennan
Hakan, (Assuming you are talking about Axis2...) Embedding an HTTP Server like Jetty (http://www.ebmwebsourcing.net/blog/page/christophehamerling/20070307?catname =%2FPEtALS) might be a better solution in terms of scalability. -Original Message- From: [EMAIL PROTECTED]

RE: Benefits of using Message style WS

2007-03-01 Thread Spies, Brennan
If you have overloaded operations in WSDL, you cannot use doc/literal wrapped style. In the wrapped pattern, you require an element to have the same name as the operation, and you cannot have two elements with the same name in XML. Other than that, doc/lit wrapped has the nice advantage that it is

RE: Benefits of using Message style WS

2007-03-01 Thread Spies, Brennan
you know what the advantages are? Joshua On 3/1/07, Spies, Brennan [EMAIL PROTECTED] wrote: If you have overloaded operations in WSDL, you cannot use doc/literal wrapped style. In the wrapped pattern, you require an element to have the same name as the operation, and you cannot have two

RE: Benefits of using Message style WS

2007-03-01 Thread Spies, Brennan
if there is any benefit of creating a service this way. Are you still able to specify a schema for both your input/output arguments in the wsdl file if you send messages this way? -Josh On 3/1/07, Spies, Brennan [EMAIL PROTECTED] wrote: The Message style, as defined in Axis 1.x, is really just raw

RE: Benefits of using Message style WS

2007-03-01 Thread Spies, Brennan
The Axis 1.x user's guide is using style in this context to refer to both the WSDL style and the databinding choice. The only difference then b/n Document and Message is that Message has no databinding. -Original Message- From: Spies, Brennan Sent: Thursday, March 01, 2007 12:49 PM

RE: axis2 on Websphere

2007-02-28 Thread Spies, Brennan
Larry, You *probably* have a classloader issue. If you look at the MBean (here for the embedded version of WAS 5 in RAD, you'll have to find the correct MBean for WAS 6...) WebSphere:name=UTC.war,process=server1,Application=IBMUTC,platform=common,

RE: [Axis2] Trouble deploying axis2.war

2007-01-29 Thread Spies, Brennan
Mike, You have an older version of the QName class that is getting loaded before the one in your Axis library...if you are using Weblogic 9.2, you might want to take a look at using a Filtering Classloader to load the class from your Axis lib instead:

RE: Clustering

2007-01-22 Thread Spies, Brennan
You may want to think about clustering at the JVM level (e.g. Terracota, http://www.terracotta.org/), which uses heap-level replication. Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Rajith Attapattu [mailto:[EMAIL PROTECTED] Sent:

RE: WSDL Design

2007-01-10 Thread Spies, Brennan
The classic approach here is to use abstract and concrete WSDLs for each service, where the abstract WSDL defines the types, messages, and portTypes; and the concrete WSDL defines the binding and service elements. Each concrete WSDL will import the appropriate abstract WSDL. (Blog on this:

RE: Questions about Axis2

2006-12-18 Thread Spies, Brennan
I'd agree with Dennis that, if you know you are using Java on both sides of the wire, RMI is a more efficient and easier to setup than an XML/SOAP-based service. But there is another reason (a better one in my mind) than platform/language neutrality to go with the XML/SOAP option: declarative vs.

RE: Apache Rampart 1.1 Released

2006-12-11 Thread Spies, Brennan
Cool. Someone should update this page: http://ws.apache.org/axis2/modules/index.html with Rampart and Sandesha links. -Original Message- From: Ruchith Fernando [mailto:[EMAIL PROTECTED] Sent: Sunday, December 10, 2006 9:54 PM To: axis-user@ws.apache.org Subject: Apache Rampart 1.1

Kandula2

2006-12-07 Thread Spies, Brennan
Does anyone know the status of the Kandula2 project at Apache (planned release date, etc.)? We have a definite need for distributed transactions in our current web service... Brennan Spies Sr. Programmer Analyst Shared Application Services

RE: [Axis2] How to build web service that is invoked via HTTP Post ?

2006-12-07 Thread Spies, Brennan
Have you looked at the REST examples? http://ws.apache.org/axis2/1_1/rest-ws.html Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: S. Sharif [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 11:09 AM To: axis-user@ws.apache.org

RE: [Axis2] JMS client How

2006-11-21 Thread Spies, Brennan
You can use the generated client that the Axis 2.0 code generator supplies. The default endpoint in the generated stub/unit test and the generated WSDL won’t be correct, but you can modify them to fit pretty easily. Brennan Spies Sr. Programmer Analyst Shared Application Services

RE: Re[2]: [AXIS2] Integration with standalone java program

2006-11-17 Thread Spies, Brennan
Yes, you can use Axis 2.0 in a standalone context. The java app will need some type of available transport to communicate remotely--Axis provides some simple ones (SimpleHTTPServer, TCPServer, etc.). If you are still in the design phase of the app, you might consider doing it as a Spring 2.0 app,

RE: [Axis2] Is Axis2 1.1 working for you?

2006-11-16 Thread Spies, Brennan
It's been working a while for me (since before 1.1), but my case is pretty straightforward. I can't really vouch for anyone who is using Rampart, MTOM, etc. I would like to see more out-of-the-box robust support for JMS (i.e., from the codegen module)...yes, it's not WS-I, but in the enterprise

RE: [Axis2] Compiling the source code of Axis2

2006-11-15 Thread Spies, Brennan
For Windows, Maven puts your downloaded jars into ${HOME}/.maven/repository directory. -Original Message- From: Kedar, Shahar [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 15, 2006 2:46 AM To: axis-user@ws.apache.org Subject: [Axis2] Compiling the source code of

externalMapping - what is it?

2006-11-15 Thread Spies, Brennan
Does anyone know the specifics of what is/how to use the externalMapping Ant task attribute (or em command line option) listed in the Axis 2.0 1.1 documentation? BTW, the Option Reference table on this page (http://ws.apache.org/axis2/tools/1_1/CodegenToolReference.html) is missing

RE: Axiom, ADB, XMLBeans, JiBX: how to choose?

2006-11-15 Thread Spies, Brennan
Other than some of the funny programming conventions used in the lib (lots of inner classes), I like XmlBeans too, mostly because it is closer to the bare metal of XML structure. Other XML-Java binding frameworks, which tend to focus on doing mapping (explicit or implicit) between JavaBeans and

RE: client-side Axis2SampleDocLit

2006-11-14 Thread Spies, Brennan
Adrian, Your classpath is not set correctly: http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html That is, the classpath needs to reference the root folder of your classes directory or the .jar/.zip file explicitly. -Original Message- From: adrian rutle [mailto:[EMAIL

RE: client-side Axis2SampleDocLit

2006-11-14 Thread Spies, Brennan
-side Axis2SampleDocLit Spies, Brennan skrev: Adrian, Your classpath is not set correctly: http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html That is, the classpath needs to reference the root folder of your classes directory or the .jar/.zip file explicitly. Thanks, but I

RE: Standalone axis

2006-11-14 Thread Spies, Brennan
(); } catch (Exception e) { e.printStackTrace(); } } //end main()} Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Kang, Kamaljeet K. [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 14, 2006 11:51 AM To: Spies, Brennan Subject: RE

RE: Standalone axis

2006-11-10 Thread Spies, Brennan
Title: Standalone axis I have an example of a very simple standalone JMSServer class here: http://www.mail-archive.com/axis-user@ws.apache.org/msg20494.html -Original Message- From: Kang, Kamaljeet K. [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 2:28 PM To:

RE: WSDL2Java support JMS binding

2006-11-09 Thread Spies, Brennan
Yeah, I was wondering the same thing myself... ;) Short answer probably is...not in 1.1. Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 10:19 AM To:

RE: wsdl schema prefix

2006-11-08 Thread Spies, Brennan
: Wednesday, November 08, 2006 12:55 AM To: axis-user@ws.apache.org Subject: Re: wsdl schema prefix hi I have included the namespace declaration in my wsdl file as you can see attached. But you were right, I had to manually add it -- 17 new errors occured after validation. is this a bug? Spies, Brennan

RE: wsdl schema prefix

2006-11-07 Thread Spies, Brennan
Do you have the namespace declaration xmlns:xs=http://www.w3.org/2001/XMLSchema; as an attribute of your root element? -Original Message- From: Philipp Perner [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 10:06 AM To: axis-user@ws.apache.org Subject: wsdl schema prefix

RE: Crimson parser

2006-11-06 Thread Spies, Brennan
Try removing Crimson from your classpath and using Xerces instead. I believe the last release of Crimson was back in 2001... Brennan Spies -Original Message- From: stevenw [mailto:[EMAIL PROTECTED] Sent: Sunday, November 05, 2006 10:36 AM To: axis-user@ws.apache.org Subject: Crimson

RE: Converting from UTF-8 to ISO-8859-I with Axis2 and Java

2006-11-01 Thread Spies, Brennan
I haven't studied the specs to be able to decide how it should work... Section 3.1.5 of the Simple SOAP Binding Profile (WS-I) states that Content-Type HTTP header field-value must indicate the correct character encoding, using the charset parameter. In absence of this, it must use the default

RE: Converting from UTF-8 to ISO-8859-I with Axis2 and Java

2006-11-01 Thread Spies, Brennan
Application Services -Original Message- From: Bruno Negrao [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 01, 2006 10:28 AM To: axis-user@ws.apache.org Subject: Re: Converting from UTF-8 to ISO-8859-I with Axis2 and Java On 11/1/06, Spies, Brennan [EMAIL PROTECTED] wrote: I

RE: Generate stubs from WSDL for Business Objects XiR2

2006-10-31 Thread Spies, Brennan
? -eric Spies, Brennan wrote: Are you using the most recent nightly build for Axis2 1.1? Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- *From:* Eric Hartmann [mailto:[EMAIL PROTECTED] *Sent:* Monday, October 30, 2006 8:18 AM

RE: need JMX support !

2006-10-31 Thread Spies, Brennan
-Original Message- From: xu cai [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 10:04 PM To: axis-user@ws.apache.org Subject: need JMX support ! hi all, I wanna use JMX to manage the web services deployed in Axis, Could somebody help me with these

RE: Generate stubs from WSDL for Business Objects XiR2

2006-10-30 Thread Spies, Brennan
Are you using the most recent nightly build for Axis2 1.1? Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Eric Hartmann [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 8:18 AM To: axis-user@ws.apache.org Subject:

RE: org.apache.axis2.AxisFault: java.security.AccessControlException: access denied

2006-10-27 Thread Spies, Brennan
How-to is here: http://tomcat.apache.org/tomcat-5.5-doc/security-manager-howto.html Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Friday, October 27, 2006 6:35 AM To: axis-user@ws.apache.org

RE: [Axis2] Which App server do you use?

2006-10-27 Thread Spies, Brennan
We use Websphere (mainly) and also JBoss. Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Friday, October 27, 2006 7:01 AM To: axis-user@ws.apache.org Cc: Axis developer list Subject: [Axis2]

RE: Looking for xml schema for services.xml

2006-10-26 Thread Spies, Brennan
the services.xml and what the valid values for these options are... :-) Gul From: Spies, Brennan [mailto:[EMAIL PROTECTED] Sent: Thursday, October 26, 2006 1:03 PM To: axis-user@ws.apache.org Subject: RE: Looking for xml schema for services.xml Gul, Dont think there is one

RE: [Axis2] RM module vs. ActiveMQ

2006-10-26 Thread Spies, Brennan
Good analysis of this topic here: http://www.oreillynet.com/xml/blog/2004/02/mom_wsrel_and_wire_protocol_in.htm l My thoughts: * WS-RM is about interoperability, which has no guarantee in JMS (no standard wire format) * A JMS server is likely to be faster (no XML parsing) * Most JMS

RE: WS Addressing :: Axis2 :: JMS Webs ervice lookup issues

2006-10-24 Thread Spies, Brennan
Axis 2.0 currently supports the JNDI lookup model, with the client invocation looking something like: jms:/Topic?transport.jms.ConnectionFactoryJNDIName=TopicConnectionFactoryjava.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactoryjava.naming.provider.url="">

RE: axis2 1.1

2006-10-23 Thread Spies, Brennan
I havent been able to reach the link for the nightly distribution for almost 2 days now (10060 - Connection timeout). Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Thilina Gunarathne [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: SOAP and Session

2006-10-23 Thread Spies, Brennan
Is this what you are looking for? http://www.wso2.net/articles/rampart/java/2006/08/15/usernametoken-auth Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Gul Onural [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 12:23 PM To:

[Axis2] RE: SOAP/JMS document

2006-10-20 Thread Spies, Brennan
: Sharad Baronia [mailto:[EMAIL PROTECTED] Sent: Friday, October 13, 2006 10:37 AM To: axis-user@ws.apache.org; Spies, Brennan Subject: X-Spam:::RE: SOAP/JMS document Hi Brennan, It does it works, any documentation on this? Architectural or a flow diagram would help... Thanks, /Sharad

RE: NoClassDefFoundError: org/apache/axis2/transport/http/SimpleHTTPServer

2006-10-19 Thread Spies, Brennan
For *nix, a handy trick to use is to run the following shell script in your lib directory: for i in *.jar; do echo $i; unzip -l $i | grep java.lang.String; done (Will vary by system and shell you are usingI am using Korn Shell here, but others are similar.) This will quickly tell

RE: simpleaxis2server.bat: System can not find the given axis2.xml

2006-10-19 Thread Spies, Brennan
The build.xml file that is generated by WSDL2Java expects an environmental variable called exactly that (pointing to the root of your axis installation). Try adding this, and see if it works. Brennan Spies Sr. Programmer Analyst Shared Application Services -Original

RE: Compilation error with WSDL2Java and XmlBeans

2006-10-17 Thread Spies, Brennan
It's not WSDL 2.0, or there would be no portType, but rather an interface definition. The wsdl:binding section here does deviate from the standard boilerplate for a sync operation SOAP over HTTP (not using soap:operation and specifying soap:header info, having multiple operations per

RE: Compilation error with WSDL2Java and XmlBeans

2006-10-17 Thread Spies, Brennan
be expecting that, or should I re-use the Java code I generate for my XSD's using XmlBeans (scomp)? Is there a document that describes the integration process of XmlBeans as databinder with axis2 based on simple example (one operation)? Thanks again, Jerome -Original Message- From: Spies

RE: how to: code generation when there are multiple interfaces for a single service in WSDL

2006-10-17 Thread Spies, Brennan
Yadav, I think you are running into a similar issue that Robert and I were discussing with Jerome earlier, where Axis 2 WSDL2Java code generation does not seem to be handling portType/bindings with multiple operations. You should either create a JIRA or attach a comment to an existing

RE: Compilation error with WSDL2Java and XmlBeans

2006-10-16 Thread Spies, Brennan
Jerome, Can't see your XSD definitions, but are you using elementFormDefault=qualified? (BTW, I have been using Axis 2.0 with the exact same scenario as you have, and works for me). Brennan Spies Sr. Programmer Analyst Shared Application Services -Original Message- From: Jerome Magnet

RE: SOAP/JMS document

2006-10-13 Thread Spies, Brennan
+ java.naming.security.credentials=Administrator; - Original Message From: Spies, Brennan [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Friday, October 13, 2006 12:37:03 AM Subject: RE: SOAP/JMS document Kamal, If you are designing starting from WSDL, such as (I am using TIBCO EMS

RE: SOAP/JMS document

2006-10-13 Thread Spies, Brennan
://issues.apache.org/jira/browse/AXIS2-545 If it is then, please add your feedback there. -- dims On 10/13/06, Davanum Srinivas [EMAIL PROTECTED] wrote: Brennan, Please open an enhancement request in JIRA with your example/sample. thanks, dims On 10/13/06, Spies, Brennan [EMAIL PROTECTED] wrote: Ali, I

RE: Documentation for Java2WSDLTask

2006-10-12 Thread Spies, Brennan
1. do a taskdef for org.apache.ws.java2wsdl.Java2WSDLTask 2. since in a custom Ant task, your XML attributes are represented by class properties, you have private String className; private String outputLocation; private String classpathURI; private String targetNamespace;

RE: SOAP/JMS document

2006-10-12 Thread Spies, Brennan
Kamal, If you are designing starting from WSDL, such as (I am using TIBCO EMS)... wsdl:binding name=ActionSoapJms type=tns:ActionInterface soap:binding style=document transport=http://schemas.xmlsoap.org/soap/jms; / wsdl:operation name=Action

RE: Support for polymorphism in a service

2006-10-11 Thread Spies, Brennan
No, that's WSDL 2.0, where it is replaced by Interface... www.w3.org/2002/ws/desc/wsdl20-primer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of D.Kreft Sent: Wednesday, October 11, 2006 1:40 PM To: axis-user@ws.apache.org; [EMAIL PROTECTED] Subject: Re:

RE: Installing axis2 into Tomcat

2006-09-29 Thread Spies, Brennan
Yadav, The welcome page for Axis2 should be on the welcome-file-list in the web.xml. If you go to http://localhost:8080/axis2/, it should direct you to the /axis2-web/index.jsp page. -Original Message- From: Yadav, Yogendra (IT) [mailto:[EMAIL PROTECTED] Sent: Friday, September 29,

[Axis2] Faults as inner classes

2006-09-27 Thread Spies, Brennan
Title: Proxy Ive noticed when you define a fault for your operation, the Axis code generator (using Xmlbeans databinding) creates the faults as inner classes. On the server side, as an inner class in the interface itself (because I chose ssi) and on the client side as an identical

RE: Axis2: simple service fails to work

2006-09-25 Thread Spies, Brennan
Dan, What Dims and Robert forgot to mention is that Axis 2.0 is really a major rewrite of the SOAP stack (hence the split of URLs, one for Axis 1 and one for Axis 2). So the same growing pains apply here as with any new project. Not that I don't feel your pain--I have been there many times

RE: CodeGeneration error while using commandline batch file WSDL2Java

2006-09-21 Thread Spies, Brennan
Brennan, Please file a JIRA bug with *your* wsdl :) -- dims On 9/20/06, Spies, Brennan [EMAIL PROTECTED] wrote: Sharad, This is definitely a bug (I can reproduce using similar WSDL on the latest nightly). It throws a RuntimeException complaining that Element QName is null for [/message

RE: CodeGeneration error while using commandline batch file WSDL2Java

2006-09-21 Thread Spies, Brennan
: Wednesday, September 20, 2006 6:25 PM To: axis-user@ws.apache.org Subject: Re: CodeGeneration error while using commandline batch file WSDL2Java Brennan, Please file a JIRA bug with *your* wsdl :) -- dims On 9/20/06, Spies, Brennan [EMAIL PROTECTED] wrote: Sharad, This is definitely a bug

RE: CodeGeneration error while using commandline batch file WSDL2Java

2006-09-21 Thread Spies, Brennan
.wsdl.codegen.emitter.AxisServiceBasedMultiLanguageEm itter.emitSkeleton(AxisServiceBasedMultiLanguageEmitter.java:733) ... 3 more Thanks, /Sharad -Original Message- From: Spies, Brennan [mailto:[EMAIL PROTECTED] Sent: Thursday, September 21, 2006 8:54 AM To: axis-user

Missing jar

2006-09-21 Thread Spies, Brennan
I got an error when trying to upload a service to the Axis2 web application: Caused by: java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream It was easily fixed by adding commons-io-1.2.jar to the WEB-INF/lib. You may want to include this jar in the nightly build

RE: problem when running wsdl2java with axis2

2006-09-20 Thread Spies, Brennan
Yes, it is. When running the ant code generation task, you should see debugging output as it locates each XSD file. You should be using a recent nightly build, as there were some issues with this in the 1.0 release of Axis 2. -Original Message- From: Felix Sprick [mailto:[EMAIL

RE: [Spam] Re: classpath

2006-09-20 Thread Spies, Brennan
Fabio, Caused by: java.lang.ClassNotFoundException: org.apache.axis2.databinding.types.Time--this class is in the axis2-adb-SNAPSHOT.jar. -Original Message- From: Fabio Alves de Araujo Ebner - DNA Solution [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 9:28 AM To:

RE: [Axis2] Using 'type' attribute for the message part

2006-09-20 Thread Spies, Brennan
ns1:op xmlns:ns1=urn:example:rpc param1some string/param1 param2some string/param2 /ns1:op /soap:Body [1] http://www.ws-i.org/Profiles/BasicProfile-1.1.html#Bindings_and_Parts On 9/18/06, Spies, Brennan [EMAIL PROTECTED] wrote: Yes, I am using the most recent nightly build. The input

RE: display the xml content of a SOAP request

2006-09-20 Thread Spies, Brennan
The getText() here just get the child text node(s) as a string. You want to use one of the serialize() methods. If you're looking to debug soap, TCPMon (http://ws.apache.org/commons/tcpmon/ ) might be an easier option. -Original Message- From: Z Chen [mailto:[EMAIL PROTECTED] Sent:

RE: CodeGeneration error while using commandline batch file WSDL2Java

2006-09-20 Thread Spies, Brennan
Sharad, This is definitely a bug (I can reproduce using similar WSDL on the latest nightly). It throws a RuntimeException complaining that Element QName is null for [/message/name/text()]! You should file a JIRA issue on this: https://issues.apache.org/jira/browse/AXIS2.

RE: [Axis2] Using 'type' attribute for the message part

2006-09-18 Thread Spies, Brennan
The issue is here: https://issues.apache.org/jira/browse/AXIS2-1185 -Original Message- From: Spies, Brennan Sent: Monday, September 18, 2006 11:49 AM To: axis-user@ws.apache.org; [EMAIL PROTECTED] Subject: RE: [Axis2] Using 'type' attribute for the message part Yes, I am using the most

RE: Axis2 import xsd into WSDL and generator WSDL2Java

2006-09-15 Thread Spies, Brennan
Are you using the import inside the types section of your WSDL (i.e., is it the xsd:import rather than the wsdl:import)? -Original Message- From: Sergey GMAIL [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 7:07 AM To: axis-user@ws.apache.org Subject: Axis2 import xsd into

RE: Axis2 and Soap Header and Skeleton

2006-09-13 Thread Spies, Brennan
You'll have to change your method signature to pass in the appropriate parameter(s), then change the call in your *MessageReceiver* class invokeBusinessLogic() method to pass these in. To get a reference to your element, you need to get the appropriate OMElement from your incoming MessageContext,

RE: Access Addressing information

2006-09-12 Thread Spies, Brennan
messageContext.getEnvelope().getHeader(); -Original Message- From: Punnoose, Roshan [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 12, 2006 7:01 AM To: axis-user@ws.apache.org Subject: Access Addressing information When I create a web service with WS-Addressing handlers, how do I

RE: [Axis2] Purpose of resource files generated with Xmlbeans databinding

2006-09-07 Thread Spies, Brennan
06, 2006 11:22 PM To: axis-user@ws.apache.org Subject: Re: [Axis2] Purpose of resource files generated with Xmlbeans databinding Hi, These are needed for the XMLBeans runtime and should be included in the classpath for the XMLBeans classes to work Ajith On 9/6/06, Spies, Brennan [EMAIL PROTECTED

RE: [Axis2] Purpose of resource files generated with Xmlbeans databinding

2006-09-07 Thread Spies, Brennan
. The xmlbeans docs explain it well enough so it can be done without much thrashing around. Jeff On 9/7/06, Spies, Brennan [EMAIL PROTECTED] wrote: Is there a way to generate these manually, since I am currently having a problem with not all of my schemas being generated as XmlBeans classes (https

[Axis2] How to write server-side implementation for doc/lit

2006-09-07 Thread Spies, Brennan
I have a (simple) question regarding the implementation of the server-side logic web service in Axis 2.0, which is not clear from the documentation. After doing the code generation (doc/literal service with XMLBeans databinding, and server-side interface), I am left with a

RE: [Axis2] Purpose of resource files generated with Xmlbeans databinding

2006-09-07 Thread Spies, Brennan
depends on these xsb files to parse the XMLs properly and it cannot do without them. Ajith On 9/7/06, Spies, Brennan [EMAIL PROTECTED] wrote: Actually, the latest nightly build solved my problem, so it's not an issue for me anymore--but am still curious about what these files

RE: axis versus axis2

2006-09-06 Thread Spies, Brennan
I'm not sure if I qualify as a die hard fan of Axis, but I've chosen it over XFire because I like the pluggable architecture and some of the other features, such as more transport options (TCP). I am doing a top-down web service using XML Schema and WSDL as the starting point. The xsd is

[Axis2] Purpose of resource files generated with Xmlbeans databinding

2006-09-06 Thread Spies, Brennan
All, Can anyone tell me what is the purpose of the files generated under /resources/schemaorg_apache_xmlbeans with the file extension .xsb? These get generated by WSDL2Java when the databinding is xmlbeans B.

RE: axis versus axis2

2006-09-06 Thread Spies, Brennan
, 2006 1:40 PM To: axis-user@ws.apache.org Cc: [EMAIL PROTECTED] Subject: Re: axis versus axis2 Brennan, Could you please log a bug for #2 with your wsdl/xsd's? (I just checked in a change that may help!). That will help us fix both #2 and #3. thanks, dims On 9/6/06, Spies, Brennan [EMAIL