Re: doc/literal service & multiple operations fault

2005-02-12 Thread Jeff Greif
Apparently the client is sending an element GetCapabilities (with no namespace) while the service is expecting getCapabilities. Jeff - Original Message - From: "Richard Holzmeier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 12, 2005 2:06 P

Re: AXIS Stubs Problem and unable to consume EJB web service

2005-02-02 Thread Jeff Greif
wever, the parser is unlikely to be responsible for the exception. Jeff - Original Message - From: "babloosony" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Sent: Wednesday, February 02, 2005 6:53 AM Subject: AXIS Stubs Problem and unable to consume EJB web service

WSDL2Java & .NET Web Service

2005-01-31 Thread Jeff Pfost
to attach the SOAP message with the error returned from the Web Service, the Client code and the WSDL. Thanks very much. Jeff SOAP Message => == Listen Port: 7001 Target Host: foghat Target Port: 80 Request POST /arsys/services/ARService?server=bopeep&webService=OHD

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Jeff Greif
ew one. > "http://wiki.apache.org/ws/FrontPage/Axis";. Note that most (but not all) of the links on this page are broken. Jeff

Re: Document literal with complex data types

2004-12-24 Thread Jeff Greif
to process. Jeff - Original Message - From: "Frank Cohen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 24, 2004 7:25 AM Subject: Document literal with complex data types > It suprises me how little knowledge is out there for a Java de

Re: java2wsdl ant task for document/literal

2004-12-21 Thread Jeff Greif
o indicate anything about wrapping in the wsdl, at least not without additional extensions. The fixed wire format for the transmitted SOAP decouples the client and server from one another in whether wrapping is used for a particular operation. Jeff - Original Message - From: "Daniel

Re: Problem with {User defined type} having array of {User defined type} with RPC-Literal

2004-12-20 Thread Jeff Greif
ent command line, and it would use this to construct the content for the request's soap body: urn:foo under the assumption that this operation is wrapped (verified by the traces emitted with debug logging enabled for Axis). Jeff - Original Message - From: "Anne Thomas Manes&qu

Re: Element with type="xsd:any"

2004-12-15 Thread Jeff Greif
xsd:any is not a defined type. You probably mean xsd:anyType. - Original Message - From: "Samuel Solon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 15, 2004 3:08 PM Subject: Element with type="xsd:any" I'm using WSDL to define messages that have one (or more) e

Re: value of soap:address attribute

2004-11-29 Thread Jeff Greif
sense that Axis or some other WS engine is invoked at that URL and can determine the correct class and method to use on any web service call (using the URL or SOAPAction or body element name in a doc/lit invocation, or something custom). These are the "requirements" from a practical point

Re: Axis 1.2 RC2 released

2004-11-29 Thread Jeff Greif
cument, each subelement assigned to one parameter of the method and appropriately deserialized. Jeff - Original Message - From: "Henry Lu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 29, 2004 5:08 AM Subject: Re: Axis 1.2 RC2 released > Coul

Re: Axis 1.2 RC2 released

2004-11-28 Thread Jeff Greif
your service, your web service can be implemented as you originally specified, echo(String s1, String s2) and the containing wrapper element will be stripped away. However, the client must always call the web service with a single Document as its parameter. Jeff - Original Message - From

org.apache.axis.types.Time

2004-11-03 Thread Deppen, Jeff
All, Does anyone know of a way to dictate the timezone org.apache.axis.types.Time uses? It appears to ALWAYS convert a local time to UTC. (I've got some picky client app developers that want the time as Eastern Standard Time.) thanks! jeff

WSDD Syntax for specifying xsd:date java.util.Calendar mapping

2004-10-18 Thread Jeff Oh
uot; types for both the startDate and endDate parameters. At the risk of sounding like an idiot, what am I missing? Or is this something I can only accomplish by starting with a .wsdl file and working backwards? Jeff 8-)

Re: deployment form for wrapped doc/lit operation

2004-10-14 Thread Jeff Greif
deployment spec for the operation. What was needed was to provide a type mapping with a different deserializer/serializer pair for anyURI. Jeff - Original Message - From: "Jeff Greif" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 13, 2004 11:46 PM Subjec

Re: IncompatibleClassChangeError in Axis-1.2-RC1

2004-10-14 Thread Jeff Greif
I see. I hit the exception in a client, not within Tomcat. Jeff - Original Message - From: "Arijit Mukherjee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 14, 2004 1:07 AM Subject: RE: IncompatibleClassChangeError in Axis-1.2-RC1 I did t

Re: IncompatibleClassChangeError in Axis-1.2-RC1

2004-10-14 Thread Jeff Greif
on of ssaj.jar was not superseded by some other version in my classpath. (I had additional complications of using wsif and having to get that to work with all these jars also.) Jeff - Original Message - From: "Arijit Mukherjee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

deployment form for wrapped doc/lit operation

2004-10-13 Thread Jeff Greif
... Thanks in advance for clarifications. Jeff

Re: IncompatibleClassChangeError in Axis-1.2-RC1

2004-10-13 Thread Jeff Greif
I just spent yesterday struggling with this. I believe it is caused by needing a new version of saaj.jar (the one that comes with Axis-1.2RC1) (and maybe the xerces jars also.) Jeff - Original Message - From: "Arijit Mukherjee" <[EMAIL PROTECTED]> To: <[EMA

non-stub doc-lit client

2004-10-06 Thread Jeff Greif
When a wsdl operation is defined to be doc/lit, the org.apache.client.Call setOperation() methods seem to make unexpected assumptions about the form of the argument parameters, both in number and type. I tested this in axis-1_2RC1 using the client program pasted below. Clearly I must be missing

Re: Passing XML Documents

2004-09-30 Thread Jeff Greif
some idea of the interoperability requirements, the attachment solution seems cleanest, assuming you are allowed to have doctype in attachments (this is out of my realm of knowledge) or are willing to encode the attachment somehow. Jeff - Original Message - From: "Jason Nesbit

Re: Databases in Axis

2004-09-29 Thread Jeff
Oh, you're using JNDI. I have never bothered with JNDI DataSources. I find that straight JDBC works fine for me. I guess you need to update /webapps/axis/WEB-INF/web.xml and generally mess around until it works. I'm sure someone else will be able to put you right. Jeff

Re: Databases in Axis

2004-09-29 Thread Jeff
Not really clear what you are trying to do... "I tried copying over the info from the old server.xml file" What info? Jeff - Original Message - From: "Hubble, Christopher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, Septem

Re: Databases in Axis

2004-09-29 Thread Jeff
()."); else logFatalException(s_logger, except, "getWebInf()"); } } return s_strWebInf; } Jeff - Original Message - From: "Keith Tingle" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 29, 2004 1:37 PM Subject: RE:

Re: Databases in Axis

2004-09-29 Thread Jeff
So? The same code should work :-) Jeff - Original Message - From: "Hubble, Christopher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 29, 2004 1:32 PM Subject: RE: Databases in Axis > -chuckle- What I'm trying to do is convert

Re: Databases in Axis

2004-09-29 Thread Jeff
Just use JDBC but I suspect your question will be re-phrased! Jeff - Original Message - From: "Hubble, Christopher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 29, 2004 1:27 PM Subject: Databases in Axis > How do you con

Re: Array of Objects in Axis and .NET interop

2004-09-29 Thread Jeff Greif
server randomly generated different names on every call. Also, these elements belong in the null namespace because they are not specified in any schema. I think this is one of the reasons the Basic Profile advises against using encoded forms. Jeff - Original Message - From: "Eric Chi

Axis clients for doc/lit services

2004-09-22 Thread Jeff Greif
problem occurs in Axis 1.2beta.   Is there some way to prevent this wrapping, which seems incorrect according to all the settings of the Call object?   Jeff

Re: Calling different WS than specified in client

2004-09-14 Thread Jeff Greif
There are some other ideas and the general principle here: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/DeployedServiceTocall Jeff - Original Message - From: "Anand Natrajan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 14

Re: The Attributes and the UN-"wrapper" style

2004-09-10 Thread Jeff Greif
implementation should be able to change transparently between the two forms without affecting the abstract description or the client. Jeff - Original Message - From: "Liu, Scott" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 10, 2004 4:31

RE: MessageContext.setProperty() in a handler

2004-08-09 Thread Jeff Phelps
I do have my client-config.wsdd configured and setup.  It looks like this:   I think maybe the cachedProperties on the Stub object never get updated after the call to invoke()?   Jeffegemen kalyoncu <[EMAIL PROTECTED]> wrote: Jeff it seems you didn't register your

MessageContext.setProperty() in a handler

2004-08-09 Thread Jeff Phelps
ient code pulls the properties from an internal HashMap, but the HashMap never gets updated. Is it possible to send a property back to the client from a handler? Am I doing something wrong? Thanks, Jeff ___ Do you Yahoo!? E

How do I get the underlying request/response xml?

2004-07-19 Thread Deppen, Jeff
ge is long gone. How can I get to it? (I suppose I could do something with log4j that filters out everything except for the request/response soap messages but I'm concerned this would introduce some serious performance issues.) Any help/thoughts would be appreciated. thanks jeff

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread Jeff
Hi James,   "http://localhost:8080/axis/servlet/AxisServlet" doesn't look right for your endpoint. I would expect something like "http://localhost:8080/axis/services/";     Jeff     - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROT

RE: Schema generation in Axis?

2004-07-01 Thread Deppen, Jeff
Anne,   Thanks!  Although it's not the answer I was hoping for, you answered my question!   -jeff -Original Message-From: Anne Thomas Manes [mailto:[EMAIL PROTECTED]Sent: Thursday, July 01, 2004 8:35 AMTo: [EMAIL PROTECTED]Subject: RE: Schema generation in

Schema generation in Axis?

2004-07-01 Thread Deppen, Jeff
quot; in the node. Now, here's my question: is there a way to have Axis generate a schema file/definition which is imported by each WSDL instead of definining each type (again and again) within each WSDL? thanks jeff

Re: WSDL and schema include question

2004-06-29 Thread Jeff Greif
provided and has no effect. See http://www.w3.org/TR/xmlschema-1/#composition (section 4.2.1). requires a namespace attribute and requires that the value of that attribute be different from the target namespace of the importing schema. Jeff - Original Message - From: Anne Thomas Manes

RE: Interface in public web service method?

2004-06-16 Thread Deppen, Jeff
Something I forgot to show, public class FooImpl implements Foo -Original Message- From: Deppen, Jeff [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 3:10 PM To: [EMAIL PROTECTED] Subject: Interface in public web service method? All, Is it possible to expose a method

Interface in public web service method?

2004-06-16 Thread Deppen, Jeff
All, Is it possible to expose a method (operation) that has an interface parameter type? For example, assume I have an interface and an implementing class: public interface Foo { String getName(); void setName(String pName); } public class FooImpl { public FooImpl() {} public String ge

RE: Posting XML to AxisServlet

2004-06-15 Thread Deppen, Jeff
It's working now. I was missing the "SOAPAction". Thanks to everyone who responded! -jeff -Original Message- From: Abhinav Maheshwari [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 6:38 AM To: [EMAIL PROTECTED] Subject: RE: Posting XML to AxisServlet Jeff,

Posting XML to AxisServlet

2004-06-14 Thread Deppen, Jeff
y to the AxisServlet should work 2. is the XML that shoes up in the AxisServlet (when using the axis client side libraries) the EXACT XML that the servlet receives? 3. does anyone have any recommendations for an open source web services tester? thanks! jeff

How to determine which WSDL element is invalid?

2004-06-09 Thread Jeff Jensen
Hi, In the following error, how can I determine which WSDL element does not match the incoming XML? It sounds odd, but I am creating WSDL to match existing XML files from a web service (the WSDL does not exist) and use with Axis, and am stumped in resolving this one. I am particularly wondering

RE: German characters cause problems for AxisServlet

2004-06-02 Thread Jeff Loomis
cters, it implies that something on your client is converting your message to UTF-8 twice. -Jeff

Re: Name mangling for 'Default'

2004-05-26 Thread Jeff Greif
nerated: class SomeOtherClass { private Default default; ... public Default getDefault() { return default; } public void setDefault(Default default) { this.default = default; } ... }; Jeff - Original Message - From: "Christopher Blunck" <[E

Re: Generic invocation with complex document types

2004-05-15 Thread Jeff Greif
eads using the words "dynamic invoker complex type" The techniques apply to axis also. Jeff - Original Message - From: "Davanum Srinivas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 15, 2004 2:31 PM Subject: Re: Generic invocation with c

Re: Generic invocation with complex document types

2004-05-15 Thread Jeff Greif
. Then you would pass in an Element (or subclass) for each complex input part, and get back an Element for each complex return. Jeff - Original Message - From: "Tom Oinn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 15, 2004 10:03 AM Subject: Re: G

Re: Project from hell?

2004-05-14 Thread Jeff
Keep 'em comin' :-) That's so funny. Jeff P.S. I'm working on the SCS schema thing, Davanum. - Original Message - From: "Galbreath, Mark A" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 14, 2004 4:17 PM Subject: RE: Pro

Re: Project from hell?

2004-05-14 Thread Jeff
T-designer support, I'm working on 'XML Schema / SWT rich-client with connections to controlled content web services plus authentication, authorization, XML document management, etc.' support in a generic tool. An order of magnitude disparity. Now, if only I was a marketeer instea

Re: Project from hell?

2004-05-14 Thread Jeff
ho use my web services want turnkey solutions. For them it's about access to scientific data. They want to operate at a higher level of abstraction than SOAP! Warmest regards, Jeff Cogent Logic Corporation Toronto, Canada - Original Message - From: "Galbreath, Mark

possible logic error in RPCHandler

2004-05-07 Thread Jeff Greif
ent.class.isAssignableFrom(destClass) Please pardon me if I have misunderstood the intent of this code. Jeff

Re: Error deploying web service in Axis 1.2 beta

2004-05-04 Thread Jeff Greif
installation. (See the installation guide.) I was unable to find in the Axis 1.2 beta docs information about where to get these jars, but the details are here: http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/lib/README.html Jeff - Original Message - From: jagannath To: [EMAIL

Re: xs:timeDate to Calendar Object

2004-04-27 Thread Jeff
You must be joking! For xs:timeDate W3C is clear: ISO 8601. Jeff Cogent Logic - Original Message - From: "Zach Hensley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 27, 2004 3:50 PM Subject: xs:timeDate to Calendar Object > It appears a

Re: no solution for: server-server-webservice

2004-04-21 Thread Jeff
{ return new java.net.PasswordAuthentication("UserName", "password".toCharArray()); } } then during initialization do: Authenticator.setDefault(new Auth()); Jeff Cogent Logic - Original Message - From: "Richard Alan Herz" <[EMAIL PROTECTED]&

Re: no solution for: server-server-webservice

2004-04-21 Thread Jeff
Hi Rick, This looks like a connectivity problem, e.g. proxy server (use java.net.Authenticator) or fire wall (reconfigure fire wall). Jeff - Original Message - From: "Richard Alan Herz" <[EMAIL PROTECTED]> To: "Axis Userlist" <[EMAIL PROTECTED]> Sent:

Re: AW: AW: AW: MessageContext.getCurrentContext() returnsnull

2004-04-01 Thread Jeff
I'll try this again... You need activation.jar and mail.jar in the class path. Yet another class path issue...it'll be the death of Java...I hope...perhaps J3SE can solve it before we move on to something better! Jeff - Original Message - From: "Tony Thompson" &l

Re: AW: MessageContext.getCurrentContext() returns null

2004-04-01 Thread Jeff
Yeah, you need activation.jar and mail.jar in the class path. Yet another class path issue...it'll be the death of Java...I hope...perhaps J3SE can solve it before we move on to something better! Jeff - Original Message - From: "Tony Thompson" <[EMAIL PROTE

encoding style for xml

2004-03-26 Thread JEFF EMMINGER
Title: encoding style for xml hello, If my service returns XML data, what encoding type should my client specify?  In apache SOAP, I used call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); thanks, jeff CONFIDENTIAL NOTICE: This email including any attachments, contains

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread JEFF EMMINGER
ubject: RE: [newbie] how to get soap-envelope xml? Use the tcpmonitor application provided with axis.  Read about it in the user-guide. -Original Message-From: JEFF EMMINGER [mailto:[EMAIL PROTECTED]Sent: Thursday, March 25, 2004 2:56 PMTo: '[EMAIL PRO

[newbie] how to get soap-envelope xml?

2004-03-25 Thread JEFF EMMINGER
Title: [newbie] how to get soap-envelope xml? hello, I'm writing a client, and I keep getting the error (405)Method Not Allowed How do I get the soap envelope xml that I'm sending to see what's wrong?  Thanks, Jeff CONFIDENTIAL NOTICE: This email including any attach

Re: java2wsdl include wsd file

2004-03-23 Thread Jeff Greif
" ...> http://schemas.xmlsoap.org/soap/encoding/"/> ... Jeff - Original Message - From: Oleg Lebedev To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 7:18 AM Subject: RE: java2wsdl include wsd file Hi Jagannath. See th

Re: Accessing Request Data With Axis WebService

2004-03-11 Thread Jeff Greif
NachrichtThe static method org.apache.axis.MessageContext.getCurrentContext() returns the MessageContext of the current request. From that you can find out just about anything (see the Axis FAQ and user guide and javadocs for MessageContext). Jeff - Original Message - From: Zedler

Re: Deployment in AXIS

2004-03-11 Thread Jeff Greif
org/apache/axis/server/server-config.wsdd (in axis.jar) deploys it Read the docs about wsdd options to find out about lifetime, etc. Read the architecture and user guides to find out about handlers. Jeff - Original Message - From: Senthil_KM To: [EMAIL PROTECTED] Sent: Thursday

Re: How to get infos about the deployed Web Services

2004-02-22 Thread Jeff Greif
Look at the documentation for org.apache.axis.client.AdminClient (which is used to (un)deploy services). It also has a command 'list' which lists the configuration of each service. The server side is org.apache.axis.utils.Admin which has a static method listConfig producing an xml docu

Re: Geting a file in WEB-INF from a web service

2004-02-14 Thread Jeff
m(new File(strWebInf + "/Stuff.txt"))); ByteArrayOutputStream baos = new ByteArrayOutputStream(); int nData = bis.read(); while (nData != -1) { baos.write(nData); nData = bis.read(); } bis.close(); baos.flush(); baos.close(); String strStuff = baos.toString(); Jeff - Original

Re: Dynamic invocation of web services with complex types

2004-02-13 Thread Jeff Greif
You can have one java class for all complex types -- use org.w3c.dom.Element or some simple wrapper class that might also include the xml type. You need to set up serializer/deserializer pairs for all such combinations. The WSDL would be read to determine these type mappings. Jeff

RE: running a webapp reload breaks happyaxis.jsp

2004-02-10 Thread Jeff Barrett
To be more clear, as my PS indicates I'm trying to effectively perform a webapp reboot. If there's some other way to reboot (read unload all classes from the classloader) an axis webapp without shutting down other running webapps, that'd be great. > -Original Message

running a webapp reload breaks happyaxis.jsp

2004-02-10 Thread Jeff Barrett
I've got tomcat 4.1.27, jdk1.3.1_09, axis 1.1 final running on a win2k machine with the sample axis webapp installed in %CATALINA_HOME%\webapps. I can start up catalina just fine and hit happyaxis.jsp with no probs. If I then go to tomcat's webapp manager and reload the app, returning to that

Re: Use of Message services

2004-02-06 Thread Jeff Greif
- Original Message - From: "Jeff Greif" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 05, 2004 1:55 PM Subject: Use of Message services > For obscure reasons, I am interposing a adaptor web service between a client > and the tar

Use of Message services

2004-02-05 Thread Jeff Greif
g. have all the operations in the WSDL the client sees use the same soap action associated with the adapter service?) Is some other alternative possible using some handler setting something in the MessageContext? Jeff

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
XML Schema documents that target the one GML namespace!) => useless for all but the most trivial of cases, again!   This stuff is still bleeding-edge :-)     Jeff     - Original Message - From: Brian Shields To: [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 12:16

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
up on Axis payload generation a while back because WSDL2Java has too many problems (I use a commercial product to generate the payload and Axis to wrap it in SOAP and handle message transmission/reception).     Jeff     - Original Message - From: Brian Shields To: [EMAIL PROTECT

Re: sending xml files as string parameters

2004-02-03 Thread Jeff
Try using:       Jeff   - Original Message - From: Brian Shields To: [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 10:11 AM Subject: sending xml files as string parameters Hi all, I am trying to send an xml file as a parameter in a web service

Re: How to tell Axis what WSDL to publish?

2004-01-30 Thread Jeff Greif
put /myWsdlFile.wsdl as a child of the element in your deployment descriptor and put the wsdl file in axis/WEB-INF/classes/ Jeff - Original Message - From: "Kartik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 30, 2004 10:51 AM Subject: How to

Re: WSDL with SOAP and HTTP GET/POST

2004-01-22 Thread Jeff
se it's junk! Or, if I was being nasty, I could have said because it's M$ Junk(TM)! HTTP GET/POST does not have good support for complex input parameters and does not support SOAP header content. It seems, however, that some folks like it for easy testing from HTML. Jeff - Origina

RE: Integrating Axis into an existing web application

2004-01-22 Thread Brown, Jeff (C2MS)
David Not sure if this information is helpful for tasking you've already accomplished . . . JAB -Original Message- From: Peter Mount [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 21, 2004 5:17 AM To: [EMAIL PROTECTED] Subject: Re: Integrating Axis into an existing web application

Re: Discovering the webapp path.

2004-01-07 Thread Jeff
SERVLETLOCATION).toString(); Jeff - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 07, 2004 2:45 PM Subject: RE: Discovering the webapp path. > > > > > > You can try the following: > > String realWebInfPath = c

SimpleDeserializer encountered a child element... documentation!

2004-01-06 Thread Jeff
ted to something like:       xmlType - the xsi:type QName of the associated XML type or, in the case of complex types, the QName of the associated XML element.   I shall also be grateful if someone could point me to where this is documented, if it is; that way I might not be so dumb in the future!     Warmest regards,   Jeff Lawson Cogent Logic Corporation Toronto, Canada            

Re: WSDL2Java does not create any output on complex XSD imports

2003-12-28 Thread Jeff
Yeah, I know...that's my point! Folks that design XML Schemas are not like us: they don't realize that if you get something wrong then the schemas won't work. We are left to sort out the mess!!! Jeff - Original Message - From: "Arno Huetter" <[EMAIL PROTE

Re: WSDL2Java does not create any output on complex XSD imports

2003-12-27 Thread Jeff
mas, e.g. directly referencing GML 3 and ISO19115 _but_ ISO19115 references GML 2 ... GML 3 and GML 2 are incompatible, of course!). Jeff Lawson - Original Message - From: "Arno Huetter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 22, 2003 8:20 A

Re: When is java.lang.SecurityException Thrown ??

2003-12-18 Thread Jeff Greif
order for the policy to be altered so it could run. 5.  If you change the security policy, you should make the changes as small as possible to let your client run, and scope them as narrowly as possible to prevent other less well-intentioned programs from benefitting.   Jeff - Original Me

Re: SOAP to DOM

2003-12-09 Thread Jeff Greif
try document.getDocumentElement().normalize() Jeff - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 09, 2003 6:41 AM Subject: SOAP to DOM > In a handler (axis BasicHandler type), I need to transform the soap part of >

Re: XML Schema for SOAP message

2003-10-31 Thread Jeff Greif
nly a wsdl-aware soap processor or the application can deal with this. Jeff - Original Message - From: Volkmann, Mark To: '[EMAIL PROTECTED]' Sent: Friday, October 31, 2003 8:53 AM Subject: XML Schema for SOAP message I'm looking for an example of an XML Schema that

Re: Strategy for WSDL versioning?

2003-10-28 Thread Jeff Greif
over successive version changes, and even harder to be sure about given the unforeseen ways users will invoke your service and manipulate the results. This is a hard or at least highly non-trivial problem whose answer in any particular case involves a lot of tradeoffs. Jeff

skeleton and its implementation

2003-10-01 Thread Jeff Guo
Hi, is there a way to dynamically pass a backend implementation in to a skeleton class generated by wsdl2java? In wsdd file, only the skeleton name can be specified in the class attribute, but how do I use the second skeleton constructor that takes a backend implementation. Thanks, Jeff

Mapping my own serializer deserializer to an array type

2003-09-12 Thread Jeff DePons
, Jeff org.xml.sax.SAXException: Bad types (class [Ljava.lang.Object; -> class com.webdeninteractive.bie.ws.ComplexTypeWrapper) at org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:285) at org.apache.axis.encoding.DeserializationContextImpl.startElem

Re: Schema checking problem about xsi:nil="true" & minOccurs="0"

2003-09-08 Thread Jeff Greif
n order to indicate no value. They are allowed to have the empty string as a value, so the xsi:nil attribute should not be present. Jeff - Original Message - From: "Cheng Po-wen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "·¨²Qªâ" <[EMAIL PROTECTED

Re: xmlns=" " in the doc\literal SOAP message

2003-09-02 Thread Jeff Greif
ual element declarations. The root element of the document, foo, can only be in the target namespace if it is global. Jeff - Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 02, 2003 9:50 AM Su

Re: xmlns=" " in the doc\literal SOAP message

2003-09-02 Thread Jeff Greif
lement) are always defined in the target namespace of the schema. Local elements are either in that namespace or in no namespace, depending upon whether their form is listed as "qualified" or not. Jeff - Original Message - From: "Cory Wilkerson" <[EMAIL PROTECTE

Re: schema imports

2003-08-21 Thread Jeff Greif
machinery to do this also. Jeff - Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 21, 2003 10:23 AM Subject: Re: schema imports Personally, I find the Schema specification pretty much infathomable. Bel

Re: Can methods in a service be overloaded

2003-08-19 Thread Jeff Greif
t difficult; I guess it's just a small part of a pretty substantial hunk of software and likely to fall through the cracks. Jeff - Original Message - From: "Jim Murphy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 19, 2003 12:01 PM Subject: Re

Re: question regarding axis in tomcat

2003-08-14 Thread Jeff Greif
I think so, and if you just run the WSDL file through xerces with validation turned on, it will tell you definitively. Jeff - Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 14, 2003 6:33 PM Subject:

Re: wsif nightly builds

2003-08-14 Thread Jeff Greif
http://ws.apache.org/wsif - Original Message - From: "Cory Wilkerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 13, 2003 12:10 PM Subject: wsif nightly builds Does anyone know what the wsif stuff is in the nightly builds? WS-I compliant build? Just curious, C

Re: question regarding axis in tomcat

2003-08-14 Thread Jeff Greif
art character for an NcName is any NameStartCharacter except ':', so Anne's chapter and verse below, allowing '.', will apply. But nobody is confused, right? Jeff - Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL

Re: MS and named types

2003-08-12 Thread Jeff Greif
, the type attribute is used when the declaration can use a built-in or pre-declared type definition. Otherwise an anonymous or is provided inline. Jeff - Original Message - From: "Charles Simon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 07, 200

Re: axis throwing a exception for bool..

2003-08-10 Thread Jeff Greif
The correct type is xsd:boolean. Jeff - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 10, 2003 6:53 AM Subject: axis throwing a exception for bool.. > Hi , > > While parsing a soap response ( response is below - from GS

Re: Is this a bug?

2003-08-07 Thread Jeff Greif
I think that when you use doc/lit operations, you must provide a each with a distinct SoapAction in the bindings, e.g. wsdlsoap:soapAction="http://mycompany.com/mySubtract"; . This might not be necessary if the Wrapped style is used, but better to be safe. Jeff - Original Message -

Re: WRAPPED services without wsdl

2003-08-04 Thread Jeff Greif
used. Jeff - Original Message - From: "Cory Wilkerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 04, 2003 8:33 AM Subject: RE: WRAPPED services without wsdl I guess my question is -- is xsi still valid in a doc/lit operation? It doesn't seem like it would be.

RE: Complex Type Deserialization

2003-08-01 Thread Jeff Poetker
: Subject: Fw: Complex Type Deserialization Jeff, Sorry for the incomplete solution I gave in the last mail. I realize my mistake when I think further. I think you might have to write a custom serialize and custom deserializer that uses the ArraySerializer and Deserializer

RE: Complex Type Deserialization

2003-07-31 Thread Jeff Poetker
ing array index 9 Message in string array index 10 Message in string array index 11 Message in string array index 12 Message in string array index 13 Message in string array index 14 Message in string array index 15 Message in string array index 16 Message in string array i

Re: ArrayOf_xsd_string/float/whatever

2003-07-31 Thread Jeff Greif
e of the item. There's also an attribute giving the dimensions. I haven't looked this up in the WSDL 1.2 spec, but presumably there is something equivalent to the wsdl:arrayType attribute that gives info to the WSDL processor in the absence of an instance document. I'm pretty sure

Complex Type Deserialization

2003-07-31 Thread Jeff Poetker
ray of strings is null, I don't get this exception, and the object is deserialized just fine. Thanks, Jeff Poetker

  1   2   >