BeanSerializerFactory question

2004-02-19 Thread Ryuusei Murakami
Hi. I have been trying to make a web service by using following classes; javax.agent.service.directory.ServiceDescrption: public interface ServiceDescription extends JasBean org.jagent.service.directory.BasicServiceDescription: public class BasicServiceDescription extends JasBeanImpl implements

Date object that loses time information?

2004-02-19 Thread Peter Wåhlander
Hello! Here is my problem: 1. I send an object that contains date(date+ time) objects from a C# visual studio application. soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/ xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/

Re: Date object that loses time information?

2004-02-19 Thread Rémi Bars
Do you use java.sql.Date or java.sql.Timestamp to retrieve date from database? - Original Message - From: Peter Wåhlander To: [EMAIL PROTECTED] Sent: Thursday, February 19, 2004 11:55 AM Subject: Date object that loses time information? Hello! Here

Re: Date object that loses time information?

2004-02-19 Thread Rein Reezigt
Read a timestamp in the Regatta class instead of a date. - Original Message - From: Peter Wåhlander To: [EMAIL PROTECTED] Sent: Thursday, February 19, 2004 11:55 AM Subject: Date object that loses time information? Hello! Here is my problem:

Error while restarting httpd

2004-02-19 Thread nishikant.deshmukh
Title: Error while restarting httpd Hi I am learning XML. I have downloded axis-c. I getting following error while restarting the httpd server. I am running redhat8 with Apache 4.1. Syntax error on line 215 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/modules/libaxiscpp_mod2.so

RE: Error while restarting httpd

2004-02-19 Thread nishikant.deshmukh
Thanks for quick response ... I have copied the xerces library file into libaxiscpp_mod2.so into /usr/lib, but error persists Cannot load /usr/local/apache2/modules/libaxiscpp_mod2.so into server: /usr/local/apache2/modules/libaxiscpp_mod2.so: undefined symbol:

problem with getTargetService

2004-02-19 Thread valerie . bauche
Hello I have a client and a service, with a handler on the client side and a handler on the server side. It works ok. But in my client handler I need to use msgContext.getTargetService() and it always return null !! If I try to use it in the server handler, it works. So, what's the problem with

RE: Error while restarting httpd

2004-02-19 Thread nishikant.deshmukh
While compiling mod_axix2.c am getting following warnings, can the cause any problem, source='mod_axis2.c' object='mod_axis2.lo' libtool=yes \ depfile='.deps/mod_axis2.Plo' tmpdepfile='.deps/mod_axis2.TPlo' \ depmode=gcc3 /bin/sh ../../../depcomp \ /bin/sh ../../../libtool --mode=compile gcc

RE: Error while restarting httpd

2004-02-19 Thread Kees van Dieren
It's really a long time ago I developed C++ code, but there are 2 common c++ compilers: g++ and gcc. Have you tried both compilers? Did you compile using the make file? -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Verzonden: donderdag 19 februari 2004 14:44

RE: Error while restarting httpd

2004-02-19 Thread luciano.fiandesio
Title: RE: Error while restarting httpd Sorry, but I believe that there is a specific mailing list for the C++ version of Axis. -Original Message- From: Kees van Dieren [mailto:[EMAIL PROTECTED]] Sent: Thursday 19 February 2004 14:52 To: [EMAIL PROTECTED] Subject: RE: Error

FW: Axis generated beans - to and from XML

2004-02-19 Thread Marepalli, Somesh
Hi: Any comments on my question below... Regards -Somesh -Original Message- From: Marepalli, Somesh Sent: Wednesday, February 18, 2004 12:00 PM To: [EMAIL PROTECTED] Subject: Axis generated beans - to and from XML Hi: I have generated Axis bean classes from a WSDL using

RE: Axis generated beans - to and from XML

2004-02-19 Thread luciano.fiandesio
Title: RE: Axis generated beans - to and from XML Hi, I don't understand 100% what you are asking...sorry :) For XML serialization/deserialization give a look at: http://domify.sourceforge.net/ L -Original Message- From: Marepalli, Somesh [mailto:[EMAIL PROTECTED]] Sent:

RE: Axis generated beans - to and from XML

2004-02-19 Thread Marepalli, Somesh
Title: RE: Axis generated beans - to and from XML We have Axis generated bean classes using our WSDL and schema.. I would like to serialize these bean classes as XML strings. I do not see any convenient methods / sample code from Axis API to do this So, my concern was if Axis

RE: Axis generated beans - to and from XML

2004-02-19 Thread luciano.fiandesio
Title: RE: Axis generated beans - to and from XML I did not dig into the Axis source, but I'm pretty sure that Axis uses reflection to discover bean properties and generate appropriate XML. -Original Message-From: Marepalli, Somesh [mailto:[EMAIL PROTECTED]Sent: Thursday 19

RE: Handlers and Marshalling

2004-02-19 Thread Brian Dillon (ext. 944)
Chris, Thanks, At what point should I try to force the marshalling ? Can this be done in the handler ? The reason I need to call the handler after the marshalling is that server context map which is used for the duration of a request needs to be unmapped, however if I unmap before the

RE: Handlers and Marshalling

2004-02-19 Thread chris
Yes, you can call the serialization framework from a handler. just get the MessageContext, create a dummy outputstream, and execute the Message.writeTo() command. /Chris -Original Message- From: Brian Dillon (ext. 944) [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 10:08

RE: Handlers and Marshalling

2004-02-19 Thread Brian Dillon (ext. 944)
But would the marshaller not just get called again after the handler has finished as per normal operation, which would still leave me with the same error ? Thanks, Brian -Original Message- From: chris [mailto:[EMAIL PROTECTED] Sent: 19 February 2004 15:38 To: [EMAIL PROTECTED] Subject:

Authentication HOWTO?

2004-02-19 Thread Thorsten Jungblut
Hi! is there somewhere documentation around, how to implement my own Authentication classes for axis services? In the wsdd file i add the lines requestFlow name=checks handler type=java:org.apache.axis.handlers.SimpleAuthenticationHandler/ handler

Re: Problem with RPC Datahandler attachment over jms (1.2alpha)- fixed by adding MimeHeader to Message created in SimpleJMSWorker

2004-02-19 Thread tnelson
By making this change starting at line 124 in SimpleJMSWorker.java: // take this out: //Message msg = new Message(in); // put this in: MimeHeaders header = new MimeHeaders(); header.addHeader(Content-Type, multipart/related); Message msg = new

REPOST: Character encoding problems sending UTF-8 back to client

2004-02-19 Thread Douglas Bitting
I apologize if this has come across already, but I still haven't seen it on the mailing list after 18 hours. All, I can't really figure out if I'm doing something wrong here or if there is a defect involved. Basically, I have a Japanese string that I'm attempting to send back to the client.

WSIF v.2.x ??

2004-02-19 Thread Rhett . DeWall
What are the plans for a new release of WSIF? What are the plans for the release of additional WSIF providers? Thanks.

QName identifiers for custom serialization

2004-02-19 Thread Jason McCormick
Hello all, I'm working through a webservice that is littered with objects that require customer serializers. I have all of the serializers written, but I'm a little unclear as to how to name them in the .wsdd and how to use them in the client code. For example an object of User, I'm

wsdl:fault and responseFlow

2004-02-19 Thread Brian Speight
All, In my WSDL I have a wsdl:operation defined, which includes a wsdl:fault definition. In the server-config.wsdd for the service that includes this operation there is a responseFlow defined so that I can log the response. This works as expected for normal responses. But when the fault

Retrieve objects from SOAP response

2004-02-19 Thread Parul . Joshi
Hi, I have a SOAP service that returns objects. I know the method works, cos' I can see the output in TCPMON, However when I try to retrieve them I get a StringIndexOutOfBoundException This is my code for creating and sending the request. I have registered all the appropriate Serializers and

Re: WSIF v.2.x ??

2004-02-19 Thread Aleksander Slominski
[EMAIL PROTECTED] wrote: What are the plans for a new release of WSIF? What are the plans for the release of additional WSIF providers? hi, it is good idea to post it to WSIF mailing list: wsif-user at ws.apache.org alek -- The best way to predict the future is to invent it - Alan Kay

Axis RPC WebService that returns an Document object

2004-02-19 Thread Ng, Richard
Hi, I need some directions or sample code of an RPC webservice that returns to a client an Document Object. I assume using the DocumentSerializerFactory will do the trick. -Rich Lex

fault sample in the Axis distribution

2004-02-19 Thread Rob Montalvo
Could anyone please tell me the command I would have to type to invoke the Employee Client at the command line? This sample happens to be installed in: C:\axis-1_1\samples\faults I was able to deploy the Employee service and I can see it when I enter the following URL in my browser:

Re: fault sample in the Axis distribution

2004-02-19 Thread Thorsten Jungblut
Hi! Unfortunately, there is not a readme file that explains how to launch the client to interact with the web service (like some of the other samples). javac -classpath