Tagged Questions
3
votes
1answer
309 views
Should web service response use a base class or generic class?
In my RESTful WCF web service I have something like the following response object.
public class WebResponse<T>
{
public bool Success { get; set; }
public T Data { get; set; } ...
1
vote
1answer
100 views
Security using jsonp
I'm writing an app that will make available a set of api functions that require cross site scripting to work. I'll be utilizing jsonp which will allow other developers to consume these services for ...
5
votes
3answers
2k views
Best method of communication between your app and your website? PHP, Web service, etc
I am creating an application which I would like to have communicate with my website. The app will have to get data for a particular app user from the website's database. I am unclear as to the best ...
3
votes
3answers
246 views
Feedback on this back-end stack
I'm planning to setup an scalable architecture capable of providing web services on a REST interface where JSON will be sent as a result.
The web services will be quite simple for a CRUD web 2.0 app.
...
3
votes
1answer
625 views
synchronization web service methodologies or papers
I am building a web service (PHP+JSON) to sync with my iphone app. The main goals are:
Backup
Provide a web view for printing / sorting, manipulating.
allow a group sync up and down.
I am aware of ...