Host WPF application on WEB
-
Hi All, 3 months ago i developed a WPF Application offline,and now i need to host this Application online. This app gets the function to Add,Edit,Delete,Search (and so on ...) records in the database so it use a Databinding and now i need to host it online so the client can connect on the web to insert or update the data . Can you suggest me which way is the best to host my App online using the Databinding? Thanks so much for your attention. ..if you need more details don't hesitate to ask me . :) Cheers
-
Hi All, 3 months ago i developed a WPF Application offline,and now i need to host this Application online. This app gets the function to Add,Edit,Delete,Search (and so on ...) records in the database so it use a Databinding and now i need to host it online so the client can connect on the web to insert or update the data . Can you suggest me which way is the best to host my App online using the Databinding? Thanks so much for your attention. ..if you need more details don't hesitate to ask me . :) Cheers
You should take a look at Silverlight[^]. You will obviously have to re-write some of your code, but if you app is already designed as a client/sever app you may find you are able to keep large parts of it. Silverlight at least uses a variant of XAML, so you may be able to reuse some of your GUI code. You could also consider an XMAL Browser application[^], but you will find your platforms are more restricted to IE & Firefox only and Windows only.
Simon
-
Hi All, 3 months ago i developed a WPF Application offline,and now i need to host this Application online. This app gets the function to Add,Edit,Delete,Search (and so on ...) records in the database so it use a Databinding and now i need to host it online so the client can connect on the web to insert or update the data . Can you suggest me which way is the best to host my App online using the Databinding? Thanks so much for your attention. ..if you need more details don't hesitate to ask me . :) Cheers
WPF apps don't run in a browser. However, Silverlight is a subset of WPF, and most of your stuff should workk with little/no change with the possible exception of database access. Silverlight REQUIRES the use of a web service to access a database, even if the database in question is on the same server as the web server.
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001 -
Hi All, 3 months ago i developed a WPF Application offline,and now i need to host this Application online. This app gets the function to Add,Edit,Delete,Search (and so on ...) records in the database so it use a Databinding and now i need to host it online so the client can connect on the web to insert or update the data . Can you suggest me which way is the best to host my App online using the Databinding? Thanks so much for your attention. ..if you need more details don't hesitate to ask me . :) Cheers
You could use Silverlight like the other two answers told you, or you could use Click-Once deployment to deploy your WPF app.
Regards, Nish
My technology blog: voidnish.wordpress.com Code Project Forums : New Posts Monitor This application monitors for new posts in the Code Project forums.
-
Hi All, 3 months ago i developed a WPF Application offline,and now i need to host this Application online. This app gets the function to Add,Edit,Delete,Search (and so on ...) records in the database so it use a Databinding and now i need to host it online so the client can connect on the web to insert or update the data . Can you suggest me which way is the best to host my App online using the Databinding? Thanks so much for your attention. ..if you need more details don't hesitate to ask me . :) Cheers
You can actually have a look at WPF XBAP applications[^]. XBAP files can be deployed on a web server and run in a web browser.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.
-
You could use Silverlight like the other two answers told you, or you could use Click-Once deployment to deploy your WPF app.
Regards, Nish
My technology blog: voidnish.wordpress.com Code Project Forums : New Posts Monitor This application monitors for new posts in the Code Project forums.
Nishant Sivakumar wrote:
Click-Once deployment to
He's talking about deploying on a web server - not about deployment in general. :)
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.
-
Nishant Sivakumar wrote:
Click-Once deployment to
He's talking about deploying on a web server - not about deployment in general. :)
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.
Abhinav S wrote:
He's talking about deploying on a web server - not about deployment in general.
Click-Once apps are typically deployed on a web-server and accessed via an Http URL.
Regards, Nish
My technology blog: voidnish.wordpress.com Code Project Forums : New Posts Monitor This application monitors for new posts in the Code Project forums.
-
You can actually have a look at WPF XBAP applications[^]. XBAP files can be deployed on a web server and run in a web browser.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.
Well, firstly thanks so much for your good answers, :) my app is very big there are also many Roles ,i like develop it with Silverlight but i am afraid i need time to do that as i have not a good experience,so i am researching also on the web to convert"WPF to Silverlight" . I am looking also WPF XBAP applications[^] because it is would be simple and faster but a doubt born is my self if it can support all the features of my App. Thanks so much for your support. Have a good time. :) Cheers