Sounds like you are having an issue with XML namespaces.
Here is a working example of a C# client communicating with a Java/AXIS1.2
server, exchanging data of complex (custom) types. The complex type
includes an xsd:dateTime .
http://dinoch.dyndns.org:7070/axis1....tCtService.jsp
One of the fundamental things you should do in order to get interop to
happen between Java/AXIS (in fact any Java web services stack) and .NET is
to take the "WSDL first" approach. This means define your interface between
client and server in WSDL, and then generate from that WSDL server-side
skeletons and client-side stubs, whether Java is the server and .NET is the
client, or vice versa.
If you start with an implementation, lets say a Java class and then just pop
that up as a webservice (AXIS has some nifty support for a .jws thing that
allows all public methods to be exposed as webservice methods), you will
have some difficulty getting interop to happen. Sure it is possiblre to
do a demo, but in more complex scenarios, you'll have trouble.
See also, this page:
http://wiki.apache.org/ws/FrontPage/Axis/DotNetInterop
--
-Dino
D i n o . C h i e s a AT M i c r o s o f t . c o m
"Lucvdv" <replace_name@null.net> wrote in message
news:lh1oo15gacoerv2f6a0mtlhmckvk9hrp0s@4ax.com...[color=blue]
> On Mon, 28 Nov 2005 15:20:22 +0100, Lucvdv <replace_name@null.net> wrote:
>[color=green]
>> On Mon, 28 Nov 2005 15:07:23 +0100, Lucvdv <replace_name@null.net> wrote:
>>[color=darkred]
>> > I tried sending it as an "xsd:date", but the server doesn't accept it
>> > (HTTP
>> > error "200 - Information not available").[/color]
>>
>> Oops. That error was caused by something else - the server itself seems
>> to
>> be down, I get the same error on its opening page.
>>
>> I'll try again when it is back up.[/color]
>
> The server is back up, and it still doesn't work: it ignores the date if I
> send it as xsd:date.
>
>
> [The server takes identity details including birthdate, and returns
> whether
> that person appears in a list. With xsd:date, it's as if the list is
> empty.][/color]