0

I have developed a business application using Silverlight, for data access I have used web service..(basicHttpBinding) (highly uses MS SQL Server - SP, Functions)

I want to convert same application to Desktop based application. I have tried in OOB.

  1. Using ComToolkit, ADO connection (best method for my project) but data comes very very slow (1 row in 5 sec.)

  2. Installed Application to client localhost. (but I don't want to go with this method. I want .exe type project..)

Now is there any good idea or suggestion? What to do in this situation?

jv42
  • 8,521
  • 5
  • 40
  • 64
Balu99
  • 31
  • 1
  • 5
  • Out of browser application or WPF isn't ok for you? – Rumplin Oct 05 '11 at 06:13
  • Wpf is ok for me but how to convert same application to wpf ..that i don't to change much codding. – Balu99 Oct 05 '11 at 06:17
  • The minimum effort for you to convert it to a desktop app is to use the out of browser application. To convert it to WPF you will need to change some code and XAML since it's not the same as Silverlight, but it will be faster then to rewrite the code to any other language. – Rumplin Oct 05 '11 at 06:45
  • yes the problem is changing code in wpf.. in updation of the application i have to change code in both.. that's why i want to prefer OOB. but in OOB big problem is access local database.. – Balu99 Oct 05 '11 at 06:51

1 Answers1

0

Well I would go for WPF, since it is the fastest way I think.

Please read this if it helps: http://forums.silverlight.net/t/3898.aspx

Rumplin
  • 2,703
  • 21
  • 45