Web services are software systems designed to support interoperable machine-to-machine interaction over a network.
18
votes
8answers
719 views
API design: concrete vs. abstract approach - best practices?
When discussing APIs between systems (on the business level) there are often two different point of views in our team: some people prefer a more - lets say - generic abstract approach, other a ...
0
votes
3answers
116 views
Sleeping Web Server?
Are there any languages or even servers that instead of running a script on page load, (Apache/PHP, Ruby on Rails, ...) actually keep the code loaded and running forever, and when it receives a ...
3
votes
3answers
193 views
Is allowing voting without sign-in always a bad idea?
I have a mobile app from which I'd like to allow voting on Things. I don't want to force all the users to have to sign up using email/Facebook/etc. just so that I can properly limit voting.
Is it ...
2
votes
1answer
141 views
Building a strong robust client-server system
I need some help with regards to implement a pre-designed system that has 4 components and several constraints. I've spent approximately 50 hours trying to determine the best way to build this system; ...
0
votes
0answers
60 views
Advice needed on Process - Service Design
Need some advice from experts on designing a flow. Create a service that will read a csv file which may contain anywhere over 6000+ rows of individual ids as shown in the sample below.
Need to read ...
1
vote
4answers
121 views
Is Moving Entity Framework objects over a webservice really the best way?
I've inherited a .NET project that has close to 2 thousand clients out in the field that need to push data periodically up to a central repository. The clients wake up and attempt to push the data up ...
4
votes
1answer
194 views
Is a PHP file secure enough on a GoDaddy Server to hard code an AES salt into the file?
So I am creating a web api for an app I am making. The data is sanitized before it is sent to my web api and then encrypted before it is stored in my MySql server.
The phone app sanitizes then ...
0
votes
1answer
47 views
Do JAX WS implementation classes come as part of the Java 5/6 package or only as part of an application server libraries?
Do JAX WS implementation classes come as part of the Java5 package, as part of the Java6 package or only as part of an application server libraries like WAS?
I read that it comes as part of Java EE? ...
15
votes
4answers
412 views
How should I architect a RESTful webservice to use 3rd party (i.e. Google, Facebook, Twitter) for authentication?
For my job we have a nice RESTful webservice we've built out that we use to drive a couple websites we have. Basically the webservice lets you create and work with support tickets, and the website is ...
5
votes
3answers
299 views
Can a webservice that uses JSON over POST be classified as RESTful?
Recently I have started using a new(to me) paradigm for web services. I use the controller to accept JSON strings sent over POST, process it and return JSON strings. GET, PUT, DELETE and other methods ...
-1
votes
1answer
108 views
Create Dynamic Web Apps with IBM Worklight [closed]
I'm developing a web app using IBM Worklight. The first step is done, which is coding the HTML, navigating between pages, and using basic AJAX/javascript.
I need to get the data from a database (a ...
2
votes
4answers
95 views
Best way to test a reimplemented web service
In my team, we are about to start the reimplement of a service. One of the important steps to do to accomplish this is how do we ensure that we are doing it in the right way and we are not ...
0
votes
0answers
81 views
Recommended to Override init() method in Servlets but not init(ServletConfig config)
I was going through some concepts in Servlets. Here the recommendation is that we can freely override init() than init(ServletConfig config).
One reason I see is becasuse it is inherited from the ...
-2
votes
3answers
154 views
I want to build a java client library, where do I start? [closed]
I'm in my second java course at school and am thinking of developing a web service client library for one of my projects. I'd like the library to be able to query the MusicBrainz web service and have ...
1
vote
1answer
109 views
One web service multiple sites
I don't know whether this is even possible or I imagine (according to my habit of over thinking) will bring through numerous issues but let me give it a go.
I have an idea where I would like a single ...