Computing Internet Books
Related Subjects: Programming Internet Computer Design Operating Systems
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Used price: $26.60

Sadly outdatedReview Date: 2008-07-29
Great Tomcat ReferenceReview Date: 2008-03-20
**** RECOMMENDED
Any advanced computer collection strong in Java programming needs this.Review Date: 2008-01-06
Very disappointedReview Date: 2007-03-10
The second edition is now availableReview Date: 2007-11-03
In many cases Tomcat is a good choice for a web server, and it is well suited as a high performance production web server. It is also a free and open source servlet and JSP engine. You can use it by itself or with other web servers such as Apache httpd. The book is a user's guide for Tomcat, not a tutorial on how to write web applications. That misunderstanding might have had some readers disappointed. Thus, you don't need to be a programmer to understand the book - it is targeted more at system administrators. The following is a run down of the table of contents:
Chapter 1. Getting Started with Tomcat - explains how to install Tomcat, get it running, and test it to make sure that it's functioning properly.
Section 1.1. Installing Tomcat
Section 1.2. Starting, Stopping, and Restarting Tomcat
Section 1.3. Automatic Startup
Section 1.4. Testing Your Tomcat Installation
Section 1.5. Where Did Tomcat Come From?
Chapter 2. Configuring Tomcat - shows the various places to look for information about your server, how to find out why things aren't working, and gives you some examples of common mistakes in setting up and configuring Tomcat.
Section 2.1. A Word About Using the Apache Web Server
Section 2.2. Relocating the Web Applications Directory
Section 2.3. Changing the Port Number from 8080
Section 2.4. Java VM Configuration
Section 2.5. Changing the JSP Compiler
Section 2.6. Managing Realms, Roles, and Users
Section 2.7. Controlling Sessions
Section 2.8. Accessing JNDI and JDBC Resources
Section 2.9. Servlet Auto-Reloading
Section 2.10. Customized User Directories
Section 2.11. Tomcat Example Applications
Section 2.12. Common Gateway Interface (CGI)
Section 2.13. The Tomcat Admin Webapp
Chapter 3. Deploying Servlet and JSP Web Applications in Tomcat - shows web applications composed of servlets, JSPs, and other files, and several approaches for deploying them. It ends with a discussion of the Manager web application, which can handle some deployment operations for you.
Section 3.1. Hosts
Section 3.2. Layout of a Web Application
Section 3.3. Deploying an Unpacked Webapp Directory
Section 3.4. Deploying a WAR File
Section 3.5. Hot Deployment
Section 3.6. Working with WAR Files
Section 3.7. The Manager Webapp
Section 3.8. Automation with Apache Ant
Section 3.9. Symbolic Links
Chapter 4. Tomcat Performance Tuning - some ideas on performance tuning the underlying Java runtime and the Tomcat server itself so that you service requests more efficiently.
Section 4.1. Measuring Web Server Performance
Section 4.2. External Tuning
Section 4.3. Internal Tuning
Section 4.4. Capacity Planning
Section 4.5. Additional Resources
Chapter 5. Integration with the Apache Web Server - covers the use of Tomcat with Apache httpd and talks about the several ways of making Tomcat thrive in front of or behind an Apache httpd installation.
Section 5.1. The Pros and Cons of Integration
Section 5.2. Installing Apache httpd
Section 5.3. Apache Integration with Tomcat
Section 5.4. Tomcat Serving HTTP over the APR Connector
Chapter 6. Tomcat Security - details about what security is and how to improve it in your Tomcat installation.
Section 6.1. Securing the System
Section 6.2. Multiple Server Security Models
Section 6.3. Using the SecurityManager
Section 6.4. Granting File Permissions
Section 6.5. Setting Up a Tomcat chroot Jail
Section 6.6. Filtering Bad User Input
Section 6.7. Securing Tomcat with SSL
Chapter 7. Configuration - Using realms this chapter shows how to set up an example JDBC domain to talk to a relational database. Realms are lists of users authorized to implement specific sections of your web site. Many of the other configuration changes you can make are discussed too.
Section 7.1. server.xml
Section 7.2. web.xml
Section 7.3. tomcat-users.xml
Section 7.4. catalina.policy
Section 7.5. catalina.properties
Section 7.6. context.xml
Chapter 8. Debugging and Troubleshooting - Ways to look for information that helps discover why things aren't working and gives examples of mistakes that are commonly made but may not be obvious. Also discusses why Tomcat may not shut down gracefully and what to do about this common problem, as well as ways of preventing abnormal shutdowns from recurring.
Section 8.1. Reading Logfiles
Section 8.2. Hunting for Errors
Section 8.3. URLs and the HTTP Conversation
Section 8.4. Debugging with RequestDumperValve
Section 8.5. When Tomcat Won't Shut Down
Chapter 9. Building Tomcat from Source - How to compile your own Tomcat in case you don't want to run a prebuilt binary release of it. Gives step-by-step instructions on how to install the Apache Ant build tool, download all necessary support libraries, and build your Tomcat.
Section 9.1. Installing Apache Ant
Section 9.2. Obtaining the Source
Section 9.3. Downloading Support Libraries
Section 9.4. Building Tomcat
Chapter 10. Tomcat Clustering - Some options for running multiple Tomcat servlet containers in parallel for both fault tolerance and higher scalability, while discussing the pros and cons of various clustering approaches.
Section 10.1. Clustering Terms
Section 10.2. The Communication Sequence of an HTTP Request
Section 10.3. Distributed Java Servlet Containers
Section 10.4. Tomcat 6 Clustering Implementation
Section 10.5. JDBC Request Distribution and Failover
Section 10.6. Additional Resources
Chapter 11. Final Words - Overview of the Tomcat open source project's community resources, including docs, mailing lists, and other web sites.
Section 11.1. Supplemental Resources
Section 11.2. Community
Appendix A. Installing Java
Section A.1. Choosing a Java JDK
Section A.2. Working Around Older GCJ and Kaffe JVMs
Section A.3. Sun Microsystems Java SE JDK
Section A.4. IBM J9 JDK
Section A.5. BEA JRockit JDK
Section A.6. Apple Java SE JDK
Section A.7. Excelsior JET
Section A.8. Apache Harmony JDK
Appendix B. jbchroot.c
Appendix C. BadInputValve.java
Appendix D. BadInputFilter.java
Appendix E. RPM Package Files

Used price: $21.00

Best Tech Book I ever readReview Date: 2008-04-03
This book was the best on the topic that I have read.Review Date: 2007-12-27
I liked this book so much that I also bought the ASP.NET, SQL, and Visual Basic 2005...all topics I need to brush up on. As far as I can tell these other books follow the same great format.
From someone who thousands of dollars worth of technical and programming books...these are great even for beginners. However if you are not familiar with vb2005 get murach's visual basic 2005 to read first.
Highly Recommended for Someone Wanting to Learn ADO.NETReview Date: 2007-11-03
Another Winner from MurachReview Date: 2007-10-26
The best part of Murach books (including this one), aside from the paired page layout, is that they make no assumption about the reader's skill level, and cover enough background on each topic to ensure that you will come away with a thorough understanding of not just what and how, but also why.
Both beginner and expert programmers alike will find this book extremely useful, and it's a great addition to the Murach family of programming reference and tutorial books.
To the point!Review Date: 2007-10-04
This book doesn't cover all the theory in the world about a topic. Also, not all topics. But it tells you how to use them and what to watch for.
I am glad to have read it.

Used price: $26.94

Great guideReview Date: 2008-02-12
Great overview of modifying the wrt54gReview Date: 2007-11-12
I'd love to see information on writing software for these devices in the future. The book is good at showing you how to take what is out there and apply it to what you have. However, I'm starting to dig into developing applications for this platform and piecing things together off of the web can be a bit tedious.
Great book by knowledgable authors but...Review Date: 2007-08-24
I would have given this book a 5 star rating but it unfortunately covers too much info about using the OpenWRT "White Russian" firmware instead of the new NVRAM replacement firmware called OpenWRT "Kamikaze". In their defense though I acknowledge that at the time of print the OpenWRT "Kamikaze" stable version was finally released. But anyone needing to know all about the previous OpenWRT "White Russian" or the other optional firmware upgrades will definitely not be disappointed!
I highly recommend buying this book anyway and also recommend their related website "[...]" for more valuable info about these awesome little routers!
I would have never guessed so much is possibleReview Date: 2007-10-29
I think the most important contribution this book will make is to help people understand it is possible to change those innocuous Linksys boxes. After all, they are everywhere. I don't personally plan to try to hardware hack my Linksys router tonight after finishing reading the book, but it is on the list. Heavens knows, I have three or four sitting in the equipment closet from before we upgraded my home office to professional equipment. In the book we learn the parts of a Linksys router; to be truthful, I had never thought about that. There is a discussion about overcloking the router to make the processor run faster. Talk about a blast from the past, brings back the old 8086/8088 days. It was dangerous then and it still is today. There is a discussion about the OpenWrt team, without them, this would never be possible.
It was a real eyeopener to learn how much people have done with the WRT54G, there are a number of choices in firmware, even semi-commercial choices such as Talisman which allows you to establish VPNs, hotspots, mesh and even SIP VoIP. This book in extensively researched, we learn how to set up DHCP, SAMBA even X Windows! There are even several methods for increasing the radio output and or antenna modifications. U.S. readers are cautioned this can get you into trouble, I know I ended up sending my FM pirate radio system to a missionary group in Africa because it was just too tempting and in an urban area the FCC will eventually get you. The biggest surprise for me was the use of a WRT54G ( with an adapter ) as a bluetooth scanner.
My understanding is that the authors are going to offer a class, that sounds like a lot of fun. If you are going to be installing wireless it is a good idea to read this book, a lot of the information applies regardless of what brand of equipment you select. And as for me, I don't think I will ever look at a Linksys router in the same way ever again, from now on I will be wondering just exactly what is going on beneath the hood.
Good information with lots of fun projectsReview Date: 2007-07-28

Used price: $13.83

Great book, would recommend to others Review Date: 2008-09-22
EXCELLENT RESOURCEReview Date: 2008-07-24
Excellent Book!Review Date: 2008-05-12
Extermely engaging book on Multichannel MarketingReview Date: 2008-05-12
As an online marketer myself, I found this book extremely engaging and useful as we delve into combining our online and offline marketing efforts.
Since the only way to prove that our marketing efforts are paying off is measure, measure, measure, the measurement and metrics section of this book gave me a good grounding on what I need to do in terms of metrics.
Overall, it's a great book, especially if you are looking at multiple channels to achieve your marketing goals.
This is an IMPORTANT book....Review Date: 2008-05-10
FINALLY, there is a book that meets MY standards on both the theory and practice of multichannel marketing. Akin's book "Multichannel Marketing: Metrics and Methods for On and Offline Success" provides unique insight and understanding to help marketers either begin the process of executing more complete multi-channel marketing efforts, or refine existing programs.
What I found especially compelling about Akin's book was the very natural and organic progression within each chapter. Chapters open with a quick summary of a business challenge/opportunity. His descriptions (often complimented by case studies) are direct and to-the-point...easily consumed by the multi-channel newbie. As he digs deeper into each topic he offers perspective that even the most seasoned CMOs will find actionable nuggets of wisdom in (I LOVED the Chapter 6 on Measuring Lift Between On-line and Offline).
In closing - is there value in Akin's first book? No matter what your currently level of expertise is...this book will make you a better marketer.

Used price: $3.49

Good resourceReview Date: 2008-06-14
Nice toolkitReview Date: 2008-04-06
This is not for light reading, it is intended for people who want to get the most out of the web, and are not content with Wizards and auto-pilot.
Detailed Guide to Using GoogleReview Date: 2007-11-06
This is primarily a book for intermediate- to advanced-users, but it offers some easy-to-use and useful tips and tools for all users. For those interested in extended the utility of the powerful Google service, this is a good resource.
Explanation of the Google ApiReview Date: 2007-03-29
2. repetition of words ignores the repeating words with no search results
3. inanchor, inurl, intitle, site
inanchor:oreilly -inurl: oreilly -site: edu
oreilly in anchor text
oreilly not in the url
site is not edu (limits to a certain domain)
intitle:OSTEOPOROSIS inurl:links
OSTEOPORSIS in the title
links in the url
OSTEOPOROSIS in the anchor text
intitle:biology inurl:help
Takes you to a manageable size of 602 for help in biology.
4. Google does not support stemming (moon, moonlight, moonshot)
Google does support wild card pattern *
Google does have a ten word limit
three * mice
returns
three Blind mice
three white mice
5. daterange:startdate-enddate
[...]
6. Phonebook searchs:
phonebook: searches the entire google phonebook
rphonebook: searches residental listings only
bphonebook: search business listings only
phonebook:nelson id
7: Finding articles
[...] "ADO" or "ODBC"
Searches the site www.listensoftware for all articles about ADO
"ODBC"
8. Searchable directorys
"what's new" "what's cool" directory SAUERKRAUT
"what's new" categories sauerkraut (recipe)
"what's new" listings sauerkraut (links to recipes)
9. GAPIS
[...]
Standalone application that takes advantage of the Google API search component.
GOOGLE HACKS comes packed with usage tips not to be found elsewhere.Review Date: 2006-11-07
Diane C. Donovan
California Bookwatch

Used price: $25.46

This will help you pass!!!Review Date: 2008-08-30
This is a good book...Review Date: 2007-01-08
Regardless, I think this book should be readed because It is very interesting and well-written.
I Highly Recommend This BookReview Date: 2007-12-10
A real Project+ study guideReview Date: 2007-02-18
Good for real life and the testReview Date: 2008-02-11
PROJECT+ THE CERTIFICATION: So, why Project+? People moving towards the management area require of something more than standard skills for successfully performing as managers or directors, so Project+ may not be that popular certification among young IT professionals, but senior professionals definitely require formal education in management. Project+ and PMP are definitely the right way to go.
PROJECT+ OR PMP?: You may have heard about PMP as well. In fact I prepared myself for PMP first and then I took Project+. PMP is definitely a more generic certification that will provide you great skills in large projects, give you tools for managing people, business and others (see my PMP reviews for details) while Project+ will give you a more precise approach to IT management. I felt like fish in water once I started reading the Project+ book, just the weekend after obtaining my PMP certification. They are very alike! Whichever you get ready for first, you will be just 5% away from being ready for the second one, so my advice is go for both, (if you are an IT of course).
PROJECT+ THE BOOK: I found the book very well written, clearly organized and I found it covers all the questions I found in the Project+ test. It is a very easy to read book, and the author provides examples and tips for the certification. I really enjoyed the fact that it has many examples of the IT life and you will see yourself in them. The only thing I would add to the book is probably few more graphics which will help with concept retention. Still, I support this book as good enough for preparing for the real life and Project+ test.

Used price: $42.12

Very readable and usefullReview Date: 2008-08-13
If you want to automate the way you work with Outlook without having to find out everything yourself buy this book. Sue Mosher's website is great too, by the way, and offers a treasure chest of tip, code and a very good forum.


Best Book For Beginners!Review Date: 2008-09-20
In just a few minutes of reading the book, the light suddenly came on and everything became much clearer! I am happily writing my own SQL scripts now and I went through half the book in one night and the other half the next day! I've never learned so quickly from a book.
I especially appreciated that the author provides links to the SQL scripts you'll need throughout the course. And the appendix that described how to execute the scripts depending on which database you are using is fantastic!
If you need to learn SQL quickly this is THE book for you.
Clear, Informative, and UsefulReview Date: 2008-09-15
The final few chapters moved a little too fast, and didn't really teach how to accomplish the more in depth topics of transactions and procedures, but they were well explained at a high level.
Everything the Title PromisesReview Date: 2008-08-13
It also provides short cut tips, and points out common errors for you to avoid. I'm sure I'll be using this as a great quick reference until I master sql commands when doing data analysis.
Highly recommended.
Precisely what it promises to be: an introduction to SQLReview Date: 2008-05-26
The book is becoming a bit long in tooth since it has not been updted since 2004. DBMSs covered are IBM DB2, Microsoft Access, Microsoft SQL Server, MySQL (Version 4), Oracle, PostgreSQL, Sybase Adaptive Server. Some of the information is now outdated and MySQL v5 has added new capabilities. On the whole, though, everything Forta presents here is still usable.
In 22 chapters, Forta teaches the reader the basics of SQL, more than enough to deal with perhaps 80% or more of common SQL requirements. Beyond that and you're in the realm of system architects and administrators who are simply not the audience for this book.
Be sure to download the sample databases and errata from the author's website.
On the whole, one of the best introductions to SQL available.
Jerry
PERFECT! AWESOME! Need I say more?Review Date: 2008-05-07

Used price: $18.95

SOA Design Fundementals in multiple levels Review Date: 2008-02-22
Best Web Service Tutorial I have ever seenReview Date: 2007-06-25
Excellent roadmapReview Date: 2007-03-11
Waste of verbatimReview Date: 2006-11-09
Advertising for Author's BusinessReview Date: 2007-01-07

Used price: $17.63

Excellent ConditionReview Date: 2008-10-03
Gets you certified with easy to read materialReview Date: 2008-06-17
Great book...if you already know everything Review Date: 2007-11-01
The bad: The book is badly put together, and has some glaring omissions for anyone new to the subject. Just some examples, the discussion on CSMA/CD and CSMA/CA makes no mention in the text that one is for wired Ethernet and the other is for wireless. You do see where each technology is used, in a table 3 pages later, but that is not going to make an impression on anyone learning the subject. I didn't catch it until I missed the question on a Totalsem practice test. Chapter 8 on security also seems very badly arranged and a very quick gloss over of security protocols such as PPTP(not mentioned in Ch.8 but only in Ch.7), L2PT, or IPsec, with no mention of how they work or what they really do.
There was also at least one very confusing contradiction. In chapter 5 on network operating systems, the book stated that it is only possible for Windows servers to support Mac clients with special add-on software and only with limited support. Then a few pages later it states that Window NT and 2000 have built in support for Mac clients and that a Mac client won't be able to tell the difference between a Mac and a Windows server.
My other complaint is a faulty index. I can't count the number of times that I tried to look in the index to try to review something I had read only to be frustrated.
Not to be too hard on the book it is a fairly good book and was my primary textbook for the exam. But don't use it as your only source of information unless your willing to do a lot of your own research on the Internet.
A good general framework, but not a complete solutionReview Date: 2007-12-18
I read through this book, and then wrote my own study guide that mapped directly to the exam objectives, where I would have a section for each objective (1.1, 1.2, 1.3, etc.) with the necessary notes underneath the section header. I found most of the basic info in the Sybex book, but there were certain parts that I had to look up on-line or in the Network+ In Depth book.
The Sybex Network+ Study Guide book also comes with some practice exams and electronic flash cards. I used those resources quite extensively and they did a good job relating to the material in the book (although there were somethings that didn't really correspond, if I remember correctly).
After preparing for the exam using the Sybex book and CD, I decided to double check that I had covered the right materials. I went online and looked for some practice exams. I was quite shocked by how different the questions were on those practice exams than what was in the Sybex book. It was a good thing that I consulted those other resources, because they certainly helped fill in a lot of the cracks that became increasingly apparent in the Sybex book.
When I finally took the Network+ Exam (2007 edition mind you), there were many questions that I was not familiar with, and the wording was also very different (I passed, by the way). I know that this may have something to do with the newer version (2007 Edition) of the test - but the subject matter is supposed to be the same, only some different wording on the questions.
Ultimately, this book is good at giving you a general idea of what to expect on the exam, but if you want to pass with satisfactory marks, do not rely solely on this text.
Barely passed examReview Date: 2007-11-20
If you get this book, consider it a foundation, and then get something else that focuses on the 2007 exam. The book has very good information, just keep in mind that you will need to continue further than it gives you.
Related Subjects: Programming Internet Computer Design Operating Systems
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250