Tagged Questions

5
votes
3answers
445 views

Communication between PHP web app server layers on Amazon Web Services

I'm looking into developing a web application hosted on Amazon Web Services and I have a question regarding it's architecture. Looking at the diagram below from Amazon, they've got 3 layers; a web ...
3
votes
2answers
116 views

.NET processing queue communication between master and worker servers

I'm trying to figure out the best way to create a master - worker architecture for simple job delegation. 1 master process that delegates jobs to several worker processes. - The master needs to ...
3
votes
2answers
357 views

What are the best practices for building an SMS server

I am trying to build a system in which I have terminal nodes capable of sending/receiving SMS messages over a GSM network. I now need to construct a server solution which would send SMS messages ...
3
votes
3answers
430 views

Silverlight Client-Server Communication

I have a WPF application, that I want to port to Linux/Mac. The most logic way seems to split the application in two parts: client and server, and use Silverlight for the client UI, and run the ...
2
votes
2answers
95 views

Map/Reduce on a single server

Does it make sense to do map/reduce on a non sharded architecture ? Or, in other words, is it effective to do it on a single server.
2
votes
4answers
143 views

If I only use Tomcat and the server goes down, what are my options to keep the application looking like it is running?

I am considering using an architecture with just one server which will be Tomcat (as opposed to Apache with Tomcat). If Tomcat does down or gets out of memory, what can I do to Alert me of this in ...
2
votes
4answers
301 views

Web application architecture: Implementing MVC in the browser using a server as a repository of data and templates

What would be the advantages and disadvantages of implementing a web application with the following architecture: Simple server that simply serves JSON responses of data, and HTML with templates to ...
2
votes
3answers
350 views

which dbms is suitable for a mmorpg game server?

which dbms is suitable for a mmo rpg game server?
1
vote
1answer
54 views

What (software) framework would you use to build a telecoms application? [closed]

If you were to build a telecoms application what framework would you use? For example to build one of the following applications: sms messaging server, or an SMSC A media gateway supporting TDM, ...
1
vote
1answer
781 views

node.js multiplayer game server architecture

Say you're making a Texas Hold'em server. We have a single lobby and multiple rooms in which game sessions occur. At what level do you separate rooms? Initially I thought I'd spawn an instance of ...
1
vote
1answer
116 views

Infrastructure advice for multi-platform push notifications

we are planning to introduce push applications to our mobile apps (for Android phone and tablet, iPhone, iPad and Blackberry). Every 15 minutes we get a new set of data. This data is stored in an ...
1
vote
1answer
113 views

Multithreaded server using threadpool

I'm planing a multithreaded server (SCGI to be precise). Now, I know that the traditional approach using one thread per connection is not very scalable. I also don't want to use something fancy like ...
1
vote
1answer
180 views

How many clients can servers handle at a time?

I suppose the answer would depend a lot on what kind of activities the clients will have, but suppose I want to make a client/server architecture, which only involves of connecting and disconnecting. ...
1
vote
2answers
686 views

Client-Server Networking Between PHP Client and Java Server

I have a university project which is already 99% completed. It consists of two parts-website (PHP) and desktop (Java). People have their accounts on the website and they wish to query different ...
1
vote
3answers
346 views

Jboss for a 3-layered client server architecture

I'm designing a system where I have 2 nodes: 1 node with a web server that serves JSP pages, and forwards requests to web services in another node. In this other node, these webservices forward the ...
1
vote
6answers
354 views

What is the best architecture for multiple game servers that need to talk to each other?

The game is a low graphic (SVG) strategic game. Each server represents a Game Domain with its players. All servers should be able to talk to each other, as players can move (in the game) from domain ...
0
votes
0answers
45 views

MMO game server multi server exchange data

I am always thing how to design a high performance game server support millions of hot user online and play together. My architecture: Master server: receive client connection base on user id ...
0
votes
1answer
29 views

Is anyone aware of an open, relatively well supported framework to build telecoms applications on?

Examples of such applications might be: SGSN, MME, the various IMS CSCF platforms, an MSC-Server, and SMS server, a SIP proxy etc. Unlike the web services world which is awash with frameworks, it ...
0
votes
2answers
65 views

Simple Java Client/Server Architecture - Which tools?

I'm working on my Bachelor's dissertation and I decided to develop a client / server application. I already tried ActiveMQ but I'm not 100% sure if that is the right solution. The thing I need is ...
0
votes
0answers
22 views

Question about web architecture and Amazon on demand servers

This question is for developers that runs web applications . Can this be done ? I have web application that performs service . now when user register and buys this service Can I buy from Amazon ...
0
votes
0answers
79 views

What is the app architecture of a server-based mobile application? [closed]

Are server based apps like Facebook, Foursquare, etc built on web-view. If not, what is the ideal approach of client and server interaction for scaling the application. I designed an app in webview, ...
0
votes
1answer
149 views

Writing own HTTP server

I'm planning to write an HTTP Server: There will be two modules (L & P), both executables. One of those executables (L) will be listening to HTTP request and will simply forward it to other ...
0
votes
2answers
297 views

Opinions on Server Side vs Client Side Web Framework

I'm very curious about the community's opinions on server side frameworks (like Django and RoR) versus client side frameworks (like SproutCore and ExtJS). I know its a a bit of a false dichotomy ...
0
votes
3answers
571 views

Diagramming server connections in Visio - what direction should arrows point?

Suppose I would like to depict data flow between two servers in Visio. I have boxes to represent servers and arrows to represent communication / data flow. In this situation: Server A always ...
0
votes
1answer
90 views

What is a good reference for Server side development?

I am more interested in the design of the code (i.e functional design vs object oriented design). What are the best practices and what is the communities thoughts on this subject? Not that it should ...
0
votes
2answers
1k views

How do multiple servers work in sync for web application

Ok, I am a n00b at web applications, databases, servers etc. However, I have been trying to learn by going through questions in stackoverflow and also everywhere else on the web. I have two related ...