Beginner Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherBeginner Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old August 19th, 2002, 11:32 AM
mike.chan mike.chan is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Posts: 2 mike.chan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Need help to start...

Dear all,

I'm a application developer but I'm new to web-based application development. Can anyone let me know how to start this up? All I know was the it's about 3-tiers architectures with a database server, application server and a client brower. Can anyone let me know the relationship about them and how can I set up these servers and make them work.

I'm new to the web technologies and I don't know much on those XMLs, EJB, etc...

Any help is appreciated.

Mike

Reply With Quote
  #2  
Old August 20th, 2002, 05:44 AM
AlCapone's Avatar
AlCapone AlCapone is offline
Mobbing Gangster
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Sep 2001
Location: "Best City" 2002 and 2003- Melbourne, Australia
Posts: 4,913 AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 h 36 m 31 sec
Reputation Power: 13
Send a message via ICQ to AlCapone Send a message via AIM to AlCapone Send a message via Yahoo to AlCapone
Would you describe in more details what is that exactly you want to do?
__________________
And you know I mean that.

Reply With Quote
  #3  
Old August 20th, 2002, 09:48 AM
ScottBP ScottBP is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: CA US
Posts: 62 ScottBP User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
There are about 1 million answers to your question, but here is some basic information. Obviously the application server will run your program code, the database server will store your database data. The web server will serve the pages you code to the users (or client), and the client is the browser you use. When they talk about these servers they can be on the same physical computer, larger application may use different machines.

The relationship is basically the web server serves up the pages to the browser, the application server will process you code on the server and push the results to the client through the web server. The database server typically will not directly interact with the client, but will sit behind the application server and serve data to the program.

Depending on the language you intend on programming in will depend a lot on the answers. For example here if you were going to be programming in PHP using mySQL Database server (A very powerful combination, pretty easy to learn, and free Open Source). You could setup a web server on your local development computer to learn. Later you will need to find a public computer if you do not have one yet.

One of the easiest ways to setup is to use an install program that will install everything for you like PHPTriad (http://www.phpgeek.com/). To learn the installs you can download each and install:
Apache Web Server - http://httpd.apache.org/
PHP - http://www.php.net/
mySQL - http://www.mysql.com
phpMyAdmin - http://phpwizard.net/projects/phpMyAdmin/

Once installed on your PC you are ready to get started, there are many basic tutorials out there http://www.hotscripts.com/PHP/Tips_and_Tutorials/.


I hope this helps,

Scott
__________________
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Scott B. Pier
ScottBP@amalla.com
http://www.amalla.com

Reply With Quote
  #4  
Old August 20th, 2002, 08:25 PM
mike.chan mike.chan is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Posts: 2 mike.chan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for the fruitful information. It seems I have a long way to go.

Can I set up a say, win 2000 professional or winxp environment in order to make all these servers in a single machine? Or they all depends on the OS.

Actually what I want to do is to set up a machine, have these DB/servers installed and try to write some code and have a look and feel before I do some serious stuff for my project.

As I used to work in the client/server side, I don't have much idea on set up web applications.

Thanks for any help.
Regards,
Mike

Reply With Quote
  #5  
Old August 20th, 2002, 08:54 PM
AlCapone's Avatar
AlCapone AlCapone is offline
Mobbing Gangster
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Sep 2001
Location: "Best City" 2002 and 2003- Melbourne, Australia
Posts: 4,913 AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level)AlCapone User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 h 36 m 31 sec
Reputation Power: 13
Send a message via ICQ to AlCapone Send a message via AIM to AlCapone Send a message via Yahoo to AlCapone
Those 'relations' of 3 tiers... it is pure logical approach. They are not separated in no way. Thus only servers you need is http and some db.

Reply With Quote
  #6  
Old August 21st, 2002, 08:47 AM
ScottBP ScottBP is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: CA US
Posts: 62 ScottBP User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
mike.chan,

I have my development system build on a Win2000 machine and have had it built on a Win98 machine in the past. My production / live servers are typically Linux based. The key I have found is to try and match the development machine as closely to the production server I plan to use. My dev and live servers both have the same configuration except one is Win2K and the other Linux. This way when you are testing your programs you do not upload to a live server and find it doesn't work because they are using X server and you are using Y. For this reason I use Apache web server on dev, most web servers for live are Apache if you are planning to use a Linux based server. PHP and mySQL both run fine on a windows based machine, so you will have a pretty good match to a live server.

As far as the shift in concept to programming for the web, typically the basic principals apply. Once you get the dev server up and running (phpTriad) will help that a lot, you can start with some basic scripts to get the hang of the process. With PHP the basic process is to make a static web page using HTML and then you can embed PHP code into the page to make it do something.

Hope this helps,

Scott

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherBeginner Programming > Need help to start...


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway