So therefor I need to know how I can make the same effect in another way..
I mean I can't make a remote connection on a PDA so what can I do to control my object on the server
Visual C# Language
Brendan Grant wrote:
Would using a web service be an option for you
i've been in a similar situation, my best advice would be to use a webservice..
there are a few ways to accomplish this..
if IdeaBank, Subject, and Idea are all coming from a database somewhere, you can have your webservice call return a DataSet with with a DataTable for each.. This is the most painless way to do it, but isn't necessarily the best.
A better way would be to ensure that IdeaBank, Subject, and Idea all support Xml Serialization. This can be as simple as adding some attributes to their classes. After you've made them serializable, you can simple have a webservice return the IdeaBank object and manipulate it on the client. Any updates to IdeaBank that need to be persisted can be done through another webservice call..
So..you could have a GetIdeaBank() call (passing in an ID or something) along with an UpdateIdeaBank(IdeaBank UpdatedObject).. something similar to that..
Here's an article with a brief introduction to xml serialization with c#:
http://www.devhood.com/tutorials/tutorial_details.aspx tutorial_id=236