A Tool Set to Support Web Application Testing
|
|
|
- Byron Gilbert Hutchinson
- 10 years ago
- Views:
Transcription
1 A Tool Set to Support Application Testing Ji-Tzay Yang, Jiun-Long Huang, Feng-Jian Wang Department of Computer Science and Information Engineering National Chiao-Tung University, Taiwan, ROC Abstract The development and deployment of -based s are getting prevalent in the Internet and Intranet environment. A -based usually requires programming for both web servers and browsers. Several frameworks and techniques have been proposed to ease the development of web-based. For example, Microsoft InterDev and FrontPage are provided to support software development of such style. However, few tools are provided to directly support the software testing on -based s. In this paper, a set of software tools is proposed to support the testing of web-based s. The tool set covers model extraction, test execution automation, and test design automation. In addition, a graph-based model is also presented to model the behavior of web-based s. With the graphic presentation, several traditional software testing techniques are extended to test -based s. 1. Introduction The -based s becomes popular due to the highly-available Internet access and widespread deployment of browsers on most platforms of operating environments. More and more s which need to be platform independent and distributed processing rely on the as the software architecture. Applications such as on-line shopping system, on-line registration system, or process management system are typical examples which are implmented under the architecture. Several development frameworks have been built to assist applicaton developers. In the frameworks, s are developed under client-server model, three-tier model, or even n-tier model. Besides, lots of software components which can be directly applied or customized are provided to perform interaction at browser and database connection at the server. Behaviors and glues of components are described in scripting language such as Java or Microsoft VB. developers can build s under the assistance of proper frameworks and software components. However, they have not sufficient and powerful tools to debug or test their s. [9] also addressed the neccesity of software testing support to handle complexity of the s. Only a few commercial products have been announced to support s testing[20]. Some of them test the software components such as JavaApplet and Active X objects which are embedded in the pages[18][19]. Some extend traditional GUI testing tools to test the GUI events inside the browsers. Some help justify the result shown on the browser s window by matching text patterns or pixel-level comparison. Some check the documents for syntax and compatibility to popular browsers. Current testing tools are mainly made to verify the syntax in HTML documents, check hyperlink integrity in a set of HTML documents, test GUI components embedded in browsers, and measure the performance of the. Few testing tools consider s control and data flow via static and dynamic analysis. There are still some significant characteristics of s need to be studied, such as the control and data dependency of s programming modules. This paper proposes a model by extending control flow graph to model s control. The extended model is further used to generate test cases by applying traditional flow-based test cases generation techniques. In addtion, an integrated testing environment is implemented to help testing staffs (1) design or generate test cases to reveal potential -related bugs, and (2) automate the test case execution to avoid repetitious manual input. This paper is organized as follows. Section 2 reviews the current approaches to implement s. Section 3 describes the behavior model for s. Section 4 describes the testing environment and its tool set, which includes test case capture tool, composition tool, execution tools, and load testing tools. Finaly, section 5 gives conclusion and future works of the web testing environment. 2. Characteristics of Applications s are composed of static HTML documents and programs run at both server and client sides. HTTP (Hyper-Text Transfer Protocol) is used for communication between browsers and servers. servers and database servers are usually connected by de facto database access protocols such as ODBC (Open Database Connection) or JDBC (Java Database Connection). The following subsections introduce the architecture overview and activities involved in the applicaitons implementation. Meanwhile, the desired testing support are also addressed.
2 2.1. Application Architecture architecture shown in Figure 1 is supported by current -related techonologies. It consists of three major tiers, the browser, the server, and optional database servers. The information process in the is passed throught each tier. The user interaction is performed at the browser tier. The program logic is done at the server tier. The database processing is done at the database server tier. Hence, the architecture is also known as a three-tier architecture. When the database server tier is omitted, it is known as a two-tier architecture. Browser Database consists of a leading alphabet, followed by a digit 1 or 2, then followed by eight digits. If the validation fails, the checking function returns false to disallow the data sumbission. <form action=guard.cgi method=post onsubmit="return check(this);> UserName: <input type=text name=uname value=yourname> <br> CivicID: <input type=text name=cid value=a > <br> <input type=submit value=login> </form> HTML Render Java VM Java Intepreter Plug-In Processor HTTP Socket/ RMI/ CORBA F r o n t E n d Common Gateway Interface (CGI) Network Application Side Intepreter Image, Sound, Animation CGI Programs Plain HTML Document Java Applet Augmented HTML Document Database Access Protocol Database Access Protocol Database Access Protocol Database Access Protocol Tier Information Processor Database Legend Protocol / Interface Information Flow Document Figure 1. Application Architecture The browser is capable of retrieving hyper-text documents, as requested by the users, from the server via HTTP protocol. It renders the hyper-text document in HTML (Hyper-Text Markup Language) format on the screen. Contemporary browsers also embed Java VM and interpreter to execute the Java Applets or Java s specified in the documents. The browser also allows users to extend its functionality by installing additional software modules such as Netscape Communicator s plug-in modules and Microsoft Explorer s ActiveX objects. The server has a frontend (HTTP daemon) to accept the HTTP requsets from the browsers. Accroding to the server s configuration, it may directly serve the stored HTML documents, Java Applets, or multimedia files, or forwards the requests to CGI programs, by which the HTML documents to be returned are generated dynamically. Some servers also have modules [4][11] to interprete the augmented HTML documents before sending them to browsers. In advanced s, components in browsers may communicate with other components in the servers with protocols which are not HTTP. For example, components in the browser can communicate with standalone network servers which run at the server-side by network sockets, Java RMI (remote method invocation), or CORBA. These emerging protocols are more fitting when developing distributed in object-oriented technology Programming at Clients client programming focuses on the visual presentation and user interaction. The program guides the user to input data and validates user s input before submitting it to the server. The following is a simple interaction which is written in HTML and embedded Java. It requires users to enter username and civic ID in the text fields of a HTML form, and then press the login button. It also validates the civic ID format, which <script> function check(t) { var reg=/[a-za-z][1-2]\d{8}/ ; if (reg.test(t.cid.value) == false) { alert("illegal Civic ID format"); return false; } return true; } </script> Figure 2. Programming the Browser For more complicated interaction, software compnents such as Java Applets or Active X objects can be embedded in pages. languages such as Java or VB can be applied to glue the components Programming at s Besides deploying static documents on the servers, desingers write augmented HTML documents or CGI programs to achieve more functionalities by dynamically generating HTML documents at run-time. The augmented HTML documents are interpreted at server side by interpretation modules such as ASP interpreter or Perl interpreter. Programs (or scripts) within the augmented HTML documents or CGI programs are usually passed the well-encapsulated HTTP requests which originates from the browsers. They are also provided with session managment and database connection facilities. For example, a for transferring money between bank accounts provides a sequence of screens. The first screen asks the user to enter his account and password, and the followings ask him to enter the destination account and transfer amount. On the terminal, a sequence of replies to questions are entered; while in the underlying system, consecutive HTTP requests are needed to perform the interactions. The session management provided by servers can help handler to make context-independent HTTP requests context-dependent. The database connection facilities help the
3 to validate the account and password and process the money transfer. Examples of the server technologies are Microsoft Active Page(ASP) [11], Sunsoft Servlet [15] and Cold Fusion s CFML [1]. Database connections can be provided by Microsoft IDC(Internet Data Connection), ADO(Active Data Object), ODBC(Open DataBase Connection), or JDBC (Java DataBase Connection) [16]. Testing supports at the server usually help either to test a set of documents to check the integrity of the links among the documents, or to test the CGI programs as traditional. However, few tools help to generate http transactions as test cases based on the behaviors which include logics performed at server side and user s decision made at browser side. 3. Application Models In this section, a method is proposed to model the constitutents of in order to apply traditional test case generation strategies Application Testing Tools Software testing tools often extract information modules from artifacts such as requirement specification or source codes for some testing strategies. Example modules include control-flow graph, data-flow graph, call graph, etc. The control-flow graph serves as a model, in which test cases are generated based on branch and statement coverage strategies. The data-flow graph serves as a model, where test cases are generated based on the define-use relation of variables [14]. Extracting a proper model to test for -based s may consider the charateristics of its constituents. As discussed in section 2, a is different from those software implemented entirely in a single language such as C. Instead, a software consists of a bunch of components such as HTML documents, ASP scripts, Java, Java Applets. At the client side, HTML and Java are the subjects to be tested. At the server side, the subjects to be tested are CGI programs which may be implemented in C, C++, Perl, Java Servlets or ASP scripts embedded in augmented HTML files. Consequently, traditional (and single) testing tool seems not able to fulfill the job for testing such s. needs specific tools to test each interested facet instead. To complement with other testing tools mentioned previously, tools introduced in this paper are intended to support testing in terms of control flows and data flows of s. Because the user s action at browser-side and logic executed at server-side together determine the s execution path in the control flow graph. Testing support tools which analyze server-side or client-side activities work jointly to complete the control and data flow testing for. In the next section, we propose a model which can easily describe the behavior of s and is easy to be transformed into a traditional control graph or dataflow graph Extracting an Application Model A consists of a set of programming modules which are executed at the servers or the browser. To build the control flow graph for the, our proposed method maps each entity in the to a component of the control graph, i.e. nodes, branches, edges. The extended control graph for the contains the following symbols as appeared in Figure 4: programming module (node), user branch, branch, hyper-link edge, HTTP-redirect edge, and intra-module edge. A node in the control flow graph represents a programming module. A programming module is usually implemented in a single file such as.html file in HTML,.cgi file in Perl, or.asp file in ASP. There may exist a more detailed control flow graph residing in the single programming module, but it is not discussed when considering the inter-module control graph. During the mapping of control flow branch, the extended model classifies the branches into the user branch and the brach. The user branch models that the user selects one of hyperlinks from the browsed document at browser side. The branch models that the current programming module forwards the control to other programming modules for further processing based on the logic. When a programming module M generates an HTML document containing hyperlinks to modules M 1, M 2 and M 3 for user s selection, node NM, NM 1, NM 2 and NM 3 are created to represent programming module M, M 1, M 2 and M 3 respectively in the control flow graph. In addition, an user branch symbol UB is placed among NM, NM 1, NM 2 and NM 3. An intra-module edge is used to associate NM and UB. Each branch alternative from UB to NM 1, NM 2 and NM 3 respectively is represented by one hyper-link edge. When a programming module M needs to transfer the control to module M 1, M 2, or M 3 for furthur processing based on the logic, an intra-module link is used to connect the node for module M with an brach symbol to represent the control transfer made by logic. Each branch alternative is connected by an HTTP-redirect edge. The name HTTP-redirect comes from the technique which achieves the control transfer between programming modules by sending HTTP redirect command to the browser. When a module X needs to transfer control to module Y, it sends to the browser an HTTP-redirect command containing the URL referring to module Y. On receiving the URL, the browser sends a new HTTP request which invokes module Y to the server. Thus, the s control transfers from module X to module Y. For exapmle, a which provides on-line food order services contains the following programming modules: welcome.html : It shows the usage of the on-line order system in the page. It contains an HTML link for the customer to link to memberinfo.asp. memberinfo.html: The module provides an HTML form for the user to fill in customer s name, telephone number, and address to which the ordered food is sent. This HTML form is processed by the orderstart.asp as specified by <form action=orderstart.asp method=post>. orderstart.asp: The module judges the validity of the customer s input, then re-directs the browser to invoke
4 another module availoffer.asp or incomplete.html. Namely, after the user submit the form in memberinfo.html, next screen in the browser is generated by availoffer.asp or incomplete.html instead of orderstart.asp. incomplete.html: This module explains the reason of incomplete customer information and contains a link to memberinfo.html for customers to refill the information. availoffer.asp: The module outputs a HTML file containing links to availdrinks.asp, availpizza.asp and confirm.asp. The first two links guide customers to order food by categories. The third link is clicked when customer completes his order. availdrinks.asp and availpizza.asp: Several items of each category are listed in the HTML forms for customers to choose. The submitted form is processed by addorder.asp. addorder.asp: Add the customer s order into a temporary order list. It redirects the browser to the availoffer.asp for more order. confirm.asp: This module commits the customer s food order by sending the order list to the database for further process. It contains a hyper-link to memberinfo.html for new order. The finishes when no more hyper-links invocation. Figure 3. Programming modules for an on-line food order The control flow graph in Figure 4 for the above can be constructed by analyzing its programming modules. In the figure, there are two HTTP-redirect edges from orderstart.asp to two independent modules. In other programming practices where no http-redirect is applied, the logic implemented in availoffer.asp and incomplete.html are merged into one single orderstart.asp. Hence, the node for orderstart.asp would contain four hyper-links memberinfo.html, availdrinks.asp, availpizza.asp and confirm.asp. The practice can reduce the number of programming modules, hoever it still increases the difficulties of program understanding and testing. In fact, many links are not easily determined by simple analysis on the programming modules. Following subsections introduce static and dynamic analysis methods, which can obtain a control flow graph more precisely A Model Obtained by Static Analysis In static analysis, the source code of the programming modules are analyzed to extract the inter-module relations. For s implemented in ordinary frameworks, the logic is scattered in several files. There are two popular approaches to specify logic. One is based on document content, it specifies logic inside some blocks of augmented HTML files. The other is based on logic, it specifies logic in script languages like PERL and lets the script output the desired HTML file. Welcome.html incomplete.html memberinfo.html orderstart.asp availoffer.asp availdrinks.asp availpizza.asp confirm.asp Legend Program module (node) Hyper-link edge HTTP redirect edge User branch App branch Intra-module edge Figure 4. A sample control flow graph of When constructing a model through static analysis, the designed in the content-oriented approach can be extracted richer link information due to its format simplicity. Analyzers can extract inter-module information from the augmented HTML file (or HTML template) by extracting attributes from certain HTML tags. For example, the following fragment of an augmented HTML file can be extracted hyper-links shown in bold-italic typeface. <a href=memberinfo.html > <form action=orderstart.asp > <frame src=leftpane.html> <image src=roadmap.gif usemap=#mapdef> <script> WindowObject.href= foo.html </script> <map name=mapdef> <area shape=rect... href=site1.html> <area shape=rect... href=site1.htm2> <area shape=rect... href=site1.htm3> </map> Figure 5. Hyperlinks inside a programming module However, for the following fragment written in Microsoft ASP, it is difficult to extract the five links generated by the fragment with static analysis only. The dynamic analysis in the next subsection can help to extract the links generated dynamically. <html> <ul> <% for i = 1 to 5 ref = option & i &.html Response.write( <li> <a href= & ref & > & i & </a> ) next %>
5 </ul> </html> Figure 6. A sample.asp file which needs dynamic analysis on the server 3.4. A Model Obtained by Dynamic Analysis The dynamic analysis on the can extract the link information by driving (loading) the program modules to its interpreting engine. As mentioned above, programming modules may be executed at servers or browsers. Supporting tools may be desinged to analyze the following information: (1) The link information of the programming module after the server interpretation: For example, the ASP scripts shown in Figure 6 contains no link information at static analysis. After the supporting tool drives it into the server s interpretation engine, five links (i.e. option1.html, option2.html,... and option5.html) can be extracted from the interpreter s HTML output. A server script driving tool shown in figure 7 may be provided to support the extraction. (2) The link information of the programming module after the browser interprets the client-side scripts: For example, by drving the following Java to the browser s interpreter, two more links (i.e. site1.html and site2.html) can be obtained. It is similiar to case (1) but the difference is in the way to get the links information, as shown in figure 9. model repository 5. updated link information Control Flow Builder 4. Hyper-link information for requested scripts 1. Interpretation Request Driver Intepreter 3. Interpreted sciprt. in HTML format 2. Retrieved script Interpreted Figure 7. Dynamic analysis for server interpreted scripts. <html> <ul> <> for (i=1; i<3; i++) { ref= site + i +.html document.write( <li> <a href= + ref + > + i + </a> ) } </> </ul> </html> Figure 8. Java s for dynamic analysis on the browser model repository 5. updated link information Control Flow Builder 4. Hyper-link information for requested scripts 1. Interpretation Request Client Driver 3. Link information from client script interpreter Client Interpreter 2. Retrieved script Browser Interpreted Figure 9. Dynamic analysis on browser interpreted scripts. (3) The link information generated during user interaction on the page: The programming module may dynamically generate hyper-link request based on user s interaction on the page. For example, the augmented HTML file in Figure 10 allows the user to enter page number, say 7. After the user presses the button Go!, the browser generates a hyper-link page7.html and changes the browser s content to page 7. The type of link information extraction requires a person or automatic GUI driving tools to drive the user interface. Thus, a link monitor in Figure 11 can extract the link information. <html> <script> function gotopage(n) { document.location = "page" + n + ".html"; } </script> <form name=foo> Page number to go: <input type=text name=pageno> <input type=button value="go!" onclick='gotopage(pageno.value);'> </form> </html> Figure 10. Hyper-link request generated based on user s interaction GUI operation guide Link Monitor Browerser Intercepted HTTP requests 2. Intercepted hypter-link requests 1. HTTP request Control Flow Builder 3. Updated link information model repository Figure 11. Analysis on hyper-links generated by user interactions Generating Test Case for Applications With the model constructed for the s, test case generation techniques based on control-flow graphs, such as path testing, can be applied to test s directly [8][12][13]. Two path testing strategies, statement and branch coverage, are adopted in the environment. Practical program testing requires both the statement and branch coverage. IEEE software test standard [2] regards the statement coverage as the minimum testing requirement. The statement coverage strategy requires that the generated test cases exercise each statement in the program at least once. The branch coverage requires that the test cases exercise every branch alternative at least once. In the testing, the term statement is replaced with programming module. For example, based on the statement coverage strategy, one set of test cases generated for the sample shown in Figure 4 are listed as the following: TestCase# 1 2 Nodes In Path -welcome memberinfo orderstart incomplete TestCase# 3 4 Nodes In Path -welcome memberinfo orderstart availoffer availpizza -welcome memberinfo orderstart availoffer availdrinks -welcome memberinfo orderstart availoffer confirm
6 If the branch coverage stragtegy is used to generate test cases, more paths are included in addition to above four paths. Paths containing edges availdrinks availoffer, availpizza availoffer, and confirm memberinfo must be included to make every branch alternative exercised. In addition to the two major strategies, real use cases from users or specifications are good sources of test cases. Test cases from the source are more meaningful and can indicate the commonly exectued paths. For example, if a customer of the sample orders both the drinks and pizza, the following path can be considered as a test case: -welcome memberinfo orderstart availoffer availdrinks availoffer availpizza availoffer confirm 4. A Application Testing Environment An testing environment helps to automate the testing process and integrate testing tools to support testing during the test process. [7][21] have evaluated the architectures and capabilities of testing environments. The testing environment introduced here is to provide integrated tools to support the testing requirments as mentioned in section A Model Supporting Application Testing As shown in Figure 12, the testing tool set consists of integrated tools which support model construction, test case composition, test case generation, and test case execution.tools inside the tool set are controlled through the WWW control interface, to which authorized browsers can connect via HTTP. The followings present our testing activities and then the corresponding tool needs. A testing project is created throught the WWW control interface. The location and related parameters of the applcation under testing must be provided to proceed with subsequent testing activities. The testing activities are grouped into the following three major steps: (1) model construction (2) test case construction and composition, and (3) test case execution. During model construction, it extracts the inter-module control-flow graph of the. The server script analyzer fetches the programming modules of the under testing. It performs static link analysis on the source code of these modules. It also performs dynamic link analysis on the HTML output by interpreting the source code with the WWW server. The client script analyzer performs dynamic link analysis at client side by driving the WWW browser to fetch the programming modules and interprete the client-side scripts. Plain HTML files are regarded as special scripts which contain no script codes. Application models, which are the basis for automatic test case generation, are built by server/client script analyzers mentioned above. The test repository is responsible to store models. Testing Environment Controlling Brower Application Browser Client Analyzer HTTP traffics HTTP Recorder/ Player WWW Control Interface Load Tester Testing Tool Set Test Manager Testing Case/ Appl Model Repository WWW Sever Analyzer Test Report Generator Test Case Composer Test Case Generator Figure 12. The Application Testing Environment Testing Report Application Under Testing In test case construction, testing staffs prepare test cases to test the. Test case construction is performed through WWW browsers which connect to the testing environment s WWW interface. In the test case construction interface, users can browse the hierarchy and content of test cases organized by the test case manager. To create test cases throught the composition interface, users can apply the test case recorder, invoke test case generator, or handcraft test scripts. Test case recorder intercepts and records HTTP communications between browsers and servers to form test cases based on s user s real use-cases. To control the test case recorder s initialization, termination, and parameters such as test case name can be done through the interface. The recorded test cases are inserted into the test repository through the test manager. Figure 13. Initialize the test case recorder Testcase generator generates test cases based on the testing strategies mentioned in section 3.6. Each generated test case contains one testing path, which consists of a sequence of URLs to visit. If the whose execution path varies in accordance with the user s input values of browser s HTML form, the composition interface would prompt the test designers to provide proper input values which make the s execute along the intended path.
7 Figure 14. Test case composer : Test script editing support To specify test cases in a more flexible way the test case designer can resort to handcrafting test scripts by himself. Because the testing environment stores the outcome of test case recorders and test case generators in the test repository in the form of test scripts. Test desingers can change test cases by modifying test scripts The Execution of Testing Cases The following is a sample test script which describes an error login attempt followed by a correct one. The script language supports variable assignment, loop construct, and HTTP-related primitives such as HTTPGet and HTTPPost. The expect is used to verify the redirect commands sent by server to the browser. # # Test Case Description: # user001 fails login at the first # time, and then passes at next try # #set the base directory of the # set $URLBase set $URL1 login.html #set variables URL1, URL2 set $URL2 checklogin.asp # HTTP requests begin HTTPGet $URL1 #login.html contains a form with two #fields user and pass set $form1.user user001 set $form1.pass wrongpass #user001 login with wrongpass HTTPPost $URL2, $form1 #expect an HTTP-redirect command, #which redirect the browser #to errormessage.html expect errormessage.html #errormessage.html contains a link #back to login.html, #so follow the link to re-login HTTPGet $URL1 set $form2.user user001 set $form2.pass correctpass #user001 relogin with correctpass HTTPPost $URL2, $form2 #expect an HTTP-redirect command, #which redirect the user to main menu expect mainmenu.html clear $form1 clear $form2 Figure 15. A testing script sample. In test cases execution, the test case player interpretes designated testing scripts and sends corresponding HTTP requests. The test results of test execution are stored in the testing log of test repository, from which the test report generator summarizes testing reports. In the interface of the testing environment, testing staffs can select test cases from the list for execution. They can choose to run the test cases in batch mode or in interactive mode. In the batch mode the test cases are executed in background without rendering the HTML documents. The test case validation in the mode is made by expecting some string patterns in the returned HTML documents. However, for complicated s it needs human attention to validate the test cases. Figure 16. Interactive test case execution. The right-upper frame contains tested pages. In the interactive test case execution mode, testing staffs watch the pages under testing on the browser and control each step of the test case execution. For each test case the control panel of the test case player provides testing staffs with information about the number of pages to be visited, the data values to enter in HTML forms. Testing staffs lead the test case to next step or specific step by pressing the next step button or Goto N-th step button at the control panel.
8 Figure 17. Validate the test case and fill the test result For pages requiring data input, testing staffs can request the test case player to fill data in the form fields on the page by pressing the fill data button. The functionalities save testing staffs from manually filling testing data or locating hyperlinks to invoke on the page. It is especially useful when testing HTML forms with lots of data fields to fill. The test case validation is made by the testing staffs and the validation result is inserted into the test repository for generating testing report. Figure 18. Generated Testing Summary 4.3. Implementation of the Environment A prototype of the testing environment and the tool set have been developed and demonstrated. The testing center integrating tools in the tool set by several CGI programs and Java s. The client script driver is written in Java running at browser. The server script driver is implemented as a Java. Hyper-link information obtained from script drivers are analyzed by PERL to form models. Test case recorder/player are implemented as a proxy server with additional features. Users of the testing environment can manipulate the tools from Java Applets embedded in pages. The controlling interface implemented as Java Applet provides GUI for user interactions and communicates with the testing center via Java RMI [17]. 5. Conclusion and Future Work This paper models the inter-module relations of s in terms of control flow graph and data flow graph. In addition, a set of testing support tools are provided to help construct model by analyzing the programming modules statically and dynamically. Test cases of the can be generated based on the model or composed through the test case composition interface. Automatic testing tools such as test case player execute testing scripts to automate test, and load tester can help to understand the performance charateristics under different load levels. The prototype of the testing tools has been implemented and integrated in the environment. The future works includes: (1) constructing data flow model for the to apply data-flow related test case generation strategies. (2) applying domain testing techniques to drive the to go through a pre-determined test path by selecting input values from proper data ranges. Bibliography [1] Allaire Corp., Cold Fusion, in [2] ANSI/IEEE Std , IEEE Standard for Software Unit Testing in Collection of ANSI/IEEE standards on software engineering, IEEE Computer Society Press, [3] ANSI/IEEE Std , IEEE Standard for Software Test Documentation in Collection of ANSI/IEEE standards on software engineering, IEEE Computer Society Press, [4] Apache Project, Module mod_include, in mod/mod_include.html. [5] AutoTester Inc., AutoTester, in [6] Beizer B., Software Testing Techniques, 2 nd ed, Van Nostrand Reinhold, [7] Eickelmann N.S. and Richardson D.J., An evaluation of software test environment architectures, IEEE Proceedings of ICSE-18, p.p , [8] Frankl, P.G., and Weyuker, E.J., An applicable family of data flow testing criteria, IEEE Transactions on Software Engineering, Vol 14, p.p , [9] Fromme B., Software Testing Challenges and Solutions, InterWorks 98 Conference, Also available in IWorks98/sessions/sn135/paper.html [10] Goglia, P.A., Testing Client/ Applications, QED Publishing Group, [11] Homer A., et al. Professional Active Pages, WROX publishing, [12] Ntafos, S. C., A comparison of some structural testing strategies, IEEE Transactions on Software Engineering, Vol 14, p.p , [13] Rapps, S., and Weyuker, E.J., Selecting software test data using data flow information, IEEE Transactions on Software Engineering, Vol 11, p.p , [14] Rational Software, SQA Site Check, in [15] Sun Microsystem, Java Servlet, in index.html. [16] Sun Microsystem, JDBC, in [17] Sun Microsystem, Java RMI, in [18] Softbridge Inc., Analyst, in [19] Sun Microsystem, SunTest Suite, in [20] Testing and Testing Management Tools. Available in [21] Vogel P.A., An Integrated General Purpose Automated Test Environment, ACM ISSTA 93, p.p , 1993.
Constructing Control-Flow-Based Testing Tools for Web Application
Constructing Control-Flow-Based Testing Tools for Ji-Tzay Yang, Jiun-Long Huang, Feng-Jian Wang {jjyang,jlhuang,fjwang}@csie.nctu.edu.tw Computer Science and Engineering National Chiaotung University Hsinchu
Web Pages. Static Web Pages SHTML
1 Web Pages Htm and Html pages are static Static Web Pages 2 Pages tagged with "shtml" reveal that "Server Side Includes" are being used on the server With SSI a page can contain tags that indicate that
Building Java Servlets with Oracle JDeveloper
Building Java Servlets with Oracle JDeveloper Chris Schalk Oracle Corporation Introduction Developers today face a formidable task. They need to create large, distributed business applications. The actual
End User Guide The guide for email/ftp account owner
End User Guide The guide for email/ftp account owner ServerDirector Version 3.7 Table Of Contents Introduction...1 Logging In...1 Logging Out...3 Installing SSL License...3 System Requirements...4 Navigating...4
Client/server is a network architecture that divides functions into client and server
Page 1 A. Title Client/Server Technology B. Introduction Client/server is a network architecture that divides functions into client and server subsystems, with standard communication methods to facilitate
LabVIEW Internet Toolkit User Guide
LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,
WEB DATABASE PUBLISHING
WEB DATABASE PUBLISHING 1. Basic concepts of WEB database publishing (WEBDBP) 2. WEBDBP structures 3. CGI concepts 4. Cold Fusion 5. API - concepts 6. Structure of Oracle Application Server 7. Listeners
What Is the Java TM 2 Platform, Enterprise Edition?
Page 1 de 9 What Is the Java TM 2 Platform, Enterprise Edition? This document provides an introduction to the features and benefits of the Java 2 platform, Enterprise Edition. Overview Enterprises today
Chapter 5. Regression Testing of Web-Components
Chapter 5 Regression Testing of Web-Components With emergence of services and information over the internet and intranet, Web sites have become complex. Web components and their underlying parts are evolving
How To Understand Programming Languages And Programming Languages
Objectives Differentiate between machine and and assembly languages Describe Describe various various ways ways to to develop develop Web Web pages pages including including HTML, HTML, scripting scripting
Xtreeme Search Engine Studio Help. 2007 Xtreeme
Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to
Business Application Services Testing
Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load
EVALUATION OF SERVER-SIDE TECHNOLOGY FOR WEB DEPLOYMENT
EVALUATION OF SERVER-SIDE TECHNOLOGY FOR WEB DEPLOYMENT Dr. Alexander Pons, University of Miami, [email protected] ABSTRACT The deployment of Web applications consisting of dynamic content requires the selection
Efficiency of Web Based SAX XML Distributed Processing
Efficiency of Web Based SAX XML Distributed Processing R. Eggen Computer and Information Sciences Department University of North Florida Jacksonville, FL, USA A. Basic Computer and Information Sciences
Web Hosting Features. Small Office Premium. Small Office. Basic Premium. Enterprise. Basic. General
General Basic Basic Small Office Small Office Enterprise Enterprise RAID Web Storage 200 MB 1.5 MB 3 GB 6 GB 12 GB 42 GB Web Transfer Limit 36 GB 192 GB 288 GB 480 GB 960 GB 1200 GB Mail boxes 0 23 30
Understanding Application Servers
Understanding Application Servers Author: Ajay Srivastava & Anant Bhargava TCS, Jan 03 Background Application servers, whatever their function, occupies a large chunk of computing territory between database
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see
SYSTEM DEVELOPMENT AND IMPLEMENTATION
CHAPTER 6 SYSTEM DEVELOPMENT AND IMPLEMENTATION 6.0 Introduction This chapter discusses about the development and implementation process of EPUM web-based system. The process is based on the system design
Architecture Design For Web-based Application Systems. Instructor: Dr. Jerry Gao Class: CMPE296U
Architecture Design For Web-based Application Systems Instructor: Dr. Jerry Gao Class: CMPE296U Architecture Design For Web-Based Application Systems - (1994-1995) Hypertext Web Systems: Graphic Web Browsers
A DIAGRAM APPROACH TO AUTOMATIC GENERATION OF JSP/SERVLET WEB APPLICATIONS
A DIAGRAM APPROACH TO AUTOMATIC GENERATION OF JSP/SERVLET WEB APPLICATIONS Kornkamol Jamroendararasame, Tetsuya Suzuki and Takehiro Tokuda Department of Computer Science Tokyo Institute of Technology Tokyo
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Elements of Advanced Java Programming
Appendix A Elements of Advanced Java Programming Objectives At the end of this appendix, you should be able to: Understand two-tier and three-tier architectures for distributed computing Understand the
FileMaker Server 9. Custom Web Publishing with PHP
FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,
If your organization is not already
Before you build your Web site, you need a solid design. Eden Watt At a Glance When you develop your first e-commerce site, you will discover that there are a few new things to learn about application
Performance Comparison of Database Access over the Internet - Java Servlets vs CGI. T. Andrew Yang Ralph F. Grove
Performance Comparison of Database Access over the Internet - Java Servlets vs CGI Corresponding Author: T. Andrew Yang T. Andrew Yang Ralph F. Grove [email protected] [email protected] Indiana University
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
Detailed Table of Contents
Detailed Table of Contents Foreword Preface 1. Networking Protocols and OSI Model 1 1.1 Protocols in Computer Communications 3 1.2 The OSI Model 7 1.3 OSI Layer Functions 11 Summary 19 Key Terms and Concepts
Architectural Overview
Architectural Overview Version 7 Part Number 817-2167-10 March 2003 A Sun ONE Application Server 7 deployment consists of a number of application server instances, an administrative server and, optionally,
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Brief Course Overview An introduction to Web development Server-side Scripting Web Servers PHP Client-side Scripting HTML & CSS JavaScript &
Multimedia Applications. Mono-media Document Example: Hypertext. Multimedia Documents
Multimedia Applications Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Chapter 4: Multimedia Systems Storage Aspects Chapter 5: Multimedia Usage and Applications Documents
OVERVIEW OF ASP. What is ASP. Why ASP
OVERVIEW OF ASP What is ASP Active Server Pages (ASP), Microsoft respond to the Internet/E-Commerce fever, was designed specifically to simplify the process of developing dynamic Web applications. Built
Internet Script Editor (ISE)
ISE Application, page 1 ISE Functionality, page 1 ISE Requirements, page 2 Secure Socket Layer (SSL) Requirements for ISE, page 2 ISE Installation and Upgrades, page 5 Troubleshooting Tools for Internet
Apache Server Implementation Guide
Apache Server Implementation Guide 340 March Road Suite 600 Kanata, Ontario, Canada K2K 2E4 Tel: +1-613-599-2441 Fax: +1-613-599-2442 International Voice: +1-613-599-2441 North America Toll Free: 1-800-307-7042
ASP.NET: THE NEW PARADIGM FOR WEB APPLICATION DEVELOPMENT
ASP.NET: THE NEW PARADIGM FOR WEB APPLICATION DEVELOPMENT Dr. Mike Morrison, University of Wisconsin-Eau Claire, [email protected] Dr. Joline Morrison, University of Wisconsin-Eau Claire, [email protected]
FF/EDM Intro Industry Goals/ Purpose Related GISB Standards (Common Codes, IETF) Definitions d 4 d 13 Principles p 6 p 13 p 14 Standards s 16 s 25
FF/EDM Intro Industry Goals/ Purpose GISB defined two ways in which flat files could be used to send transactions and transaction responses: interactive and batch. This section covers implementation considerations
International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476
ERP SYSYTEM Nitika Jain 1 Niriksha 2 1 Student, RKGITW 2 Student, RKGITW Uttar Pradesh Tech. University Uttar Pradesh Tech. University Ghaziabad, U.P., India Ghaziabad, U.P., India ABSTRACT Student ERP
Software Architecture
Software Architecture Definitions http://www.sei.cmu.edu/architecture/published_definiti ons.html ANSI/IEEE Std 1471-2000, Recommended Practice for Architectural Description of Software- Intensive Systems
Server Installation, Administration and Integration Guide
Server Installation, Administration and Integration Guide Version 1.1 Last updated October 2015 2015 sitehelpdesk.com, all rights reserved TABLE OF CONTENTS 1 Introduction to WMI... 2 About Windows Management
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
Topics in Website Testing. [Reading assignment: Chapter 14, pp. 211-227]
Topics in Website Testing [Reading assignment: Chapter 14, pp. 211-227] How to test a website Easiest way to start is by treating the web site as a black box. Look at a sample website such as www.apple.com
Internet Technologies. World Wide Web (WWW) Proxy Server Network Address Translator (NAT)
Internet Technologies World Wide Web (WWW) Proxy Server Network Address Translator (NAT) What is WWW? System of interlinked Hypertext documents Text, Images, Videos, and other multimedia documents navigate
Rational Software White Paper
Modeling Web Application Architectures with UML By: Jim Conallen, Rational Software June 1999 A version of this material appears in the October 1999 (volume 42, number 10) issue of Communications of the
FileMaker Server 13. Getting Started Guide
FileMaker Server 13 Getting Started Guide 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,
GenericServ, a Generic Server for Web Application Development
EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. GenericServ, a Generic Server for Web Application Development Samar TAWBI PHD student [email protected] Bilal CHEBARO Assistant professor [email protected] Abstract
Software Requirement Specification For Flea Market System
Software Requirement Specification For Flea Market System By Ilya Verlinsky, Alexander Sarkisyan, Ambartsum Keshishyan, Igor Gleyser, Andrey Ishuninov 1 INTRODUCTION 1.1 Purpose 1.1.1 Purpose of SRS document
Web Design and Implementation for Online Registration at University of Diyala
International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol. 8 No. 1 Sep. 2014, pp. 261-270 2014 Innovative Space of Scientific Research Journals http://www.ijias.issr-journals.org/ Web
MGC WebCommander Web Server Manager
MGC WebCommander Web Server Manager Installation and Configuration Guide Version 8.0 Copyright 2006 Polycom, Inc. All Rights Reserved Catalog No. DOC2138B Version 8.0 Proprietary and Confidential The information
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
2. Accessing Databases via the Web
Supporting Web-Based Database Application Development Quan Xia 1 Ling Feng 2 Hongjun Lu 3 1 National University of Singapore, Singapore, [email protected] 2 Hong Kong Polytechnic University, China,
Computer Networks 1 (Mạng Máy Tính 1) Lectured by: Dr. Phạm Trần Vũ MEng. Nguyễn CaoĐạt
Computer Networks 1 (Mạng Máy Tính 1) Lectured by: Dr. Phạm Trần Vũ MEng. Nguyễn CaoĐạt 1 Lecture 10: Application Layer 2 Application Layer Where our applications are running Using services provided by
Kaseya Server Instal ation User Guide June 6, 2008
Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's
Windows Hosting Documentation
Windows Hosting Documentation Web Hosting Basics Control Panel Access your Control Panel at http://your-domain-name.com/stats/ to change your password, setup your e-mail accounts, administer your account,
WEB PROGRAMMING DESKTOP INTERACTIVITY AND PROCESSING
WEB PROGRAMMING The Web was originally designed to deliver static Web pages from a Web server connected somewhere on the Internet to a Web browser sitting on a user s desktop computer. Basically, all a
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
10CS73:Web Programming
10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server
IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide
IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to
Turning ClearPath MCP Data into Information with Business Information Server. White Paper
Turning ClearPath MCP Data into Information with Business Information Server White Paper 1 Many Unisys ClearPath MCP Series customers have Enterprise Database Server (DMSII) databases to support a variety
Bitrix Site Manager 4.1. User Guide
Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet
Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine
Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine System Details: The development & deployment for this documentation was performed on the following:
IT3503 Web Development Techniques (Optional)
INTRODUCTION Web Development Techniques (Optional) This is one of the three optional courses designed for Semester 3 of the Bachelor of Information Technology Degree program. This course on web development
http://docs.trendmicro.com
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,
Time Monitoring Tool Software Requirements Specifications. Version <1.0>
Time Monitoring Tool Software Requirements Specifications Version Revision History Date Version Description Author First version Martin Robillard Page 2 of 18 Table of Contents
Galina Bogdanova, Todor Todorov, Dimitar Blagoev, Mirena Todorova
International Journal "Information Technologies and Knowledge" Vol.1 / 2007 335 and maintenance of software for distributed corporate systems with a maximal convenience. Its software is called CORBA-application.
Fast remote data access for control of TCP/IP network using android Mobile device
RESEARCH ARTICLE OPEN ACCESS Fast remote data access for control of TCP/IP network using android Mobile device Vaibhav Muddebihalkar *, R.M Gaudar** (Department of Computer Engineering, MIT AOE Alandi
Drupal CMS for marketing sites
Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit
A Generic Database Web Service
A Generic Database Web Service Erdogan Dogdu TOBB Economics and Technology University Computer Engineering Department Ankara, Turkey [email protected] Yanchao Wang and Swetha Desetty Georgia State University
Parallels Plesk Automation. Customer s Guide. Parallels Plesk Automation 11.5
Parallels Plesk Automation Customer s Guide Parallels Plesk Automation 11.5 Last updated: 17 March 2015 Contents Quick Start with Hosting Panel 4 Set Up Your First Website... 4 1. Create Your Site... 5
FileMaker Server 15. Getting Started Guide
FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
Microsoft Expression Web
Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as
S y s t e m A r c h i t e c t u r e
S y s t e m A r c h i t e c t u r e V e r s i o n 5. 0 Page 1 Enterprise etime automates and streamlines the management, collection, and distribution of employee hours, and eliminates the use of manual
Chapter 13 Computer Programs and Programming Languages. Discovering Computers 2012. Your Interactive Guide to the Digital World
Chapter 13 Computer Programs and Programming Languages Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate between machine and assembly languages Identify
Oracle WebLogic Foundation of Oracle Fusion Middleware. Lawrence Manickam Toyork Systems Inc www.toyork.com http://ca.linkedin.
Oracle WebLogic Foundation of Oracle Fusion Middleware Lawrence Manickam Toyork Systems Inc www.toyork.com http://ca.linkedin.com/in/lawrence143 History of WebLogic WebLogic Inc started in 1995 was a company
Migrating helpdesk to a new server
Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2
Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat
Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat Page 1 of 14 Roadmap Client-Server Architecture Introduction Two-tier Architecture Three-tier Architecture The MVC Architecture
Web Design Specialist
UKWDA Training: CIW Web Design Series Web Design Specialist Course Description CIW Web Design Specialist is for those who want to develop the skills to specialise in website design and builds upon existing
Virtual Credit Card Processing System
The ITB Journal Volume 3 Issue 2 Article 2 2002 Virtual Credit Card Processing System Geraldine Gray Karen Church Tony Ayres Follow this and additional works at: http://arrow.dit.ie/itbj Part of the E-Commerce
IBM FileNet eforms Designer
IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 Note
BillQuick Web i Time and Expense User Guide
BillQuick Web i Time and Expense User Guide BQE Software Inc. 1852 Lomita Boulevard Lomita, California 90717 USA http://www.bqe.com Table of Contents INTRODUCTION TO BILLQUICK... 3 INTRODUCTION TO BILLQUICK
FileMaker Server 12. FileMaker Server Help
FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.
DIABLO VALLEY COLLEGE CATALOG 2014-2015
COMPUTER SCIENCE COMSC The computer science department offers courses in three general areas, each targeted to serve students with specific needs: 1. General education students seeking a computer literacy
Last Updated: July 2011. STATISTICA Enterprise Server Security
Last Updated: July 2011 STATISTICA Enterprise Server Security STATISTICA Enterprise Server Security Page 2 of 10 Table of Contents Executive Summary... 3 Introduction to STATISTICA Enterprise Server...
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Interstage Application Server V7.0 Single Sign-on Operator's Guide
Interstage Application Server V7.0 Single Sign-on Operator's Guide Single Sign-on Operator's Guide - Preface Trademarks Trademarks of other companies are used in this user guide only to identify particular
Email Signatures. Advanced User s Guide. Version 2.0
Advanced User s Guide Version 2.0 Contents Email Signatures... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Copying Click-to-XyZ Code... 4 Logging in to your ifbyphone Account... 4 Web-Based
ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client
ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development B.V. 2002.
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
Important. Please read this User s Manual carefully to familiarize yourself with safe and effective usage.
Important Please read this User s Manual carefully to familiarize yourself with safe and effective usage. About This Manual This manual describes how to install and configure RadiNET Pro Gateway and RadiCS
Oracle WebLogic Server 11g: Administration Essentials
Oracle University Contact Us: 1.800.529.0165 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials training
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
A Web-Based Real-Time Traffic Monitoring Scheme Using CORBA
A Web-Based Real-Time Traffic Monitoring Scheme Using CORBA Yuming Jiang, Chen-Khong Tham, Chi-Chung Ko Department of Electrical Engineering, National University of Singapore, 10 Kent Ridge Crescent, Singapore
