Hello everyone. I'm very new here (this is my first post) so I apologize in advance if this question has been asked before. I've done some research already, but I don't think I have found the right answer yet.
Ok..here's the set up.
VB.NET 2008 CE 3.5 Framework.
What we want to do is to have multiple applications using the same basic object information with the ability to pass the object's property values from one Application to another.
For example, the first application to run is a logon process that creates the object: obj_User with properties like User_Name and User_ID and so on.
This object information, (no methods required, just the property values) needs to be sent into another Application that is executed from the logon Application.
Our thought was to have a background service running that holds the object's information and the next Application can reference that object's information.
So, what is the best approach here? Interfaces, Reflection, Serialization, WCF? I'm familiar with the concept of an Interface but I have not worked with one directly.
Any discussion and help on this would be greatly appreciated and I again apologize if this topic has been covered before.
Thanks....
Loading
Eric OlsonPosted Apr 13, 2011, 6:40 AM
I thank you guys again for your input and taking your time to answer my post.
Sam HobbsPosted Apr 12, 2011, 10:15 PM
Sam HobbsPosted Apr 12, 2011, 1:01 PM
Andrew FensterPosted Apr 12, 2011, 9:15 AM
You should at least consider .Net remoting before picking WCF. It's much easier to learn.
I think Juval Lowy has the best WCF book around, but it isn't really a good introduction to the subject. After you figure out the basics, then his book starts to make sense.
Eric OlsonPosted Apr 12, 2011, 7:03 AM
It looks like WCF is the way to go here. I apprecaite the help guys. I will do some more research on WCF as I haven't used it all that much. If you guys could point me in the right direction I would really appreciate it.
Thanks again!
Sam HobbsPosted Apr 12, 2011, 12:48 AM
WCF is good for that. Interfaces and reflection won't help. Serialization won't help unless it is used with something else such ss WCF.
Andrew FensterPosted Apr 11, 2011, 3:07 PM