Hi Rich,
      I have a web service that was implemented with AXIS 1.1.  One of the
service method has following signature.
      public TestSchedule CreateTestSchedule(TestSchedule ts) throws
Exception { ... }

      TestSchedule's definition listed below:

      public class TestSchedule {

      private Long id;
      private String targetServer;
      private String targetApp;
      private String targetAppVersion;
      private String testListXML;
      private boolean executed;
      private Timestamp executionTime;
      private String fileName;
      private Project project;

      ...

      }

      My client program is implemented in C# with WSE 1.0. When I invoke "
CreateTestSchedule", I received "Argument Type Mismatch". I suspect that
Timestamp type causes this exception as there is no Timestamp type in C#.
I've been playing with deploy.wsdd but without any luck. Any help is
appreciated.


Harry Wen


                                                                                       
                                                
                      "Hansen, Richard"                                                
                                                
                      <[EMAIL PROTECTED]        To:       "'[EMAIL PROTECTED]'" 
<[EMAIL PROTECTED]>                         
                      homson.com>              cc:                                     
                                                
                                               Subject:  RE: How to map 
java.sql.Timestamp in deploy.wsdd?                             
                      09/04/2003 01:45                                                 
                                                
                      PM                                                               
                                                
                      Please respond to                                                
                                                
                      axis-user                                                        
                                                
                                                                                       
                                                
                                                                                       
                                                




If you expect help you'll need to more specfic about what does not work.

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 04, 2003 3:28 PM
> To: [EMAIL PROTECTED]
> Subject: How to map java.sql.Timestamp in deploy.wsdd?
>
>
> Hi,
>       I have following specified in my deploy.wsdd.
>
>         <typeMapping encodingStyle
> ="http://schemas.xmlsoap.org/soap/encoding/";
>                   qname="ns30:Timestamp"
>                   serializer
> ="org.apache.axis.encoding.ser.BeanSerializerFactory"
>                   deserializer
> ="org.apache.axis.encoding.ser.BeanDeserializerFactory"
>                   type="java:java.sql.Timestamp"
>                   xmlns:ns30="http://sql.java"/>
>
>       However, I can't make it work with the C# client. Any
> suggestion will
> be much appreciated. Thanks.
>
>
> Harry Wen
>
>
>
>





Reply via email to