Home > Articles > Software Development & Management > Object Technology

13.4 Model Solutions

We decided to skip implementing the indirect IIOP ensemble. Prior experience convinced us that this design could be implemented. Therefore we didn't feel this effort would be justified. Instead, we focused our attention on the two remaining ensembles.

MODEL SOLUTION WITH DIRECT HTTP ENSEMBLE

Figure 13-3 shows a deployment diagram for a model solution developed with the direct HTTP transfer ensemble.

Web Browser Evaluation and Risk/Misfit

One of our early interactions with the DIRS design team centered on Web browser evaluation. Prior to our involvement, the design team had a long list of what were deemed essential browser features. Unfortunately, there were no browsers available on the market that possessed all of these features, nor was it clear which features were essential and which were merely desirable. There was considerable controversy, for example, over whether the browser required an on-board JVM of version 1.1 or better, and there were the usual squabbles over whether Netscape Navigator or Microsoft Explorer or both should be supported.

To help matters along we introduced the use of Risk/Misfit, and began by defining the objective of the evaluation. We defined two objectives for the evaluation:

  • The evaluation criteria should be satisfiable by Explorer and Navigator, as these possessed (at that time) over 90% of the browser market.

  • The evaluation criteria would identify only those browser features that the DIRS design would depend on; DIRS would depend on no other browser features.

Each browser feature that had been identified as "essential" had to be jus-tified in terms of the design risk that would arise without that feature. The aim of this was twofold. First, it forced feature advocates to use constructive rather than categorical arguments to justify their advocacy. Second, it sur-faced and documented design assumptions that were held by different mem-bers of the design team. Sometimes these assumptions were in conflict, and clarifying the risk statement helped to resolve these conflicts. One other ben-efit of this approach was that, having identified design risks associated with the absence of features, the design team was provoked into imagining possi-ble mitigators to the risk. In effect, these mitigators expressed design options for DIRS that did not depend on so-called essential features. In fact, the design team discovered that the only truly essential features were those for which no risk mitigation (called "repair" in Risk/Misfit) could be conceived. Thus, building Risk/Misfit evaluation criteria had the effect of identifying those features that defined minimum satisfaction criteria for browsers to be consid-ered "feasible," while all other features expressed mere preference.

A fragment of the resulting evaluation criteria is shown in Table 13-1. Note that we had adapted Risk/Misfit for the purpose just described, and so, at this point, repair cost and residual risk were not yet a concern. Observe, though, that the criteria include something not discussed in the Risk/Misfit chapter: a specification of how a misfit will be detected. Such modifications to Risk/Misfit or any other technique described in this book are encouraged, provided they are sound, in addition to being expedient.

—shissam

Table 13-1 Web Browser

Support Feature

Risk

Mitigator

Assessment Technique

Feature Description

HTTP/1.0

persistent connections

performance overhead

Use HTTP/1.0 and "cookies"

Product LiteratureThe server can keep a connection with an HTTP/1.1 client open for more than a single request.

Plug-in support for editors.

Loss of support for 45 million stored images.

NONE

Model Problem

Specify other data and object formats that are supported by the browser.

Object Signing

loss of authentication and integrity checking

Use 3rd party security COTS and added integration effort

Model Problem

Support of object (applet or ActiveX) signatures with manual and/or automatic acceptance/denial of download of object based on signature.

SSL v3.0

unencrypted data can be disclosed; also no indication of loss of data integrity

Revert to SSL v2.0

Model Problem

The server can communicate using the SSL version 3 protocol.


Figure 13-3 Deployment View of Direct HTTP Ensemble

The UML sequence diagram shown in Figure 13-4 provides a detailed description of the interactions between components in the solution. As depicted in this figure, the end user first opens the main DIRS HTML page using a browser. The browser contacts the HTTP server that downloads the page content including a Java applet. The applet is loaded into the Java Virtual Machine in the browser and passes control to the applet. The applet uses the CORBA bind operation to bind to the BRI, which in turn binds to the SM. Control returns to the end user who can now request the location of the image by interacting directly with the applet running within the browser. The applet contacts the BRI with this request, which is forwarded to the storage manager running on the back-end server. The storage manager returns a URL for the image to the BRI that constructs a new HTML page containing a link to this URL. The URL for this newly constructed page is returned to the applet. The applet sends a request to the browser to display the new HTML page (effectively terminating the applet's existence). The new HTML page containing a link to the image on the storage manager is displayed in the browser. The end user can now select the link to view the image.

Figure 13-4 Direct HTTP Ensemble sequence diagram.

The implementation went well until we needed to generate a request to the browser to open the new page. At this time, we did not have any experience communicating from the applet to a browser. Luckily, we acquired a copy of the book Java Network Programming by Elliotte Rusty Harold [44] and learned about the showDocument() method in the java.applet.AppletContext class. On page 131 of this book we discovered that:

This method shows the document at URL u in the AppletContext's window. It is not supported by all web browsers and applet viewers, but it is supported by Netscape and HotJava.

We added a call to the showDocument() method from the applet to display the HTML page in the browser. As promised, this worked with Netscape Navigator, but it was not known to work with Internet Explorer. By using Netscape Navigator to implement the browser component, we had, at a minimum, proven that one implementation of the ensemble was possible. However, we had not satisfied the evaluation criterion that the solution work with both Navigator and Explorer. This was an important criterion since the DIRS user community used both browsers. After implementing the model solution we modified our blackboard as shown in Figure 13-5.

Figure 13-5 Revised Direct HTTP.

The first and most obvious change is that technologies have been replaced with components. CORBA has been replaced with Orbix 2.2, used to enable communication with the legacy C++ servers and OrbixWeb 2.0.1, used to enable communication with the Java applets within the browser. The interaction between applet and BRI is associated with both ORBs since it involves different implementations of the CORBA standard, albeit by the same vendor. The diagram also includes a credential for the show document method. Its equivalent on Explorer was only a postulate. 1

Without the show document method we would have to abandon this ensemble. When dealing with emerging technologies, the critical role played by low-level component features may not be apparent until implementation time, which is what makes early prototyping so important. In our experience, model problems is the most efficient way of implementing these prototypes.

MODEL SOLUTION WITH DIRECT IIOP ENSEMBLE

The second model solution we implemented used the direct IIOP ensemble. This model solution used the same components employed in the direct HTTP transfer solution except it did not require an HTTP server on the back-end. We originally intended to deploy this model solution as depicted in Figure 13-6.

Figure 13-6 Deployment view of Direct IIOP Ensemble.

We did have some apprehensions about implementing this ensemble. The model solution requires that a Java applet, running within a browser on the client platform, directly call remote methods on both the BRI server running in the middle tier and on the SM server running on the back-end. However, for reasons of security, the JVMs within both the Netscape and IE browsers prevent an applet from connecting to a second machine. To circumvent this restriction a little creativity was required. We created a second "helper" applet that is loaded with the HTML page generated by the BRI and served up from a Web server on the back-end platform. So we needed the Web server after all! Figure 13-7 shows the sequence diagram for this model solution. (The second Web server is not shown to make the diagram easier to read.)

Figure 13-7 Direct IIOP transfer sequence diagram.

As in the direct HTTP transfer ensemble, the end user opens the main DIRS page with the browser. The browser contacts the server that downloads the page content including a Java applet. The applet is loaded into the browser JVM and control is passed to the applet. The applet uses the CORBA bind operation to bind to the BRI. Unlike the direct HTTP transfer solution, the BRI no longer binds directly to the SM. Control is returned to the end user who sends a request for the image location to the applet. The applet forwards this request to the BRI that constructs an HTML page containing a second, helper applet. The location of the image is included in the new page as a parameter to the helper applet. When control is returned to the applet, it calls the show document method as in the direct HTTP transfer solution. The new page, including the helper applet, is loaded by the browser and control is passed to the new helper applet that binds to the storage manager. The end user now sends a request to the helper applet to retrieve the image, which is forwarded to the storage manager. The storage manager converts the requested image into a sequence of bytes, or octets in CORBA terminology, and returns it via IIOP to the helper applet running within the browser.

Figure 13-8 Revised direct HTTP transfer abstract model solution.

Figure 13-8 shows the revised deployment diagram for this model solution. This is a good example of how actual experience gained from implementing model problems can alter a design. As suggested by Moltke, in the epigram that opened this chapter, it is impossible to predict the utility of a plan or design beyond the initial phases. This makes it incumbent on the designer to insist on increasingly stringent proofs of design feasibility.

EXTENDING THE SANDBOX

We succeeded in transferring an image from the storage manager to the client in the direct IIOP transfer ensemble, and, by logical extension, in the indirect IIOP ensemble as well. However, we have come short of a full solution in both cases. The image data is stored as a byte array within the Java Virtual Machine (JVM) and cannot be directly displayed. We still need to get the image data out of the JVM and into the 3rd-party image viewing component. Although other commercial image viewers were available, they did not support some of the non-standard image formats used by DIRS. The image viewer is invoked on a command with an argument specifying the location of the file containing the image to be viewed. To invoke this image viewer from our thin client we had to:

  1. Write the image data to a temporary file on the client platform.

  2. Launch an external application on the client platform.

Unfortunately, these are both privileged operations under Java. To prevent downloaded applets from malicious behavior, version 1.1 of the JDK, operating in a browser environment, enforces a security mechanism known as the sandbox. An applet running in a sandbox is restricted from performing operations that might compromise the security of the platform. The sandbox, for example, restricts reading or writing files on the local file system.

The options available in 1997 for allowing applets to operate outside of the browser sandbox were extremely limited. Netscape provided the Netscape capabilities classes that allowed an applet to operate outside of the sandbox. The capabilities classes added facilities to refine the control provided by the standard Java security manager class. These classes could then be used to exercise fine-grained control over an applet's activities outside of the sandbox.

A full discussion of the use of digital certificates and security is contained in the following chapter, but a brief introduction is required here. Access control decisions boil down to who is allowed to do what. In the capabilities model, a principal represents the "who," a target represents the "what," and the privileges associated with a principal represent the authorization for a principal to access a specific target. Using digital certificates, the principal is represented by a signing certificate while the target is one or more system resources, such as files stored on a local disk. The capabilities classes make it possible to determine whether any given principal (i.e., signing certificate) is allowed to access the local system resources represented by a given target. The answer is expressed by a privilege, which states whether access is allowed and, if so, for how long.

We extended our IIOP transfer solutions to use the Netscape capabilities classes to write image data out to a temporary file and invoke an external application to view them. Additionally, we used the capabilities classes to circumvent the restriction that a Java client could only communicate with the host from which it was downloaded. The capability of connecting to multiple hosts also eliminated the need for an additional helper applet to communicate with the Storage Manager.

Unfortunately, the capability classes also had drawbacks. Since it is proprietary, we could not use it in non-Netscape browsers e.g., Microsoft Internet Explorer. The revised blackboard for the Direct IIOP ensemble is illustrated in

Figure 13-9 Revised Direct IIOP.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020