TweetFollow Us on Twitter

Intro to WebObjects

Volume Number: 16 (2000)
Issue Number: 1
Column Tag: WebTech

Intro to WebObjects

by David K. Every

What does WebObjects do?

What is WebObjects?

Many people don't understand what WebObjects is, where it fits in Apple's strategem, what a web-application is, and what WebObjects can do for them. The purpose of this article is to answer those questions and a few more along the way.

WebObjects is a superior environment for creating and deploying high end web applications. In short, WebObjects is an enterprise web application server. However, that begs other questions: "What is enterprise?", "What is an application server?", "How does this fit into a large scale multi-tiered client-server solution?" and of course, "What does it all mean?" Have patience and I'll try to get to it all.

Enterprise

When I defined WebObjects, I said "enterprise" web application server - and Apple uses the term "enterprise" as well - so what is "enterprise"? Whenever I want to know what a word means, I hit the dictionary:

Enterprise - en*ter*prise (en-tor-prize) n. An undertaking, especially one of some scope, complication, and risk. A business organization. Industrious, systematic activity, especially when directed toward profit. Willingness to undertake new ventures; initiative.

WebObjects, along with Cocoa and EOF, are Apple's Enterprise Solutions - and that definition explains what these products are for. If you need to create a product of any complication (large scope) that has some risk, then WebObjects helps. It requires a little initiative and willingness to take on a new venture, but then all business is based on that. It is designed for serious business organizations - and making a profit off of the web.

WebObjects, Cocoa and EOF are what I call the divine trinity of enterprise development: three tools, all related, that all empower each other, and are even aspects of each other. All three frameworks / tools are powerful solutions on their own - but they are complementary and can work together to form a complete solution.

The WebObjects Framework and Cocoa (formerly known as YellowBox, OpenStep, or NeXT STEP) share some functionality, and many of the same classes, including their foundation framework. They are the evolution of the NeXT Step Framework, that is very rich and mature (10 years for Cocoa and 5 years for WebObjects). Their primary difference is the type of applications they target. Cocoa targets stand alone user interfaces (client-side binary applications) while WebObjects targets web-applications; applications that are deployed across a network, and run in either a web browser (HTML) or a Java runtime.

EOF (Enterprise Objects Framework) is a specialized solution that comes bundled with and can be used with either Cocoa or WebObjects. EOF is an abstraction layer that uses modern OOD/P (Object Oriented Design and Programming) techniques to interface with data (usually traditional table/row/column type procedural relational database management systems - RDBMS), other systems (security, commerce, or ERP systems) and legacy programs (like mainframe client-server applications). EOF allows the creation of database schemas, and wiring them together in a visual fashion, and hides almost all of the complexity of working with databases (concurrency issues, caching, uniquing, and so on) from the implementers. EOF is also an excellent abstraction layer on top of any data store. It's basically a way of managing data piped to/from any outside source.

There is a lot of hype of late about EJB. Enterprise Java Beans is a concept whose time will come - but is not completely ready for prime time yet.. As Enterprise Java Beans matures, it should fit in quite complimentary with some other parts of WebObjects - there is less overlap than one might guess at first glance.

Most web applications are client-server solutions where the user is the client (using a web browser) who accesses the web application server to do certain actions. The most common actions are things like tracking what a user wants to buy (via shopping carts), or remotely accessing database information that is stored on the server. Since most of these solutions are dealing with databases, EOF is crucial to most WebObjects solutions. Many Cocoa applications also work with database and legacy systems. In the future, more and more client-server type Applications (solutions) are going to migrate to wider network possibilities (the Internet) and therefore make use of web-centric interface (WebObjects). So neither Cocoa nor WebObjects needs EOF - but it just makes them both more useful.

So your interface and target market will help dictate which of these tools you choose; Cocoa is great for making stand alone applications that can be client-server solutions (using EOF). Cocoa makes it easier to develop, maintain and deploy these apps than traditional Mac Applications. If you want to create similarly easy to develop, maintain and deploy versions of Web-based solutions, or if you desire your application's interface to be a web browser (html) or Java, then WebObjects is the way to go. EOF is used by both to integrate database solution into your solution. And the Foundation Framework layer is common to all of them and is the glue that binds them together.

Application Server

To understand WebObjects, it helps if you understand the basics of how the Internet (Web Servers and Web Clients) works. The very high level view is that you have a server that has a domain name and an IP address. You type in the URL (domain and path information) or click on a link, which gets directed to that server. The server sees that as a request, and it responds by sending a file that a web-browser can understand, parse, and display.

This request-response cycle is the whole conceptual foundation of the HTTP (Hyper Text Transfer Protocol) and the world wide web. Users request something by typing the URL, choosing a favorite, clicking on a link or image, and the server responds.

Normally the web servers just respond with static files (unchanging text and pictures to present information) that are web pages. Sometimes websites want to do more than just serve static pages - and that is where application servers (like WebObjects) come in.

Application servers are far more versatile, they typically don't just serve static pages and images. The "pages" that an application server serves contain links and form elements that the client can manipulate to do more than request static files. These links can pass information to the server and thus control applications running on the server. Such applications running on the server can do a number of things which are better suited for the server than the client, such as performing a database query, or crunching compute intensive calculations, or taking information from the client and adding it to a database on the server based on form submission or by remembering previous selections and behaviors. Basically a web application allows a website to do anything that an normal client-side application can do, with the only limitation being that the user interface is what you can pass and return from a web browser.

Traditional web serving could be described as providing access to books (of many pages) on-line and letting the user turn the page, or choose other related topics. You can extend this static functionality with dynamic capabilities and animation using DHTML, Flash, QuickTime and JavaScript. For the most part these extension typically just provide you with a more eye-catching book - they don't fully utilize the potential provided by the interconnectedness of this new medium (the web).

Putting static links on a page also requires a lot of forethought. The web designer has to know a priori what the user might want to do at every step, and then add links representing a limited set of options to choose from. This is not unlike the menuing systems of old - a fairly low brow interface - the user points at one choice among a few and grunts, implying "that one". The user then gets to make another choice among a few and so on. This is not the highest form of communication.

Application serving allows for many, many more possibilities, and allows the user to offer real input. With applicaion servers, users can ask very complex things, submit larger amounts of information (to be processed) and allow for far more growth over time. The simplest form of an application server is having a search tool (application) for a site - then at least the user experience is growing a little beyond point and grunt - however, application servers are usually much more sophisticated than that. Instead of serving static pages (the same pages to everyone), web applications can customize pages for each user based on information learned about them (by asking, watching their behavior, or based on information the customers enter) which means that the pages served are more customized, dynamic and change based on the users needs. These capabilities offer web site developers a much greater ability to track information, control information, and get input based on browsing habits and so on. With application servers the site can audit what the users are doing, where they are going, and how users are using the site. Instead of serving all pages and information to a user, the site can prefilter that information and give the user only what they have interest in. This can save bandwidth, helping performance of the web site, and reduce costs.

Application serving can also save companies in the design and maintenance time of a website. It allows designers to look for commonality, and instead of serving many near identical duplicates of the same page (that only vary slightly), they can have one page (common format) that fills in all the unique information based on variables, parameters and context. This means less duplication of effort, more code reuse, and higher degrees of consistency (again improving the user experience).

So regular web serving is about almost all output, serving pages, and limited input; while Application serving is much more two-way, including many more possibilities that such as real input and bidirectional communication. This is analogous to the differences between watching a TV show and clicking to change channels versus having a video conference and interacting with whoever is on the other side. Businesses can be collecting information as well as just spewing it out. Instead of only being able to spew information blindly they can instead send out the right information (information more likely to fit the context of what the user wants). Application serving gives a company's website a competitive advantage by allowing it be more powerful, pleasant and useful - which should result in a better user experience and more payoff for creating the site. Application servers allow companies to use this new medium (the web) to it's full interactive interconnected potential - and this is what web applications and WebObjects is all about.

Middleware

WebObjects is an application server but is also what is known as middleware. In an n-tier client server solution you can have many layers of things going on. At the bottom tier you have your database and other legacy systems (the data storage), at the top tier you have your clients - and in between many other servers and services (tiers). Somewhere in the middle is the go-between and the integration solution - the key that binds it all together and makes many separate solutions feel like one integrated whole. That key is middleware, and in the Internet this is usually the application server (WebObjects).

To be a good application server you need to be a great development tool and rich framework to allow companies to create applications quickly and cost effectively. WebObjects does this - however, the details are so extensive that it deserves to be a separate in-depth article and will be available in a future issue [WebObjects: the Internet Application Development Environment]. That article will go into more depth about the tools, framework, and how WebObjects does what it does. This article will focus on what WebObjects is, and the other aspects of being a good application server: versatility of deployment and being an open solution.

Application Server or Database Server

Since most application servers are serving information out of a database, it can be difficult to differentiate between what is a web application server and what is a web database server.

I think of the differences based on the amount of business logic and state information involved. If you are only pulling queries (and getting results) directly to and from a database, then you are really only using the server as a front-end to the database. That is a database server. However, if you are doing lots of things with business logic, like tracking user state, processing the data, doing calculations on the data, and so on, then that is more a business application that is being served on the web - and what you have is an application server.

There are many products like FileMaker and Tango, JBuilder, ColdFusion and so on, that are nice web database server solutions. They can deliver data from a database - but they choke when you try to do too much business logic or try to scale them beyond the one database they were designed for. Application servers can go way beyond just serving databases; they can often serve multiple databases and combine data. Application servers can manage security, and work with other systems (like ERP and commerce systems). An application server is a much bigger and broader solution than just serving a database. It is more about processing that data in new ways, and being the intermediary (middleware) between many business systems.

A good Web Application solution needs to be able to integrate many different systems into one cohesive whole, and allow any part of the system to be replaced with some other system or to allow any part of the system to grow. Scalability is the keyword.

Notice the drawing which shows the Application Server as the middle. Well, in a small organization (low load) this server may be doing everything. You can start with a single server being all things - running a web server, an application server, and hosting the data. Over time, as your requirements change (your load grows), you can add more servers, more services, and balance the load over many more levels and systems. This potential for growth in both features and scale is critical - because any downtime while scaling up can seriously hurt a business. The multiple costs of conversion can put companies out of business. So a web application needs to be able to deliver that integrated application over the web, while still allowing any area to change or grow over time. These openness and deployment issues are another area where WebObjects shines - and is critical to understanding what differentiates WebObjects from other solutions.

Open Solution

Using WebObjects you can create great web applications, but there are many tools that can create applications - so a differentiating issue becomes how do you deploy your solution, how open is the solution, how scalable and how well can it grow. Well good news - Apple is very open with this solution, and WebObjects solutions can really grow.

On the top end (one side of the middleware) you need to interface with the client. WebObjects does this with the help of a web server. It doesn't just require one company's web server, like some competing solutions do. WebObjects has adapters that allow it to work with many different HTTP servers including any that use CGI, ISAPI, WAI and NSAPI interfaces. Which in English means Apache, Microsoft's IIS, and Netscape servers are all supported native. That covers about 95% of the market. Everyone else is covered through the use of the CGI interface - which while a little slower performing than the native interfaces, still works very well. In fact, it works so well that many competing solutions only offer this slower interface. So with CGI support, it means that WebObjects can interface with about any web server that matters - and in the future, if something new matters, Apple or an interested third party is likely to write another adapter to keep you covered. As a last resort, if you really need some new adapter then you can write your own (Apple offers source code for doing that).

WebObjects itself runs on a variety of platforms, including; Windows NT, Solaris, HP-UX (1) and Mac OS X. Many of the competitors solutions are less open, and may only run on a single platform, or have other limiting dependencies. There are a few solutions that run on more platforms than WebObjects. WebObjects requires a native runtime for each platform, to offer the highest level of performance. Native runtimes require Apple to QA each version and tune for each platform. Most of the solutions that allow more platforms are running interpreters, virtual machines or emulators of one sort or another, and so perform far below the level of WebObjects. Because of this native platform support, you can not just port the runtime yourself - Apple will need to support the platform by creating the runtime (and you aren't going to get source code to their run time). However, WebObjects is still more open than most solutions in this area - and I think Apple made the right tradeoffs (better performance with the limitation of running on only four of the best platforms). Another key point of versatility to remember is that the WebObjects Application Server(s) don't have to run on the same machine as the HTTP server, nor the database server, nor any of the other servers - and WebObjects can still interact with all those others servers.

At the back end (talking to the data stores and other servers), EOF enables the back end data to work with any one (or many) of the following databases as your back end - Oracle, Sybase, Informix, OpenBase and any ODBC compliant database. I expect support for even more choice in the future. If you have a database that isn't supported by default, you can write a plug-in on your own to fill that gap (or find someone else who will) - I've heard of people using IBM's DB/2 or Ingres among others. Third parties offer mainframe host applications, PeopleSoft and SAP support for the ERP side of things. WebObjects can work with Corba/IIOP, DCOM, and JavaBeans - and there are extensions and services for security, directory services, mail, eCommerce and so on. Thus the back-end is also a wide open solution.

The openness at every level gives me a lot of security and confidence in the solution - and is another reason why I would choose this type of solution over something like ASP and a Microsoft solution. Microsoft's' solutions tend to all be proprietary and lock you in to their tools; they work with their databases, their servers, only on their OS, and only using their development tools. That concerns me. Apple has a complete solution that works well with just about anything I can think of - and has hooks or plug-ins (where possible) to make WebObjects an even safer, more open, solution.

Conclusion

This article should have given you a better understand of how Apple's Enterprise Solutions, and WebObjects, can fill some needs within your organizations - and learn that WebObjects is the premier solution for creating web applications.

Web applications allow companies to improve the Internet experience by changing the normal push-only form of web distribution into a much more bidirectional (push-pull) experience. Web apps also allow companies to deliver far more services to their own people at many different locations (like around the globe), and using a web-based interface can reduce the costs of development and deployment, compared to traditional corporate solutions - all while increasing the quality of the user experience.

WebObjects has many key customers, many deployed solutions. It has been proven over time, and has earned many industry accolades. WebObjects does critical things like save you money and offer you a safe path for growth. If you are trying to create some sophisticated web solutions, guarantee some scalability, have a high degree of openness and expandability in your design, and you want to leverage the most powerful and versatile solution out there - then WebObjects fits the bill. There doesn't seem to be anything else that competes as well in all the different areas - maybe this is why WebObjects is the leading web application solution.


David K. Every is a Senior Software Engineer who has done many client-server solutions, a WebObjects programmer, and the creator of the MacKiDo website (http://www.MacKiDo.com). You can reach him at dke@mackido.com.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.