A
Alessandro
Hi !
I have a function on a web service that return a dataset with a datetime
attribute.
Name Birth
Paul 15/09/2003
when i debug web service and call this function i have this :
<NewDataSet xmlns="">
- <Table diffgr:id="Table1" msdata:rowOrder="0">
<Name>Paul</Name>
<Birth>2003-09-10T00:00:00.0000000+02:00</Birth>
</Table>
But if i call this function from a pocketPC application:
dim oDataset as dataset
oDataset = oService.getPeople( )
in oDataset rows.... the attribute Birth has this value: 09/09/2003 15:00
............................
any idea how to solve this problem ???
I have a function on a web service that return a dataset with a datetime
attribute.
Name Birth
Paul 15/09/2003
when i debug web service and call this function i have this :
<NewDataSet xmlns="">
- <Table diffgr:id="Table1" msdata:rowOrder="0">
<Name>Paul</Name>
<Birth>2003-09-10T00:00:00.0000000+02:00</Birth>
</Table>
But if i call this function from a pocketPC application:
dim oDataset as dataset
oDataset = oService.getPeople( )
in oDataset rows.... the attribute Birth has this value: 09/09/2003 15:00
............................
any idea how to solve this problem ???