Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesJava Help

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:
  #1  
Old May 9th, 2003, 06:06 PM
yastreb yastreb is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Posts: 1 yastreb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Newbie, have many questions

Hi, i bought the book by Marty Hall-Servlets, but i havent used it for a year. But i now see i'll definitely use jsp to build my private website, as opposed to php. Though im not a programmer, i remember java but nothing about php... I need my site to probably be as complex as an online shop, but its purpose will be different, it is for now just to keep my personal files and sensitive info on a remote server. I might want to also use the same ubb board that you are using, even though i dont know anything about php.

So please tell me what software to use? The compiler i plan to use is borland jbuilder, and the server was recommended as apache in that book-is this the best server for speed? Also i don't understand that "tomcat can be integrated into apache server"-does it mean i have to download tomcat and apache? and use tomcat for jsp and apache for everything else?
Also if i were to do something with php or databases, what compilers/editors would you recommend?

Thanks.

Reply With Quote
  #2  
Old May 10th, 2003, 04:37 PM
Nemi Nemi is offline
Clueless llama
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Feb 2001
Location: Lincoln, NE. USA
Posts: 2,353 Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level)Nemi User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 2 Days 12 h 35 m 19 sec
Reputation Power: 111
Apache is an http server. It serves up files that are requested over port 80. JSP's and PHP files both need further interpretation when being requested, so apache needs to have something 'help' it serve those up. There is a module for php that plugs into apache that is called whenever you request a php file. Similarly, Tomcat is what is called when you request a jsp. It runs the script and then passes the output to apache which in turn serves it to the client (browser).

Technically, tomcat can act as a standalone http server. In other words, you could run tomcat and it would do everything without apache. However, strictly as an http server, apache is faster and more efficient so general practice is to install apache and then tomcat as a plugin.

The IDE you use (jbuilder) is fine. As long as you use something good, it really doesn't matter.

When I was using php, there was no real good free IDE. I used Homesite, which is not really an IDE like JBuilder is.

Reply With Quote
  #3  
Old July 28th, 2003, 12:26 AM
ramesh123 ramesh123 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2002
Location: india
Posts: 5 ramesh123 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via Yahoo to ramesh123
i wanted to use asp and jsp in a single server like apache and tomcat ..can i do that..i mean the jsp files will call the asp file and upon doing some work it will call the jsp page again.

in the mean while i should not loose any session information which i store from my jsp pages. and passing of data between jsp and asp also.

please help me if itis possible and if so how to do it.
is there a seperate plugin for asp in apache or how to do it. because some of the functionality i have to do it..in asp only.
Ramesh.s

Reply With Quote
  #4  
Old July 28th, 2003, 09:21 AM
substring substring is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Posts: 31 substring User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Quote:
So please tell me what software to use? The compiler i plan to use is borland jbuilder

JBuilder is a very good IDE. But be careful that JBuilder comes with proprietary classes. Those classes will not compile in another IDE or tool. Therefore, DO NOT use them.

IMHO, I like to use IDE that does not create a lot of overheads, and I like IDE that is pure Java. My personal choice is Eclipse.

But of course, you are free to choose whatever you are comfortable with.

Hope this helps.

Reply With Quote
  #5  
Old July 28th, 2003, 09:33 AM
ishnid's Avatar
ishnid ishnid is offline
kill 9, $$;
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Sep 2001
Location: Dublin, Eire
Posts: 5,696 ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level)ishnid User rank is General 8th Grade (Above 100000 Reputation Level) 
Time spent in forums: 3 Months 1 Week 6 Days 20 h 15 m 13 sec
Reputation Power: 1507
Quote:
Originally posted by substring
JBuilder is a very good IDE. But be careful that JBuilder comes with proprietary classes. Those classes will not compile in another IDE or tool. Therefore, DO NOT use them.

IMHO, I like to use IDE that does not create a lot of overheads, and I like IDE that is pure Java. My personal choice is Eclipse.


I haven't used Eclipse but would agree that you have to be careful with JBuilder.

Reply With Quote
  #6  
Old July 28th, 2003, 01:04 PM
Robert0380 Robert0380 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Atlanta, GA
Posts: 5 Robert0380 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
the software used here is called vbulletin (check my spelling) and it costs some dough. If you want free forum software i'd go with phpbb2 http://phpbb.com its just as professional looking and its free. you dont need to know php to set it up but it could help if u want to tweak some settings. you will need a database server also (MySQL works great). As far as an IDE goes, i personally like emacs or vim (if you are a windows user then ignore the vim part).

--my 2 cents

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Newbie, have many questions


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


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





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT