0

i have a desktop app which is created for image processing..now i want to convert it to a windows phone application, where picture will be taken and send to a server and image processing part will be done.but im confused how to make the server side, is it ASP.net pages or WCF service application? and how to communicate from phone to server?

can anyone guide me on this.Thanx in Advance :)

2 Answers 2

0

You don't need webpages, what you want is a webservice, from the client you just call the webservice passing your image and maybe some additional information, the webservice will consume it and put it in storage ( probably save it in database ).

0

Very general question.

you can do it with asp.net and use WCF if you want to. That is one way to have a site that is platform independant (provided you sort out the styling) as it is not hosted ont he device consuming it.

If you want to write an app directly for windows phone 7 ... then you probably want to use google ;) you can use Silverlight to make the UI adn things like transitions and general page layout is snazzy as (insert you own expletive) - and amusingly easy.

If you need a database that many users connect to or have a reason for centralising something and need communication over internet then WCF comes in very very handy. However you do not NEED it in all cases.

Windows phone 7 has some simple local storage mechanisms ... in fact i haven't written a WP7 app yet that really needs a WCF service behind it (and i'm a WCF junky).

HOwever i do not know of a way to go from windows forms -> wp7 directly. I imagine several people will have some software you can buy to do it though as there are always many people working on projects liek that.

If you want the simple route ... make an asp.net webpage and design it for WP7. However if you want something that has the WP7 experience then you want to play with WPF - it is fairly easy ... especially if you can play with expression blend. Expression blend is the tool that makes WPF/silverlight a lot of fun imo.

2
  • 1
    No, you can't use WPF to write WP7 apps. But you can use Silverlight for Windows Phone which happens to be similar as it is a XAML dialect.
    – Sascha
    Commented Jul 4, 2012 at 17:02
  • oh true true ... I use both far too much ... tend not to differentiate them enough. Commented Jul 4, 2012 at 17:08

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.