Webapplication question

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
HuGoB
Forum Newbie
Posts: 2
Joined: Mon Feb 25, 2008 3:21 am

Webapplication question

Post by HuGoB »

Hello

I'm going to build a website which will offer customers something that I cannot tell for now.
The customers shall enter some parameters on the site. These parameters should be sent to a SAS institute software which is installed on the same server to make some calculations based on the parameters that the users has entered, and be sent back.

What is the name of this kind of programming? Can you give me some general tips about this kind of webapplications?
What is the flow of this kind of webapplications?

Thanks for all types of answers.
Best regards
HuGoB
User avatar
Ollie Saunders
DevNet Master
Posts: 3179
Joined: Tue May 24, 2005 6:01 pm
Location: UK

Re: Webapplication question

Post by Ollie Saunders »

What is the name of this kind of programming?
I wouldn't say that's a kind or style of programming at all. But it sounds like you are creating a front-end to communicate with a service. The word proxy also comes to mind.
Can you give me some general tips about this kind of webapplications?
It's generally much easier if there's an agreed specification by which you communicate with the service such as JSON or XML.
What is the flow of this kind of webapplications?
A search for the "Proxy design pattern" may be of interest.
Post Reply