RE: Cape Clear SOA Editor Tool

2006-03-07 Thread THOMAS, JAI [AG-Contractor/1000]
Anne, Please send it to me as well if you are not sending to the group. Thanks Jai -Original Message-From: bruno wanadoo [mailto:[EMAIL PROTECTED]Sent: Tuesday, March 07, 2006 8:57 AMTo: axis-user@ws.apache.orgSubject: RE: Cape Clear SOA Editor Tool Anne. I too would lik

RE: I give up

2005-10-28 Thread THOMAS, JAI [AG-Contractor/1000]
I agree with Brice. Let's not forget the fact that Axis has played a key role in bringing SOAP technologies to where it is in the market today. It is always easier to complain about things you don't have than to volunteer and contribute to eliminate them. Thanks Jai -Original Message- Fr

RE: Weblogic and Axis 1.2 - packaging EJBs and axis

2005-07-19 Thread THOMAS, JAI [AG-Contractor/1000]
If you are adding Axis as a separate webapp, try adding your util jar to its manifest file. You can also add Axis servlet to your web application as opposed to having a separate one. Jai -Original Message- From: Krishnan Kannan [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 19, 2005 12:2

RE: sending very large attachments

2005-04-07 Thread THOMAS, JAI [AG-Contractor/1000]
More than Axis, it would be a problem with HTTP assuming you are using http transfer. HTTP has a limitation on size that varies slightly by implementation but from experience, anything over 10meg would be a problem. Jai -Original Message- From: Alex Milanovic [mailto:[EMAIL PROTECTED]

RE: Axis Client (java)

2005-04-07 Thread THOMAS, JAI [AG-Contractor/1000]
Title: Axis Client (java) Form a qname  for the object and add parameter using that: For exammple:   QName qnPerson = new QName("your-namespace-here", "Person");   ..  call.addParameter( "personArg", qnPerson , ParameterMode.IN );     Jai   -Original Message-From: Suzy

RE: attachments question

2005-04-05 Thread THOMAS, JAI [AG-Contractor/1000]
t; > > java.lang.RuntimeException: javax.mail.MessagingException: Error in > > input stream; > > nested exception is: > > java.io.IOException: End of stream encountered before final > > boundary marker. > > > > This method works when I call it f

RE: attachments question

2005-04-05 Thread THOMAS, JAI [AG-Contractor/1000]
both the string (confirmationCode) and the datahandler in the soap response. How do you mean 'make sure there is a typemapping registered for datahandler'? When you create a datahandler you have to specify a typemapping ("multipart/*"), right? Is there something else I'm missing?

RE: attachments question

2005-04-05 Thread THOMAS, JAI [AG-Contractor/1000]
If you are attaching an already created zip file, create data handler from FileDataSource. That way, you let datahandler to set the appropriate mime type. dhSource = new DataHandler(new FileDataSource(docFile)); Also make sure there is typemapping registered for DataHandler. Jai -Origina

RE: .NET cred

2005-03-29 Thread THOMAS, JAI [AG-Contractor/1000]
Have a look at org.apache.axis.transport.http.CommonsHTTPSender. ComonsHTTPSender::invoke() appends user credentials and other relevant info to http header before sending request. Hope it helps Jai -Original Message- From: John Windberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, March

RE: JavaBean Deserializer requires an Empty Constructor

2005-03-28 Thread THOMAS, JAI [AG-Contractor/1000]
Correction: what I meant by 'empty c-tor' is constructor with no args. Jai -Original Message----- From: THOMAS, JAI [AG-Contractor/1000] [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 9:28 AM To: 'axis-user@ws.apache.org' Subject: RE: JavaBean Deserializ

RE: JavaBean Deserializer requires an Empty Constructor

2005-03-28 Thread THOMAS, JAI [AG-Contractor/1000]
Jolly, JavaBeanSerializer expects standard bean which should have an empty c-tor and get/set methods for members. Jai -Original Message- From: jey g [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 9:24 AM To: axis-user@ws.apache.org Subject: JavaBean Deserializer requires an Empty

RE: Axis and .NET interop with dates

2005-03-24 Thread THOMAS, JAI [AG-Contractor/1000]
I think passing string representation along with a pattern would be more interoperable. Almost all platforms support dates in string format and patterns are pretty much standard too. Passing long value may not be desirable due to differences in implementation. Jai -Original Message- F

RE: Dime Attachments

2005-03-04 Thread THOMAS, JAI [AG-Contractor/1000]
"application/download"? Would that throw off the URLDataSource when it tried to read the information in? Shawn. > -Original Message- > From: THOMAS, JAI [AG-Contractor/1000] [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 03, 2005 5:54 PM > To: 'axis-user@ws.apac

RE: Dime Attachments

2005-03-03 Thread THOMAS, JAI [AG-Contractor/1000]
oesn't really work for us because we need to stream the data across the wire. Sometimes we can have attachments that are gigs in size, so we need to stream them into the output stream passed into the writeTo method. Shawn. > -----Original Message- > From: THOMAS, JAI [AG-Contractor/10

RE: axis client consuming an ejb service

2005-03-03 Thread THOMAS, JAI [AG-Contractor/1000]
: axis-user@ws.apache.org Subject: Re: axis client consuming an ejb service ah fantastic...i have an hashtable of trigger ... i have to leave all my hopes? On Thu, 3 Mar 2005 11:51:39 -0600, THOMAS, JAI [AG-Contractor/1000] <[EMAIL PROTECTED]> wrote: > Is 'Trigger' your bean o

RE: axis client consuming an ejb service

2005-03-03 Thread THOMAS, JAI [AG-Contractor/1000]
ss is jb-compliant. > > > > i'm using the bean(de)serializer bundled with axis. > > > > but reading the docs i have to right down a WSDD file for axis to axis > > implementation. > > > > i don't know where to write those informations

RE: axis client consuming an ejb service

2005-03-03 Thread THOMAS, JAI [AG-Contractor/1000]
ns for ejb. On Thu, 3 Mar 2005 10:26:56 -0600, THOMAS, JAI [AG-Contractor/1000] <[EMAIL PROTECTED]> wrote: > If your custom class is not a plain bean, you need to provide > serialization/deserialization > mechanism for this class and let Axis know of that by registering a

RE: axis client consuming an ejb service

2005-03-03 Thread THOMAS, JAI [AG-Contractor/1000]
If your custom class is not a plain bean, you need to provide serialization/deserialization mechanism for this class and let Axis know of that by registering a type mapping. Jai -Original Message- From: fabrizio picca [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 10:23 AM To:

RE: Dime Attachments

2005-03-02 Thread THOMAS, JAI [AG-Contractor/1000]
e requirements to get Dime functional? Shawn. > -----Original Message- > From: THOMAS, JAI [AG-Contractor/1000] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 02, 2005 4:06 PM > To: 'axis-user@ws.apache.org' > Subject: RE: Dime Attachments > > > Axis maig

RE: Dime Attachments

2005-03-02 Thread THOMAS, JAI [AG-Contractor/1000]
Axis maight not be using your datahandler implementation during deserialization. Why don't you try using standard datahandler with a valid datasource and see if that fixes your problem? Jai -Original Message- From: Shawn Konopinsky [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 20