WebServices Query

  • Thread starter Thread starter poornima.venkataraman
  • Start date Start date
P

poornima.venkataraman

I have a device application with a database in it.I want to push the
tables from this database to the one in Remote SQL Server.I have
written the both the devce and the Windows application in VB.net.
The methods to accomplish the aboce are RDA,WebServices,Replication.
Now i do not know how to write a webservice and how to access form my
managed code.
Please tell me how to write a XML Webservice to access a remote
database from a SqlCe database and also access it in my
managed code
 
You cannot query a SQL Server CE database running on a device from a desktop
application using Web Services. The .NET Compact Framework does not support
hosting Web services. Also, Web Services for data replication are
notoriously slow and cumbersome. You should consider using merge replication
in your application. Failing that, consider RDA.
 
Back
Top