Re: Wrapped/Literal WSDL issue.

2005-02-19 Thread Anne Thomas Manes
Well, there are errors in the originally generated WSDL-- The type definitions are defined as SOAP Encoding types (tns2 namespace) rather than XSD types (default namespace), and I suspect that .NET would barf on these types. I can't tell you why RC3 is generating the funky > values for the attribu

Re: Java2WSDL ant task

2005-02-19 Thread Hollywood
Nevermind on this. Copy/Paste error I finally found! :( - Original Message - From: "Hollywood" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 19, 2005 9:30 AM Subject: Java2WSDL ant task > I have the following snippet in my build.xml file: > > > > > > > >

RE: basic question about axis

2005-02-18 Thread Vikas Phonsa
in tomcat to another server, should I expect it to work? Thanks again for your time. Vikas -Original Message- From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 5:12 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis > >AxisServlet

RE: basic question about axis

2005-02-18 Thread Brown, Mike
EMAIL PROTECTED] Sent: Thursday, February 17, 2005 6:33 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified in web.xml. For example, any requests for jws files

RE: Mapping correctly a array type in a bean

2005-02-18 Thread Arijit Mukherjee
2005 15:23 >To: [EMAIL PROTECTED] >Subject: Re: Mapping correctly a array type in a bean > >Wow!. I did this and it fixed my problem. I didn't have to use >the Eric's patch that I mentioned in another thread yesterday. >I am able to see the child containers fine. Is this t

Re: Mapping correctly a array type in a bean

2005-02-18 Thread Sebastien Mayemba Mbokoso
@Praveen Peddi it's not a work around or another hack. No use any patch. I able to see also the childs. I am working on a project with DB and Hibernate Framework. In the DB there are 32 tables and so many relationships together. Before to find that mapping practice Axis couldn't see all the child

Re: Mapping correctly a array type in a bean

2005-02-18 Thread Praveen Peddi
Wow!. I did this and it fixed my problem. I didn't have to use the Eric's patch that I mentioned in another thread yesterday. I am able to see the child containers fine. Is this type of bean definition OK? I mean I just want to make sure its not a hack or anything. If this is the right way to d

Re: Getting true Exceptions

2005-02-18 Thread Mariano Eloy Fernández
Hi, In fact, if a connect refused of type java.net.ConnectException occurs, the stub automatically deserializes it, putting an instance into AxisFault.detail. Mariano Eloy Fernández wrote: Hello, My webservice throws an Exception. This is reflected in the WSDL. http://schemas.xmlsoap.org/soap

Re: forcing registration of serializer/deserializer for beans that do not appear directly as args

2005-02-17 Thread Sebastien Mayemba Mbokoso
@Tim If you follow what i said in a first email on how to properly map an array bean (Bean[]) in the Bean. The explicit type mapping in the WSDD doesn't appear the next time. I am using Axis web service with that options : provider="java:RPC" style="wrapped" use="literal" Sebast

Re: Is there a way to get the auto-generated WSDL document at compile time?

2005-02-17 Thread Sebastien Mayemba Mbokoso
@Jay Do you try to perform all the needed process. I am talking about using first Java2WSDL and after WSDL2Java. Maybe if you use the right options in the first step (Java2WSDL) the generated WSDD shall be the same that you already created ? I strongly think the more difficult in the Axis Ant T

Re: Custom Deserializer/typeMapping problem

2005-02-17 Thread Sebastien Mayemba Mbokoso
of you who really understand the framework > would be much appreciated. > > > > There have been several similar threads on this with this one being the > closest to my problem, however the solution needs to be on the server not > the client: > > List: axis-user

RE: Is there a way to get the auto-generated WSDL document at compile time?

2005-02-17 Thread Jay Glanville
Just checking to see if anyone had an answer for this question ... JDG > From: Jay Glanville [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 15, 2005 11:15 AM > To: [EMAIL PROTECTED] > Subject: Is there a way to get the auto-generated WSDL > document at compile time? > > Hello all. > > W

Re: basic question about axis

2005-02-17 Thread Bill Keese
AxisServlet /services/* So every request with "/services/*" would be passed to the AxisServlet, right? Right Now how would the AxisServlet find the service / class that needs to be invoked? JWS files are found automatically; you don't have to do anything. For services that are wri

RE: basic question about axis

2005-02-17 Thread Vikas Phonsa
--Original Message- From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 4:33 PM To: [EMAIL PROTECTED] Subject: Re: basic question about axis I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified i

Re: basic question about axis

2005-02-17 Thread Bill Keese
I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified in web.xml. For example, any requests for jws files are routed to Axis: AxisServlet *.jws You can look at the web.xml in the sample app released with axis. Vik

Re: Custom Deserializer/typeMapping problem

2005-02-17 Thread Bill Keese
solution needs to be on the server not the client: List:   axis-user Subject:    (resolved) RE: deserializing nested complex types From:   Mitch Gitman usa ! net> Date:   2002-12-06 21:36:19   From my dd:         xmlns:baldue="http://balancedue.webs

Re: Axis sends weird SOAP requests

2005-02-17 Thread Anne Thomas Manes
It's true that, based on the WSDL definition for the getAll Products operation, Axis should send an empty body: . I would call this a bug. But, it's also true that this WSDL is not WS-I compliant becuase you have multiple operations with the same wire signature (an empty body). Systinet is able to

Re: forcing registration of serializer/deserializer for beans that do not appear directly as args

2005-02-17 Thread Tim K. (Gmane)
OK, it worked without doing anything special for the array. The extra classes are included in the wsdd and it works, but if a Bean[] appears explicitly as an argument of a method there's also an explictit type mapping in the wsdd for the Bean[], but not when using --extraClasses. It works, but I

Re: Deploy problems - any thoughts please

2005-02-17 Thread Sebastien Mayemba Mbokoso
Do you are trying to deploy some beans which contains another beans which contains another beans etc. I don't know exactly what Axis perform for discovering relationships in the beans. But i think it uses reflection or instrospection. Maybe there is no end in your relationship ! Maybe you have to i

Re: Problem with java2wsdl ant task for document/literal (was Re: webservice won't deploy at all)

2005-02-17 Thread Sebastien Mayemba Mbokoso
In the documentation, they say you can juste have either LITERAL or ENCODED for the Axis 'use' option. On Thu, 17 Feb 2005 12:47:05 -0500, James Black <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I removed > > style="wrapped" > use="literal" > > from my ant

RE : To any .NET friends out here...

2005-02-17 Thread Faucher, Christian
ECTED] Envoyé : jeudi, février 17, 2005 13:33À : [EMAIL PROTECTED]Objet : RE: To any .NET friends out here... Remove the namespace prefix from the global element names (NCName). See the attachments.   From: Faucher, Christian [mailto:[EMAIL PROTECTED] Sent: Februa

Re: axis on-the-fly wsdl generation problem

2005-02-17 Thread Michael Thome
Final followup, FYI. In the end, the problem turned out to be java2wsdl of wsdl2java of the following type of xsd fragment:                 It appears that it cannot handle the anonymous complexType when referenced by a subelement.  For instance, the approximate equi

RE: To any .NET friends out here...

2005-02-17 Thread Ioan Berbece
Title: Message Remove the namespace prefix from the global element names (NCName). See the attachments.   From: Faucher, Christian [mailto:[EMAIL PROTECTED] Sent: February 17, 2005 12:53 PM To: [EMAIL PROTECTED] Subject: To any .NET friends out here...   Hi,   I

re: Problem with java2wsdl ant task for document/literal (was Re: webservice won't deploy at all)

2005-02-17 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I removed style="wrapped" use="literal" from my ant task, java2wsdl, and now I can deploy my webservice. If I want to use the ant task to generate my files, how do I tell it to use document/literal wrapped. Thanx. - -- "Love is mutual self-giving that e

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread aveitas
Not sure if this fits your requirements, but if you want to use HTTP Basic Authentication **without** having the servlet container manage it for you, try using: org.apache.axis.handlers.http.HttpAuthHandler This class strips out the user name and password from the HTTP Headers and sets the userna

re: webservice won't deploy at all

2005-02-17 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have tried to get my webservice to deploy, and have had no luck. The other 4 deploy fine. I am including my deployment wsdd file to see if there is something that ~ is causing it to not deploy. Tomcat is showing no errors in the logs, and the modific

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread THOMAS, JAI [AG-Contractor/1000]
17, 2005 10:48 AMTo: [EMAIL PROTECTED]Subject: RE: Axis security, when web-app can't use Basic Web Authentication I like that solution, especially because of the ease of a client supplying credentials (call.setUsername()). But is there an interoperable solution that would work

RE: Axis security, when web-app can't use Basic Web Authentication

2005-02-17 Thread Sharam Fouladgar-Mercer
, February 17, 2005 11:22 AMTo: '[EMAIL PROTECTED]'Subject: RE: Axis security, when web-app can't use Basic Web Authentication There are couple of approaches you can take, but here's what I would do.    - Implement an Authentication handler and Authorization handler extending B

RE: JWS question

2005-02-17 Thread Patrick Martin
If you invoke it through SOAP, you will get a nice SOAP:Fault with more details of the error. HTH -Original Message- From: Dave Hoffer [mailto:[EMAIL PROTECTED] Sent: 08 February 2005 20:46 To: [EMAIL PROTECTED] Subject: JWS question I have a single java class that has two public metho

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread THOMAS, JAI [AG-Contractor/1000]
There are couple of approaches you can take, but here's what I would do.    - Implement an Authentication handler and Authorization handler extending BasicHandler    These handlers would directly invoke your authentication/authorization methods and validate credentials.   - Set authenticat

Re: Error generating WSDL with xsd:string attribute in AXIS 1.2RC2

2005-02-17 Thread thomas willomitzer
Hello. I've found a workaround to the problem stated below. Tracing through the Axis code i found out that the WSDL Emitter gets confused with namespaces. I've removed all simpleType's like I've left all enumer

Re: Wrapper/lit, Messaging Interop with .NET

2005-02-17 Thread Paul Callahan
You can certainly use message style... .NET can work with your XML Schema-defined message parts. A good way to test interop (from the message part standpoint) is to use the xsd.exe commandline utility in .NET to chomp your XSD file you have created for your Axis "message" style service. This wil

Re: one webservice won't deploy

2005-02-17 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sunil Kothari wrote: | Hi James, | If you are running Axis under Tomcat then look at Tomcat console or log | files. ~ I found no errors in catalina.out or server.log, which is why I am confused. - -- "Love is mutual self-giving that ends in self-recove

Re: one webservice won't deploy

2005-02-17 Thread Sunil Kothari
this transmission since data over the public Internet cannot be guaranteed to be secure or error-free. - Original Message - From: "James Black" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 17, 2005 7:10 PM Subject: re: one webservice won'

re: one webservice won't deploy

2005-02-17 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I use ant to deploy my webservices, and 4 of the 5 deploy. The one that doesn't, doesn't give any kind of error, it just doesn't get written into the wsdd file. Any idea why this may be happening? I don't even know where I should start looking. The webs

Re: array of recursive beans (doc/literal style)

2005-02-17 Thread Davanum Srinivas
and > better looking. ;) > > > "WSDL first, a good idea. (tm)" > > > > > From: Praveen Peddi [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 16, 2005 5:43 PM > > To: [EMAIL PROTECTED] > Subject

Re: serializer for Laszlo

2005-02-16 Thread Tom Klaasen
On the client side, we're using only Laszlo elements. We specify the URL, and Laszlo is supposed to fetch the WSDL and handle all communication. This is described at http://www.laszlosystems.com/lps-2.2/docs/guide/rpc-soap.html However, if I'm not mistaken, Laszlo uses Axis internally to handle

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-16 Thread Sebastien Mayemba Mbokoso
gt; programmer. Personally I find the use of "ArrayOfX" to be clunky in the WSDL > and XSD. But it reads more nicely in the serialized XML, and so I > generally prefer it in complex schema. In simple schema, I don't care. > > > -D > > > _

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-16 Thread Bill Keese
more nicely in the serialized XML, and so I generally prefer it in complex schema.  In simple schema, I don't care.         -D   From: Bill Keese [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 16, 2005 9:18 PM Cc: [EMAIL PROTECTED] Subject: Re: rpc/lite

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Bill Keese
  From: Praveen Peddi [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 16, 2005 5:43 PM To: [EMAIL PROTECTED] Subject: Re: array of recursive beans (doc/literal style) I don't really like the option 1. And I don't know how to go for option 2 :). I am trying to apply Er

Re: Where are WSS4J Binaries?

2005-02-16 Thread Venkat Reddy
You can get the snapshot at http://cvs.apache.org/snapshots/ws-fx/ On Wed, 16 Feb 2005 11:06:58 -0800 (PST), Ry. <[EMAIL PROTECTED]> wrote: > Hi, I am looking forward to using WSS4J in my project but I don't know > where to find the binaries from http://ws.apache.org/ws-fx/wss4j/. Can > someone p

RE: rpc/literal vs document/literal, and returning a list of objects

2005-02-16 Thread Dino Chiesa
on't care.        -D   From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 9:18 PMCc: [EMAIL PROTECTED]Subject: Re: rpc/literal vs document/literal, and returning a list of objects Dino - question for you.    The checkin comment for ArraySerializer v1.5 is listed bel

RE: Where are WSS4J Binaries?

2005-02-16 Thread Anderson Jonathan
No binaries exist.  Checkout from CVS and build.   -Jon From: Ry. [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 2:07 PMTo: [EMAIL PROTECTED]Subject: Where are WSS4J Binaries? Hi, I am looking forward to using WSS4J in my project but I don't knowwhere to find the binaries

Re: Where are WSS4J Binaries?

2005-02-16 Thread Kibaya E.
--- "Ry." <[EMAIL PROTECTED]> wrote: > Hi, I am looking forward to using WSS4J in my > project but I don't know > where to find the binaries from > http://ws.apache.org/ws-fx/wss4j/. Can > someone please point me in the right direction! > > I know this is not the ideal mailing list but I hope >

RE: array of recursive beans (doc/literal style)

2005-02-16 Thread Dino Chiesa
the AXIS server and the .NET server.  Just change the URL.    There's  no difference.  Except the .NET version is faster and better looking.   ;)     "WSDL first, a good idea. (tm)"     From: Praveen Peddi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 5:43 PMTo

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-16 Thread Bill Keese
jsp I know this must be a repeat, but I looked in the archive and did not see it. . . Is the arrays issue specific to AXIS v1.2? -Original Message- From: Praveen Peddi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 15, 2005 3:32 PM To: [EMAIL PROTECTED]; Anne Thomas Manes Subject

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-16 Thread Bill Keese
cs.jsp I know this must be a repeat, but I looked in the archive and did not see it. . . Is the arrays issue specific to AXIS v1.2? -Original Message- From: Praveen Peddi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 15, 2005 3:32 PM To: [EMAIL PROTECTED]; Anne Thomas Manes Subject

Re: serializer for Laszlo

2005-02-16 Thread Bill Keese
xsd:sequence dictates the order of the elements whereas xsd:all child elements can be any order. But I think everyone uses xsd:sequence, although the receiver of messages may be forgiving if the elements are illegally out of order. http://www.w3schools.com/schema/schema_elements_ref.asp Tom Kl

Re: Doubt on AXIS Handlers

2005-02-16 Thread Bill Keese
Wow, mail transport... the world's slowest RPC?  :-) And if that is still too fast, try: org.apache.axis.transport.postalmail Bill [EMAIL PROTECTED] wrote: Hi Kumar, Other than the HTTP Transport, Axis also provides a JMS Transport and a Mail Transport. See the following packages for de

Re: Memory Leak on server side

2005-02-16 Thread Bill Keese
nuary 2005 13:12 To: [EMAIL PROTECTED] Subject: Re: Memory Leap on server side Do you have multiple applications running on that instance of Tomcat, and if so, are you deploying the WAR files frequently? Like I mentioned last week, there is a mem leak in Tomcat when deploying over and over that will

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Praveen Peddi
Chiesa To: [EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 5:06 PM Subject: RE: array of recursive beans (doc/literal style) yes, our most recent messages crossed in the ether. From: Praveen Peddi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005

RE: array of recursive beans (doc/literal style)

2005-02-16 Thread Dino Chiesa
yes, our most recent messages crossed in the ether. From: Praveen Peddi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 2:34 PMTo: [EMAIL PROTECTED]Subject: Re: array of recursive beans (doc/literal style) The main problem seems to be in the axis response anyway. So I am

RE: array of recursive beans (doc/literal style)

2005-02-16 Thread Dino Chiesa
ednesday, February 16, 2005 2:21 PMTo: [EMAIL PROTECTED]; Eugene ShershnevSubject: Re: array of recursive beans (doc/literal style) I changed the wsdl. ContainerBean is now defined as (my changes are in blue):   

Re: forcing registration of serializer/deserializer for beans that do not appear directly as args

2005-02-16 Thread Sebastien Mayemba Mbokoso
I think u don't need to include anything special for your arrays. Generate all your stubs with the task WSDL2Java and look at in the deploy.wsdd if the extra classes are mapped. - Sebastien On Wed, 16 Feb 2005 12:12:53 -0800, Tim K. (Gmane) <[EMAIL PROTECTED]> wrote: > Yes, I do. Ah,

Re: axis on-the-fly wsdl generation problem

2005-02-16 Thread Michael Thome
As an in-progress followup, the lack of a stack dump is due to java bug 4872096 (see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4872096 ) which can be worked around by adding -Xint to the vm arguments. I'm currently getting (with the middle cut out): java.lang.StackOverflowError   

Re: Security Issue

2005-02-16 Thread Mike Barton
Joe, You might want to look at UDDI authentication mechanism, which is based on simple token exchange model. http://uddi.org/pubs/ProgrammersAPI-V2.04-Published-20020719.htm#_Toc25137739 Mike. Joe Plautz wrote: Hello, I'm looking for some guidance in the realm of security. I am in charge of cr

Re: forcing registration of serializer/deserializer for beans that do not appear directly as args

2005-02-16 Thread Tim K. (Gmane)
Yes, I do. Ah, I missed the --extraClasses option ... Do I need to also include anything special for the arrays to work (e.g.a B[] in addition to B)? Thanks. Tim Sebastien Mayemba Mbokoso wrote: Do you know all the object types of 'Object o' at run-time ? If you do maybe you can use Java2WSDL wit

Re: forcing registration of serializer/deserializer for beans that do not appear directly as args

2005-02-16 Thread Sebastien Mayemba Mbokoso
Do you know all the object types of 'Object o' at run-time ? If you do maybe you can use Java2WSDL with that more option : --extraClasses ? --- Sebastien On Wed, 16 Feb 2005 11:20:24 -0800, Tim K. (Gmane) <[EMAIL PROTECTED]> wrote: > > Hello, > > Using java2wsdl to generate the WSDL fr

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Praveen Peddi
  2005-01-27T21:21:29.000Z02005-01-27T21:38:41.000ZEnterprise Library1       - Original Message - From: Praveen Peddi To: [EMAIL PROTECTED] ; Eugene Shershnev Sent: Wednesday, February 16, 2005 2:20 PM Subject: Re: array of recur

RE: array of recursive beans (doc/literal style)

2005-02-16 Thread Dino Chiesa
ree with what .NET is expecting, .NET will deserialize nothing.   So you get null for the children.        From: Praveen Peddi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 12:40 PMTo: [EMAIL PROTECTED]Subject: Re: array of recursive beans (doc/literal style) Thanks for

RE: axis on-the-fly wsdl generation problem

2005-02-16 Thread Jay Glanville
> I've got a deployed service which is perfectly functional, > but for which > the ?wsdl option fails with a simple "Exception - > java.lang.StackOverflowError" message (without a stack dump > or any other > information). The tomcat/catalina logs are similarly > unhelpful. Also > interesti

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Praveen Peddi
ry 16, 2005 1:08 PM Subject: Re: array of recursive beans (doc/literal style) Try changing your WSDL so there is no additional ArrayOd_tns1_ContainerBean type. Basically, the definition of ContainerBean:         . . .      Not sure if this is

Re: Validating a document using WSDL?

2005-02-16 Thread Davanum Srinivas
sounds good On Wed, 16 Feb 2005 19:10:45 +0100, Carsten Ziegeler <[EMAIL PROTECTED]> wrote: > Davanum Srinivas wrote: > > Carsten, > > > > Do you want to share it? Please open a JIRA request for enchancement :) > > > Hmm, sure, I' not against sharing - but my solution currently runs > outside of

Re: Validating a document using WSDL?

2005-02-16 Thread Carsten Ziegeler
Davanum Srinivas wrote: Carsten, Do you want to share it? Please open a JIRA request for enchancement :) Hmm, sure, I' not against sharing - but my solution currently runs outside of Axis and alters for example the incomming message in order to append the schema information etc. But I could open

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Eugene Shershnev
Peddi To: [EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 12:39p Subject: Re: array of recursive beans (doc/literal style) Thanks for the response Dino. I am using Axis rc1.2 nightly build from Feb 8th. I think you are right regarding desinging the interfaces. Its b

Re: Validating a document using WSDL?

2005-02-16 Thread Davanum Srinivas
Carsten, Do you want to share it? Please open a JIRA request for enchancement :) thanks, dims On Wed, 16 Feb 2005 14:18:25 +0100, Carsten Ziegeler <[EMAIL PROTECTED]> wrote: > Carsten Ziegeler wrote: > > I'm searching for an easy way of validating an XML document against a > > WSDL file. This i

Re: array of recursive beans (doc/literal style)

2005-02-16 Thread Praveen Peddi
level elements array  but for the recursive elements, namespace is empty.   Any help is appreciated.   Thanks Praveen   - Original Message - From: Dino Chiesa To: [EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 11:59 AM Subject: RE: array of recursive beans (d

RE: array of recursive beans (doc/literal style)

2005-02-16 Thread Dino Chiesa
Is this a v1.2 RC thing, or are you using AXIS v1.1?  And, how are you designing the interface?  There is a line of thinking that says, if you want interop, then start by designing the interface in a platform-independent manner.  In other words, WSDL and W3C XML Schema.   This applies whe

Re: serializer for Laszlo

2005-02-16 Thread Paul Callahan
are you accessing the service via an Axis-generated stub? just asking since im interested in your laszlo setup On Wed, 16 Feb 2005 15:31:42 +0100, Tom Klaasen <[EMAIL PROTECTED]> wrote: > Hi all, > > We're looking at using openlaszlo (http://www.openlaszlo.org) in > combination with an Axis

RE: RE : problems invoking axis soap from an applet

2005-02-16 Thread Brown, Mike
, February 15, 2005 7:39 PM To: [EMAIL PROTECTED] Subject: Re: RE : problems invoking axis soap from an applet Is there no alternative to signing the applet? Have there been any bugs posted on axis to take care of this problem? p --- "Faucher, Christian" <[EMAIL PROTECTED]> wrote

RE: Parameterized constructors through Axis?

2005-02-16 Thread THOMAS, JAI [AG-Contractor/1000]
Yes, provided you implement a custom serializer for that object. Jai -Original Message- From: Morten Egelund Rasmussen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 6:32 AM To: [EMAIL PROTECTED] Subject: Parameterized constructors through Axis? Hi all! Simple question:

RE: No serializer found

2005-02-16 Thread THOMAS, JAI [AG-Contractor/1000]
Christian, We need a mapping for datahandler, something like this: QName qnDataHandler = new QName("http://schemas.xmlsoap.org/soap/encoding/";, "DataHandler"); call.registerTypeMapping(dhSource.getClass(), qnDataHandler, JAFDataHandler

RE: java.rmi.Remote Web Services and getInitParameter

2005-02-16 Thread Brown, Mike
Robert, I think your second option is the best route. I have used MessageContext to get a hold of my servlet's context and it works dandy. -Original Message- From: Robert Bateman [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 3:01 PM To: axis-user Subjec

Re: Minimal production environment for Axis application

2005-02-16 Thread Paul Callahan
you could look at Jetty--little more lightweight than Tomcat. -pc On Wed, 16 Feb 2005 10:21:28 +0300, Eugene Prokopiev <[EMAIL PROTECTED]> wrote: > Hi, > > I need minimal production environment for Axis application. For > org.apache.axis.transport.http.SimpleAxisServer I read in javadoc: "This >

Re: Validating a document using WSDL?

2005-02-16 Thread Carsten Ziegeler
Carsten Ziegeler wrote: I'm searching for an easy way of validating an XML document against a WSDL file. This is in order to test if the document is a valid request for the service. Does Axis provide some classes/functionalitity I could use? Or is there something else I can do? I read somewher

Re: IoC for Axis services

2005-02-15 Thread Eugene Prokopiev
How can I use any IoC framework (Spring?) with Axis for storing service configuration? Parameters for handlers is not quite. They are not support complex types and not work with services. http://opensource.atlassian.com/projects/spring/browse/SPR-371

Re: Element Name

2005-02-15 Thread Jerome Gagner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bill Keese wrote: > >> Is there a way to get axis to automatically do something like: >> >> >> >> >> >> >> >> > Did you use Java2WSDL to generate your WSDD file? Axis might put the > correct parameter names in the generated WSDL if the parame

Re: Element Name

2005-02-15 Thread Bill Keese
Is there a way to get axis to automatically do something like: Did you use Java2WSDL to generate your WSDD file? Axis might put the correct parameter names in the generated WSDL if the parameter names are specified in the WSDD file.Not sure though.

Re: RE : problems invoking axis soap from an applet

2005-02-15 Thread Philip Baruc
Is there no alternative to signing the applet? Have there been any bugs posted on axis to take care of this problem? p --- "Faucher, Christian" <[EMAIL PROTECTED]> wrote: > I am guessing you see this in applet log file. > > Axis (client) tries to write its log file. Since > you are running in

RE: Axis/.Net interop

2005-02-15 Thread Dino Chiesa
ROTECTED] Subject: Re: Axis/.Net interop Use SByte, Java uses signed bytes, .NET's byte is unsigned. - -Jerome

Re: Axis/.Net interop

2005-02-15 Thread Jerome Gagner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian Gladish wrote: > In searching the archives I found the following e-mail, but there does > not seem to be a resolution. > > > > http://marc.theaimsgroup.com/?l=axis-user&m=106917131020548&w=2 >

Re: java.rmi.Remote Web Services and getInitParameter

2005-02-15 Thread Elaine Nance
Bob, I rummaged a bit and found this link:

Re: java.rmi.Remote Web Services and getInitParameter

2005-02-15 Thread Robert Bateman
Elaine, You are correct - a properties file would be easier to use. Unfortunately, I'm the "contractor" on the project and the "employees" are using the web.xml file with different configurations to process the same code thru their Testing, QA, Staging and Production environments. They have *lot

Re: java.rmi.Remote Web Services and getInitParameter

2005-02-15 Thread Elaine Nance
It is easy to use a Whatever.properties file. Import java.util.Enumeration, java.util.Properties and java.util.ResourceBundle and use the methods from those. If your db is Oracle, otn has exact code samples in the Java samples. Works great. HTH, Elaine Robert Bateman wrote: I have a doc/lit b

RE: rpc/literal vs document/literal, and returning a list of objects

2005-02-15 Thread Dino Chiesa
cific to AXIS v1.2? -Original Message- From: Praveen Peddi [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 3:32 PM To: [EMAIL PROTECTED]; Anne Thomas Manes Subject: Re: rpc/literal vs document/literal, and returning a list of objects But what about the doc/literal issues relat

Re: Returning arrays to .Net (again)

2005-02-15 Thread Praveen Peddi
I think this will solve lot of people's problems (Well atleast mine, as I am still struggling with the issue :)).   Praveen - Original Message - From: Bill Keese To: [EMAIL PROTECTED] Sent: Sunday, February 13, 2005 7:54 PM Subject: Re: Returning arrays to

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-15 Thread Praveen Peddi
ution. Praveen - Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 15, 2005 12:47 PM Subject: Re: rpc/literal vs document/literal, and returning a list of objects And just to clarify... The difference be

Re: extend RPCProvider or custom provider; WSDL generation?

2005-02-15 Thread jim hopp
Discovered how to do this in Axis: pluggable providers. Axis's pluggable provider architecture permits you to specify that a service should use your provider rather than the Axis provider. The only doc I found on how to do this was in the code. Here's what I did: Basically you'll need to create

Re: Libraries to build source ?

2005-02-15 Thread Beytullah Yildiz
I tried both j2sdk1.4.2_01 and jdk1.5.0. Some of exceptions are: "IBMJSSESocketFactory.java": Error #: 302 : cannot access class com.ibm.crypto.provider.IBMJCE; java.io.IOException: class not found: class com.ibm.crypto.provider.IBMJCE at line 92, column 62 "BSF.java": Error #: 302 : cannot acces

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-15 Thread Anne Thomas Manes
And just to clarify... The difference between doc/literal and wrapped/literal is in the way you invoke the service -- the contents on the wire (the structure of the SOAP message) will be identical. In doc/literal, you input an object (javabean), and you return an object (javabean). In wrapped/lit

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-15 Thread Tom Oinn
Dan, My suggestion would be to use document / literal style. The data structure you describe is easy to define as an XML schema (by hand if you must, but I'd use something like XMLSpy). You can then create the requisite WSDL file referencing this schema, generate the server side Java classes ag

Re: rpc/literal vs document/literal, and returning a list of objects

2005-02-15 Thread Eugene Shershnev
Just one note here. If you require interoperability, you shouldn't use rpc/literal since .Net doesn't support it. You're better off with wrapped/literal which is "a flavour" of document/literal. - Original Message - From: "Dan Hobbs" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesd

Re: Doubt on AXIS Handlers

2005-02-15 Thread aveitas
Hi Kumar, Other than the HTTP Transport, Axis also provides a JMS Transport and a Mail Transport. See the following packages for details: org.apache.axis.transport.mail org.apache.axis.transport.jms So instead of communicating SOAP over HTTP, you would communicate SOAP over JMS or SMTP/POP3. A

RE : problems invoking axis soap from an applet

2005-02-15 Thread Faucher, Christian
Title: Message I am guessing you see this in applet log file.   Axis (client) tries to write its log file.  Since you are running in an applet, it tries to write on the client station.  Since it is not possible to write to the local disk from an applet sandbox, then you get this exception.   O

re: defining OUT parameter for use by java2wsdl

2005-02-15 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am curious if there is a way to define an OUT parameter for java2wsdl. It appears not to know how to handle javax.xml.rpc.holders.StringHolder, when I use that to define my parameter. Thanx. - -- "Love is mutual self-giving that ends in self-recovery.

RE: Libraries to build source ?

2005-02-14 Thread Brown, Mike
What version of the jdk are you using? What precisely is the exception you are getting? -Original Message- From: Beytullah Yildiz [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 2:32 PM To: [EMAIL PROTECTED] Subject: Libraries to build source ? Hi, Can anybody help me to find

RE: NoClassDefFoundError samples/userguide/example4/Client2

2005-02-14 Thread Brown, Mike
Did you make sure to declare your class in the samples.userguide.example4 package? Sorry if I offend but sometimes we tend to look over the obvious. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, February 13, 2005 9:03 AM To: [EMAIL PROTECTED] Subject

Re: Available Web Servies not generated correctly

2005-02-14 Thread W.Beck
I suffered from a similar problem. Though or because it turned out to be my sluttishness, I defined some basic rules for myself when chasing these kinds of weired bugs: - when building your project, clean first - after transfering the classes to axis check their size/date - same applies to the J

Re: Validating a document using WSDL?

2005-02-14 Thread Carsten Ziegeler
Bill Keese wrote: AFAIK Axis doesn't support this but if you write in document/literal or wrapped/literal mode, and separate out your schema definition into a separate XSD file, then you can use Castor to verify schemas. Haven't tried it though. See http://www-106.ibm.com/developerworks/webser

RE: How to automate the build process of writing web service clients

2005-02-13 Thread Rob Crusoe
Oh boy! You know what, i do have exactly such product !!   It does everything - just touch your mouse with your right palm, and it generates all - JSPs, colorful swing apps, EJBs and submits your project completion reports too!!   Just send two roubles to this address to get ur copy: Rob, Crusoe Is

  1   2   3   4   5   6   7   8   9   10   >