[ http://jira.codehaus.org/browse/XFIRE-768?page=comments#action_80711 ] 
            
xfireuser commented on XFIRE-768:
---------------------------------

In my Service Class:
public Class Book{
...
private Date date;
public void setDate(Date date)
{
this.date = date;
}
}

public Class BookServiceImpl{
....
public addBook(Book book){
System.out.println("callingDate: " + book.date); 
.....
}

use .NET client to call:
Book book;
...
book.date = DateTime.now;
BookService bs.add(book);
...


server output:
callingDate: null;

how to pass a dateTime DataType from ,NET to JAVA via xfire?



> Pass DateTime 
> --------------
>
>                 Key: XFIRE-768
>                 URL: http://jira.codehaus.org/browse/XFIRE-768
>             Project: XFire
>          Issue Type: Bug
>    Affects Versions: 1.2.2
>         Environment: .net 2.0
>            Reporter: xfireuser
>         Assigned To: Dan Diephouse
>
> In my Service Class has a method:
> public void setDate(Date date)
> {
>        System.out.println("callingDate: " + date);
> }
> use .NET client to call:
> client.setDate(DateTime.now);
> server output:
>          callingDate: null;
> how to pass a dateTime  DataType from ,NET to JAVA via xfire?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to