I have read that you can have a direct connection to SQL server with a clickonce application. But there is nothing out there about how to do it. I'm curious to know the restrictions on this, are we allowed a direct connection or do we have to move to an application server. If you have to move to an app server are both .net remoting and web services allowed
Thanks
T

clickonce accessing a sql server
Angelito
Thanks
T
Robert Wishlaw
Just set it up like you would on a normal form.
The only thing you might need to do is give permissions to the app... which you can request by going to the security page of the project properties. One of the permissions is SQLClientPermission.
HTH...
Alexandre M
You can perform any action withing an ClickOnce deployed app (It will have to be deployed requesting LocalMachine permissions) that you would do if you just copied the App locally to the machien and ran it.