| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 5 months |
| seen | yesterday | |
| stats | profile views | 6 |
|
Jan 27 |
accepted | Ideas to Implement a Game Center Module on Exsisting Web Application |
|
Jan 27 |
asked | Ideas to Implement a Game Center Module on Exsisting Web Application |
|
Dec 30 |
accepted | Ideas to implement generic web service |
|
Dec 29 |
comment |
Ideas to implement generic web service I think yes, servers get their broadcast data from a web service (this request is not continuous) and then start broadcasting this data once they run. Clients get this broadcast message when they get in range of a server (eg: when a person gets in 100m of a restaurant) and displays a message like "x broadcasts available near you" and then display a list of "objects". Here, server's broadcasting message have a common property called "BroadcastTitle" this is the -presumably- only common property of a server broadcast. Rest of the broadcast data is up to server itself. |
|
Dec 29 |
comment |
Ideas to implement generic web service Server is continously broadcasting, client is basically suppose to act like a receiver. So a client's job is (aside of parsing data etc...) scan for server's broadcast message around and parse the data it sends. That's why it should be -sort of- a generic client. If possible of course. |
|
Dec 29 |
comment |
Ideas to implement generic web service Think of client as an iPhone app which requests data of an object when you hold it's camera to it. So the client doesn't know what kind of object or data it's trying to query. Database queries will be held by service, which, server application can access. |
|
Dec 29 |
comment |
Ideas to implement generic web service Hmm, yeah nice idea. And for the extended security, i can encrypt the stored string etc... Thanks for the advice. |
|
Dec 29 |
awarded | Commentator |
|
Dec 29 |
comment |
Ideas to implement generic web service It'd be correct if this was the case. But your response gave me the idea. Contrary to what you said, my server should tell what kind of data it's sending so that the client will know what to expect. I'll check RavenDB thanks. |
|
Dec 29 |
comment |
Ideas to implement generic web service How will the client know what type of data it gets from the server then? Let's say I've launched this application for restaurants to broadcast their menus and promotions to clients, how will I add support for pharmacies later? Like, they can announce their contracted hospitals etc..? |
|
Dec 29 |
comment |
Ideas to implement generic web service Service has the responsibility of reading / writing data and server role applications should be able to query this service to access their stored objects. Computations may or may not be required on the service, but server applications can modify their own data. I don't like the idea of storing pure strings, was hoping to achieve it by binding this data to generic objects / classes or types. |
|
Dec 29 |
asked | Ideas to implement generic web service |
|
Dec 28 |
comment |
Entity Framework TPC Inheritance (Please shoot me now) Ok. Seems like I didn't understand your question then. I couldn't get why the downvote though... |
|
Dec 27 |
awarded | Citizen Patrol |
|
Dec 25 |
awarded | Supporter |
|
Dec 24 |
answered | Entity Framework TPC Inheritance (Please shoot me now) |
|
Dec 24 |
comment |
Properly disposing a WebRequest and StreamReader You're welcome. I see, you may not prefer the using statement, but since it ensures your objects will be disposed when they're done, you won't get lost in try{..}catch{..}finally{...} blocks. I personally find it easier to use. |
|
Dec 24 |
awarded | Teacher |
|
Dec 24 |
answered | Properly disposing a WebRequest and StreamReader |
|
Dec 24 |
revised |
Entity Framework TPC Inheritance (Please shoot me now) edited code section for readability |