JBoss Developer Studio 3.0

Size: px
Start display at page:

Download "JBoss Developer Studio 3.0"

Transcription

1 JBoss Developer Studio 3.0 Struts Tools Reference Guide 1 JBoss Developer Studio 3.0 Struts Tools Reference Guide Provides information relating to the Struts T ools module. Edition 1.0 Anatoly Fedosik Olga Chikvina Svetlana Mukhina smukhina@exadel.com

2 2 Legal Notice Legal Notice Copyright 2010 Red Hat. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, MetaMatrix, Fedora, the Infinity Logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux is the registered trademark of Linus T orvalds in the United States and other countries. Java is a registered trademark of Oracle and/or its affiliates. XFS is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL is a registered trademark of MySQL AB in the United States, the European Union and other countries. All other trademarks are the property of their respective owners.

3 JBoss Developer Studio 3.0 Struts Tools Reference Guide 3 Abstract The Struts Tools Reference Guide explains how to use the Struts Tools to create high-quality web applications.

4 4 Table of Contents Table of Contents Preface 1. Document Conventions 1.1. T ypographic Conventions 1.2. Pull-quote Conventions 1.3. Notes and Warnings 2. We Need Feedback! 1. Introduction 1.1. Key Features of Struts Tools 1.2. Other relevant resources on the topic 2. Projects 2.1. Creating a New Struts Project 2.2. Importing an Existing Struts Project with Any Structure 2.3. Adding Struts Capability to an Existing Web Application 2.4. Relevant Resources Links 3. Editors 3.1. Web.xml Editor 3.2. Graphical Editor for Struts Configuration Files Diagram View Tree View Source View 3.3. Graphical Editor for T iles Files Create New Tiles File Tree View Diagram View Source 3.4. Graphical Editor for Struts Validation Files 4. Modules 4.1. When Importing a Struts Project 4.2. Editing Modules in an Existing Project 4.3. Adding New Modules 5. Code Generation 6. Struts Configuration File Debugger 7. Customizable Page Links Recognizer 8. Struts Project Verification 9. Relevant Resources Links A. Revision History Index

5 JBoss Developer Studio 3.0 Struts Tools Reference Guide 5 Preface 1. Document Conventions T his manual uses several conventions to highlight certain words and phrases and draw attention to specific pieces of information. In PDF and paper editions, this manual uses typefaces drawn from the Liberation Fonts set. T he Liberation Fonts set is also used in HTML editions if the set is installed on your system. If not, alternative but equivalent typefaces are displayed. Note: Red Hat Enterprise Linux 5 and later includes the Liberation Fonts set by default T ypographic Conventions Four typographic conventions are used to call attention to specific words and phrases. T hese conventions, and the circumstances they apply to, are as follows. Mono-spaced Bold Used to highlight system input, including shell commands, file names and paths. Also used to highlight keycaps and key combinations. For example: T o see the contents of the file m y_next_bestselling_novel in your current working directory, enter the cat m y_next_bestselling_novel command at the shell prompt and press Enter to execute the command. The above includes a file name, a shell command and a keycap, all presented in mono-spaced bold and all distinguishable thanks to context. Key combinations can be distinguished from keycaps by the plus sign that connects each part of a key combination. For example: Press Enter to execute the command. Press Ctrl+Alt+F2 to switch to a virtual terminal. T he first paragraph highlights the particular keycap to press. T he second highlights two key combinations (each a set of three keycaps with each set pressed simultaneously). If source code is discussed, class names, methods, functions, variable names and returned values mentioned within a paragraph will be presented as above, in m ono-spaced bold. For example: File-related classes include filesystem for file systems, file for files, and dir for directories. Each class has its own associated set of permissions. Proportional Bold T his denotes words or phrases encountered on a system, including application names; dialog box text; labeled buttons; check-box and radio button labels; menu titles and sub-menu titles. For example: Choose System Preferences Mouse from the main menu bar to launch Mouse Preferences. In the Buttons tab, click the Left-handed m ouse check box and click Close to switch the primary mouse button from the left to the right (making the mouse suitable for use in the left hand). T o insert a special character into a gedit file, choose Applications Accessories Character Map from the main menu bar. Next, choose Search Find from the

6 6 Preface Character Map menu bar, type the name of the character in the Search field and click Next. T he character you sought will be highlighted in the Character T able. Double-click this highlighted character to place it in the T ext to copy field and then click the Copy button. Now switch back to your document and choose Edit Paste from the gedit menu bar. T he above text includes application names; system-wide menu names and items; application-specific menu names; and buttons and text found within a GUI interface, all presented in proportional bold and all distinguishable by context. Mono-spaced Bold Italic or Proportional Bold Italic Whether mono-spaced bold or proportional bold, the addition of italics indicates replaceable or variable text. Italics denotes text you do not input literally or displayed text that changes depending on circumstance. For example: T o connect to a remote machine using ssh, type ssh username@ domain.name at a shell prompt. If the remote machine is example.com and your username on that machine is john, type ssh john@ exam ple.com. T he m ount -o rem ount file-system command remounts the named file system. For example, to remount the /home file system, the command is mount -o remount /home. T o see the version of a currently installed package, use the rpm -q package command. It will return a result as follows: package-version-release. Note the words in bold italics above username, domain.name, file-system, package, version and release. Each word is a placeholder, either for text you enter when issuing a command or for text displayed by the system. Aside from standard usage for presenting the title of a work, italics denotes the first use of a new and important term. For example: Publican is a DocBook publishing system Pull-quote Conventions T erminal output and source code listings are set off visually from the surrounding text. Output sent to a terminal is set in mono-spaced roman and presented thus: books Desktop documentation drafts mss photos stuff svn books_tests Desktop1 downloads images notes scripts svgs Source-code listings are also set in m ono-spaced rom an but add syntax highlighting as follows:

7 JBoss Developer Studio 3.0 Struts Tools Reference Guide 7 package org.jboss.book.jca.ex1; import javax.naming.initialcontext; public class ExClient { public static void main(string args[]) throws Exception { InitialContext inictx = new InitialContext(); Object ref = inictx.lookup("echobean"); EchoHome home = (EchoHome) ref; Echo echo = home.create(); System.out.println("Created Echo"); } } System.out.println("Echo.echo('Hello') = " + echo.echo("hello")); 1.3. Notes and Warnings Finally, we use three visual styles to draw attention to information that might otherwise be overlooked. Note Notes are tips, shortcuts or alternative approaches to the task at hand. Ignoring a note should have no negative consequences, but you might miss out on a trick that makes your life easier. Important Important boxes detail things that are easily missed: configuration changes that only apply to the current session, or services that need restarting before an update will apply. Ignoring a box labeled 'Important' will not cause data loss but may cause irritation and frustration. Warning Warnings should not be ignored. Ignoring warnings will most likely cause data loss. 2. We Need Feedback! If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component. If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.

8 8 Preface

9 JBoss Developer Studio 3.0 Struts Tools Reference Guide 9 Chapter 1. Introduction If you prefer to develop web applications using Struts technology JBoss T ools also meet your needs. T he professional developer toolset provides all necessary editors and wizards for creating Struts resources that enhances the process of building high-quality web applications. Note: Note that JBoss T ools support the Struts 1.1, 1.2.x versions. In this guide you will learn how to take advantage of Struts support that JBoss Tools provide Key Features of Struts Tools For a start, we propose you to look through the table of main features of Struts Tools: Table 1.1. Key Functionality for Struts Tools Feature Benefit Chapter Struts Support Support for Struts Configuration File Support for Struts modules Verification and Validation Step-by-step wizards for creating a new struts project with a number of predefined templates, importing existing ones and adding struts capabilities to non-struts web projects. Working on file using three modes: diagram, tree and source. Synchronization between the modes and full control over the code. Easy moving around the diagram using the Diagram Navigator. Working with struts projects that have multiple modules. Possibility to use Struts configuration file debugger allowing to set break points on struts diagram and then launch the server in debug mode. A Struts module (struts-config.xml) is automatically created while creating a new project. There is also possibility to add new ones or edit already existing modules in your existing project or while importing Struts project. All occurring errors will be immediately reported by verification feature, no matter in what view you are working. Constant validation and errors checking allows to catch many of the errors during development process that significantly reduces development time. struts support graphical editor for struts configuration file debugger modules verification and validation 1.2. Other relevant resources on the topic All JBoss Developer Studio/JBoss T ools documentation you can find onjboss T ools project page. T he latest documentation builds are available onnightly docs page.

10 10 Chapter 2. Projects Chapter 2. Projects JBoss T ools provide the following functionality when working with Struts: Create new Struts projects Import (open) existing Struts projects. You can import any project structure Add Struts capabilities to any existing Eclipse project Import and add Struts capabilities to any existing project created outside Eclipse. Now, we'll focus on all these points more fully Creating a New Struts Project JBoss T ools provides a New Struts Project Wizard that radically simplifies the process for getting started with a new Struts project. You just need to follow these steps: Select File > New > Project... from the menu bar. Then, select JBoss Tools Web > Struts > Struts Project in this dialog box. Click Next: Figure 2.1. Selecting Struts Wizard On this form, provide the Project Name. You can also select where to create the project or use the default path. Next to Struts Environment set which Struts version to use.

11 JBoss Developer Studio 3.0 Struts Tools Reference Guide 11 Figure 2.2. Creating Struts Project Tip: Don't put spaces in project names since some OS could experience problems with their processing and searching these files. You can select the KickStart template, then the project created will include a simple Hello World type application that is ready to run.

12 12 Chapter 2. Projects Figure 2.3. Choosing Struts T emplate Next, you register this application with the current servlet container defined for your workspace (JBoss AS, by default) in order to allow you to test your application more easily while still developing it. A new entry will be added in the servlet container configuration file to enable running the application in-place (called null deployment or link deployment). Uncheck the "T arget Server" check box if for some reason you don't want to register your application at this point.

13 JBoss Developer Studio 3.0 Struts Tools Reference Guide 13 Figure 2.4. Registering The Project at Server On the next form, you can select the TLD files to include in this project: Figure 2.5. Selecting T ag Libraries After the project is created, you should have the following project structure (if you used the KickStart template):

14 14 Chapter 2. Projects Figure 2.6. Project Structure Tip: If you want to hide the jar files from Web App Libraries in view, select the down-pointing arrow in the upper right corner, select Filters..., check the box next to Name filter patterns (matching names will be hidden), and type *.jar into the field. Then, click OK Importing an Existing Struts Project with Any Structure For detailed information on migration projects to JBoss Developer Studio see Migration Guide Adding Struts Capability to an Existing Web Application Here, we'll consider how to add Struts functionality (Struts libraries, tag libraries and a Struts configuration file) to any existing Web application project in your Eclipse workspace. By adding a Struts Nature to your project, you can now edit files using JBoss Tools editors, such as the Struts configuration editor and the JBoss Tools JSP editor. To take advantage of this just right-click the project and select JBoss Tools > Add Struts Capabilities from the context menu. T his will start the process of adding all necessary libraries and files to make a Web Struts project from your one.

15 JBoss Developer Studio 3.0 Struts Tools Reference Guide 15 Figure 2.7. Adding Struts Capabilities In the wizard you should point to location of your deployment descriptor file web.xml and name of the project.

16 16 Chapter 2. Projects Figure 2.8. Choosing Project Location After hitting Next, you will see the following screen. This screen simply means that you need to add at least one Struts module to your project to make this project a Struts project. Adding a Struts module means that a new struts-config.xml will be added to your project and registered in the web.xml file. In addition, all required Struts libraries will be added. T o add a Struts module, select the Add Struts Support button.

17 JBoss Developer Studio 3.0 Struts Tools Reference Guide 17 Figure 2.9. Project Modules Here you can select what Struts Version, Servlet Class, URL Pattern and TLDs to add to this project. Figure Selecting Struts Support Options When done, you will see the default Struts module configuration information. See how to Edit Struts modules.

18 18 Chapter 2. Projects Figure Project Configuration Information On the last screen you can set the different folders for your project as well as register this application with a servlet container. If you want the libraries (.jar files) will be automatically added to your project, click on the checkbox Add Libraries. Figure Registering the Project at Server

19 JBoss Developer Studio 3.0 Struts Tools Reference Guide 19 When done, you can open end edit the struts-config.xml file using useful Struts configuration file editor provided by JBDS. (The Struts configuration is shown below in the Tree viewer). Figure Struts-config.xml File 2.4. Relevant Resources Links You can find more in-depth explanation on how to work with special wizards, editors and views that can be used in various scenarios while developing Struts applications in our Visual Web T ools guide.

20 20 Chapter 3. Editors Chapter 3. Editors In this chapter we'll introduce you to featured graphical editors for specific Struts files such as Struts Configuration files, T iles files, Struts Validation files and web.xml Web.xml Editor The web.xml file inside the WEB-INF folder is a deployment descriptor file for a Web Application. It describes the servlets and other components and deployment properties that make up your application. JBoss T ools add the web.xml file to created Struts project automatically and provides a special editor for its editing. See the Visual Web T ools guide that gives a descriptive information on the web.xml editor Graphical Editor for Struts Configuration Files First, let's dwell on the Struts Configuration file editor. T his editor has three views with different representation of struts-config.xml: Diagram, T ree and Source. The views can be selected via the tabs at the bottom of the editor. Any changes made in one view are immediately visible when you switch to any other view. Now, we'll consider every view in more detail Diagram View T he Diagram view graphically displays the Web flow of the application defined in the Struts configuration file. Figure 3.1. Diagram View T he Diagram view allows to edit navigation in your Struts application. Just by right-clicking anywhere on the diagram, you can use a context menu to create the building blocks of a Struts application: Actions

21 JBoss Developer Studio 3.0 Struts Tools Reference Guide 21 Global forwards Global exceptions JSP Pages Figure 3.2. Diagram Context Menu Along the upper-left side of the editor is a stack of seven icons for changing the behavior of the cursor in the diagram. Figure 3.3. Editor Icons T he first icon switches to the default regular selection cursor, the second to the marquee selection cursor and the third to the new connection cursor. The last four icons switch the cursor to an insert cursor for each type of Struts build block listed above (and in the order listed). For instance, clicking on the first of these four icons (the one with the gears) will switch the cursor to insert actions. Clicking anywhere in the diagram with this cursor has the same effect as right-click and selecting Add > Action... from the context menu with the regular cursor active. It's just more efficient to use this cursor if you're adding more than one action at once Tree View T he T ree view represents the different elements of the Struts application that are organized into functional categories on the left-hand side and a form for editing the properties of currently selected items on the right-hand side.

22 22 Chapter 3. Editors Figure 3.4. Tree View You can right-click on any node in the category tree and perform appropriate operations through a context menu. For instance, by right-clicking on the action-mappings category node, you can add new actions to the application. Figure 3.5. Tree Context Menu Let's consider the tree on the left more closely. Under the data-sources node you can create a Data Source object that will be configured and made available as a servlet context attribute.

23 JBoss Developer Studio 3.0 Struts Tools Reference Guide 23 The form-beans node is meant for creating a set of form bean descriptors for this module. Every created element under this node is a JavaBean that implements the org.apache.struts.action.actionform class. Use the Properties editor on the right to adjust properties specific to every created form-bean. T he global-exceptions node is intended for registering the handlers for the exceptions that might be thrown by an Action object. Use the global-forwards node to add, edit or delete a global forwards that represent ActionForward objects available to all Action objects as a return value. T he controller node allows you to configure the controller properties. Under the resources node you can add, delete, or edit message resources. Under the plug-ins node you can define a Struts plug-in. Right-click the node, select Create Plug-in and specify the plug-ib Id and ClassName by pointing to the Java class which implements the org.apache.struts.action.plugin interface Source View In the Source view, you have complete editing control of the underlying XML coding. Figure 3.6. Source View When working in Source view, you always have all the following features available: Content Assist Open On Selection File Folding You can take advantage of code assist.

24 24 Chapter 3. Editors Figure 3.7. Code Assist T he editor will also immediately flag any errors. Figure 3.8. Errors in Source View Finally, you can use the Outline view with the editor to easily navigate through the file. Figure 3.9. Outline View

25 JBoss Developer Studio 3.0 Struts Tools Reference Guide 25 Find more information about editor features in the editor features chapter Graphical Editor for Tiles Files Here, you'll know how to make use of the special graphical editor for T iles configuration files. The editor has three main views: Tree, Diagram and Source. The views can be selected via the tabs at the bottom of the editor. Any changes made in one view are immediately visible when you switch to any other view. Before we consider each view of the editor, let's look at the way of creating new Tiles files Create New Tiles File To create new Tiles files, right click any folder and select New > Tiles File. Figure Creating a New Tiles File Tree View The Tree view represents the different elements of the Tiles file that are organized into functional categories on the left-hand side and a form for editing the properties of currently selected items on the right-hand side.

26 26 Chapter 3. Editors Figure Tree View To edit the file, simply right click any node and select among the available actions. Figure Editing in T iles Editor Diagram View The Diagram view allows you to create complex Tiles files in the form of a diagram.

27 JBoss Developer Studio 3.0 Struts Tools Reference Guide 27 Figure Diagram Mode T o create new definitions, simply right click anywhere in the diagram. Figure Creating New Definition You can also use the Diagram toolbar to make editing easier. Figure Diagram T oolbar

28 28 Chapter 3. Editors It contains four icons for changing the cursor state. The first one is the default cursor state for selecting existing nodes. The second icon is marquee selector. The third is used for creating new connections and the last one is for adding definition template to the content Source The other view of the Tiles editor is the Source view that gives you full control over the source. Any changes here will immediately appear in other modes when you switch to them. When working in Source view, you always have all following features available: Content Assist Open On Selection Figure Source View Code assist is available in the Source mode. Figure Code Assist Any errors are immediately reported as shown below:

29 JBoss Developer Studio 3.0 Struts Tools Reference Guide 29 Figure Errors Reporting You can also use the Outline view together with the editor's Source mode. It provides an easier navigation through the file. Figure Outline View 3.4. Graphical Editor for Struts Validation Files Providing full support for development Struts applications JBoss T ools comes with a visual validation editor. To open the editor double-click on the validation file or if you don't have it create a new one. To create a new validation file, right click any folder in Project Explorer and select File > New > Other... from the context menu and then JBoss Tools Web > Struts > Validation File.

30 30 Chapter 3. Editors Figure Creating New Validation File T he validation editor works with five modes: Formsets, Validators, Constants and standard T ree and Source that you can easily switch over using tabs at the bottom of the editor. The Formsets view shows forms and their elements on the left side and the dialogue for defining their validation rules on the right side.

31 JBoss Developer Studio 3.0 Struts Tools Reference Guide 31 Figure Formsets View T he Constants view let you set constant values for your validation rules. Figure Constansts View The validation file can also be viewed in a Tree view.

32 32 Chapter 3. Editors Figure Tree View At any point you have full control over the source by switching to the Source view. Any editing in this view will immediately be available in other views of the editor. Figure Source View You can also open your own custom or Struts-standard validation-rules.xml file. The Validators view shows the validation rules for a selected validator. You can of course add your own rules.

33 JBoss Developer Studio 3.0 Struts Tools Reference Guide 33 Figure Validators View Here are the validation rules shown in the Source mode. Figure Validation Rules

34 34 Chapter 4. Modules Chapter 4. Modules JBoss T ools support working with Struts projects that have multiple modules. You can easily do the following: Add new modules Edit modules for an existing project or during Struts project import Now, let's discuss this functionality in more detail When Importing a Struts Project During Struts project import, if the project has multiple modules, you will see a screen with all existing modules. You can select each module and edit its details. Figure 4.1. Configuring Project Modules 4.2. Editing Modules in an Existing Project To edit modules in an existing project, right click the project and select JBoss Tools > Modules Configuration.

35 JBoss Developer Studio 3.0 Struts Tools Reference Guide 35 Figure 4.2. Choosing Modules Configuration You will see the same screen as above where you will be able to select a module and edit its details. Figure 4.3. Modules Configuration 4.3. Adding New Modules Adding a new module is very simple. First switch to Web Project view. Expand your project to the Configuration folder. Under that folder you should see the current modules. Right click on Configuration and select New > Struts Config.

36 36 Chapter 4. Modules Figure 4.4. Adding New Modules You will see the screen below. You can specify a new module name and also add the new Struts configuration file to web.xml file. Figure 4.5. Adding New Modules

37 JBoss Developer Studio 3.0 Struts Tools Reference Guide 37 Chapter 5. Code Generation JBoss T ools comes with a code generation feature. You can generate stub code for Struts Actions, FormBeans, Forwards and Exceptions. T he code generation that JBoss tooling provides is based on Velocity templates which can be modified for your use. T he templates are located at {JBossStudioHome} > templates > codegeneration. There are a number of ways to invoke code generation. One is simply right-clicking the Struts diagram and selecting Generate Java Code... Figure 5.1. Selecting Generate Java Code On this screen you can select for which elements to generate code. If you select Next you will be able to specify more options for each of the categories you selected. Figure 5.2. Generate - Step 1 Tip:

38 38 Chapter 5. Code Generation Please be careful not to override your existing files. When generation is complete, a result window will appear letting you know how many classes were generated: Figure 5.3. Generation Finished You don't always have to generate code for all elements at once. You can invoke generation for just an individual Struts artifact as well. Right-click an element on the diagram of the Struts configuration file and select Generate Java Code... from the context menu. Figure 5.4. Generation For Individual Struts Artifact The same can be done from within the Tree viewer for the editor of the Struts configuration file.

39 Figure 5.5. Generation in Struts Config Editor JBoss Developer Studio 3.0 Struts Tools Reference Guide 39

40 4 0 Chapter 6. Struts Configuration File Debugger Chapter 6. Struts Configuration File Debugger JBoss Tools come with Struts configuration file debugger. It allows you to set break points on Struts diagram and then simply launch the server in debug mode. Simply right click an Action or a page and select Add Breakpoint. Figure 6.1. Adding Breakpoint

41 JBoss Developer Studio 3.0 Struts Tools Reference Guide 4 1 Chapter 7. Customizable Page Links Recognizer Custom page links allow you to define custom Struts page links that will be recognizable in the Struts application diagram. You can define these links by selecting Window > Preferences from the menu bar and then selecting JBoss Tools > Web > Struts > Customization from the Preferences dialog box. Figure 7.1. Customization Panel

42 4 2 Chapter 8. Struts Project Verification Chapter 8. Struts Project Verification In this section we'll consider one more functionality that JBoss T ools provide for Struts projects, namely adjusting projects verification. T o configure Struts project verification select Window > Preferences from the menu bar, select JBoss Tools > Web > Verification from the Preferences dialog box and then expand the Struts Rules node. Figure 8.1. Struts Rules Suppose you are working in the Source viewer for a Struts configuration file as shown below: Figure 8.2. Struts Configuration File While typing a class name or entering it from the graphical editor, you might make a minor typo (like "sample.greetingaction1" instead of "sample.greetingaction" ). After saving the file, verification checks to make sure everything is correct and finds the error below:

43 JBoss Developer Studio 3.0 Struts Tools Reference Guide 4 3 Figure 8.3. Error Reporting Notice that the Package Explorer View shows a marked folder and a marked file where the error is. You can place the cursor over the line with the error to view a detailed error message: Figure 8.4. Error Message The verification also checks to make sure you have specified the correct JSP page for the forward: Figure 8.5. JSP Page Verification Once you place the cursor over the line, you can see the error message: Figure 8.6. Error Message You can always invoke the verification by switching to the Diagram viewer, right-clicking and selecting Verify from the context menu:

44 4 4 Chapter 8. Struts Project Verification Figure 8.7. Verify Command

45 Chapter 9. Relevant Resources Links Find out necessary information on Struts technology if you don't know enough. JBoss Developer Studio 3.0 Struts Tools Reference Guide 4 5 In summary, this reference should help you to get familiar with those parts of JBoss Tools which are meant for development with Struts technology. If you've carefully gone through the document, you should know now how to create/import Struts project or enable Struts capabilities for an existing web project as well as organize and edit all necessary staff for your Struts application using a set of views and editors provided by JBoss T ools. If you'd like to contribute your feedback is always appreciated. You can leave your questions and suggestions on our Forum. We hope, this guide helped you to get started with the JBoss Struts Tools. Besides, for additional information you are welcome on JBoss forum.

46 4 6 Revision History Revision History Revision July Ruediger Landmann Rebuild for Publican 3.0 Revision 0-0 Fri Nov Isaac Rooskov Initial creation of book by publican Index F feedback - contact information for this manual, We Need Feedback!

JBoss Developer Studio 3.0

JBoss Developer Studio 3.0 JBoss Developer Studio 3.0 JBoss Web Services User Guide 1 JBoss Developer Studio 3.0 JBoss Web Services User Guide Provides information relating to the JBoss Web Services module. Edition 1.0 Denny Xu

More information

JBoss Developer Studio 3.0

JBoss Developer Studio 3.0 JBoss Developer Studio 3.0 ESB Tools Reference Guide 1 JBoss Developer Studio 3.0 ESB Tools Reference Guide Provides information relating to the ESB T ools set. Edition 1.0 Svetlana Mukhina smukhina@exadel.com

More information

Guide to Red Hat Enterprise Linux 6 Software Collections

Guide to Red Hat Enterprise Linux 6 Software Collections Red Hat Enterprise Linux 6 Software Collections Guide A guide to Software Collections for Red Hat Enterprise Linux Petr Kovář Software Collections Guide Draft Red Hat Enterprise Linux 6 Software Collections

More information

Red Hat Enterprise Linux 6 Cluster Suite Overview. Overview of the High Availability Add- On for Red Hat Enterprise Linux 6

Red Hat Enterprise Linux 6 Cluster Suite Overview. Overview of the High Availability Add- On for Red Hat Enterprise Linux 6 Red Hat Enterprise Linux 6 Cluster Suite Overview Overview of the High Availability Add- On for Red Hat Enterprise Linux 6 Cluster Suite Overview Red Hat Enterprise Linux 6 Cluster Suite Overview Overview

More information

JBoss Developer Studio 6.0

JBoss Developer Studio 6.0 JBoss Developer Studio 6.0 OpenShift Tools Reference Guide 1 JBoss Developer Studio 6.0 OpenShift Tools Reference Guide Provides information about the use of the JBoss Developer Studio with the Red Hat

More information

Red Hat Enterprise Virtualization 3.0 User Portal Guide. Accessing and Using Virtual Machines from the User Portal Edition 1

Red Hat Enterprise Virtualization 3.0 User Portal Guide. Accessing and Using Virtual Machines from the User Portal Edition 1 Red Hat Enterprise Virtualization 3.0 User Portal Guide Accessing and Using Virtual Machines from the User Portal Edition 1 Cheryn Tan David Jorm Red Hat Enterprise Virtualization 3.0 User Portal Guide

More information

Fuse ESB Enterprise 7.0 Installation Guide

Fuse ESB Enterprise 7.0 Installation Guide Fuse ESB Enterprise 7.0 Installation Guide Installing and uninstalling Fuse ESB Enterprise 7.0 Edition 1 Red Hat Inc. Fuse ESB Enterprise 7.0 Installation Guide Installing and uninstalling Fuse ESB Enterprise

More information

Red Hat Enterprise Virtualization for Desktops 2.2 User Guide. A guide to accessing and using virtual desktops. Edition 2

Red Hat Enterprise Virtualization for Desktops 2.2 User Guide. A guide to accessing and using virtual desktops. Edition 2 Red Hat Enterprise Virtualization for Desktops 2.2 User Guide A guide to accessing and using virtual desktops. Edition 2 Dani Coulson David Jorm Red Hat Enterprise Virtualization for Desktops 2.2 User

More information

Red Hat JBoss Developer Studio 7.0 User Guide

Red Hat JBoss Developer Studio 7.0 User Guide Red Hat JBoss Developer Studio 7.0 User Guide Information about using the plug-ins comprising JBoss Developer Studio Red Hat Documentation Team Red Hat JBoss Developer Studio 7.0 User Guide Information

More information

JBoss Enterprise SOA Platform 5 ESB Tools Reference Guide. This guide is for developers Edition 5.3.1

JBoss Enterprise SOA Platform 5 ESB Tools Reference Guide. This guide is for developers Edition 5.3.1 JBoss Enterprise SOA Platform 5 ESB Tools Reference Guide This guide is for developers Edition 5.3.1 David Le Sage B Long JBoss Enterprise SOA Platform 5 ESB Tools Reference Guide This guide is for developers

More information

Struts Tools Tutorial. Version: 3.3.0.M5

Struts Tools Tutorial. Version: 3.3.0.M5 Struts Tools Tutorial Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features Struts Tools... 1 1.2. Other relevant resources on the topic... 2 2. Creating a Simple Struts Application... 3 2.1. Starting

More information

JBoss Enterprise SOA Platform 5.2 Rule Flow Component Guide. for Business Rules Developers

JBoss Enterprise SOA Platform 5.2 Rule Flow Component Guide. for Business Rules Developers JBoss Enterprise SOA Platform 5.2 Rule Flow Component Guide for Business Rules Developers Rule Flow Component Guide JBoss Enterprise SOA Platform 5.2 Rule Flow Component Guide for Business Rules Developers

More information

Discovery, Reporting, Capacity and Utilization Edition 1. ManageIQ Documentation Team

Discovery, Reporting, Capacity and Utilization Edition 1. ManageIQ Documentation Team ManageIQ Anand Insight Guide Discovery, Reporting, Capacity and Utilization Edition 1 ManageIQ Documentation Team ManageIQ Anand Insight Guide Discovery, Reporting, Capacity and Utilization Edition 1

More information

JBoss Communications Platform 5.0 SIP Presence Service User Guide

JBoss Communications Platform 5.0 SIP Presence Service User Guide JBoss Communications Platform 5.0 SIP Presence Service User Guide The Guide to the SIP Presence Service Edition 5.0.1 Eduardo Martins Tom Wells Jared Morgan Douglas Silas Ivelin Ivanov JBoss Communications

More information

JBoss Developer Studio 4.1

JBoss Developer Studio 4.1 JBoss Developer Studio 4.1 Smooks Developer Tools Reference Guide 1 JBoss Developer Studio 4.1 Smooks Developer Tools Reference Guide Provides information relating to the Smooks T ools module. Edition

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

JBoss Enterprise Data Services 5 Teiid Designer User Guide. for Developers Edition 5.3.1

JBoss Enterprise Data Services 5 Teiid Designer User Guide. for Developers Edition 5.3.1 JBoss Enterprise Data Services 5 Teiid Designer User Guide for Developers Edition 5.3.1 JBoss Enterprise Data Services 5 Teiid Designer User Guide for Developers Edition 5.3.1 Red Hat Engineering Co ntent

More information

Red Hat Enterprise Linux OpenStack Platform 7 OpenStack Data Processing

Red Hat Enterprise Linux OpenStack Platform 7 OpenStack Data Processing Red Hat Enterprise Linux OpenStack Platform 7 OpenStack Data Processing Manually provisioning and scaling Hadoop clusters in Red Hat OpenStack OpenStack Documentation Team Red Hat Enterprise Linux OpenStack

More information

JBoss Communications Platform 1.2 Platform Installation Guide

JBoss Communications Platform 1.2 Platform Installation Guide JBoss Communications Platform 1.2 Platform Installation Guide The JBoss Communications Platform Installation Guide Edition 1.2.11 Jared Morgan JBoss Communications Platform 1.2 Platform Installation Guide

More information

Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide

Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide For use with Red Hat JBoss middleware products. Red Hat Customer Content Services Red Hat JBoss Core Services Apache

More information

JBoss Enterprise BRMS Platform 5 BRMS Business Process Management Guide

JBoss Enterprise BRMS Platform 5 BRMS Business Process Management Guide JBoss Enterprise BRMS Platform 5 BRMS Business Process Management Guide For JBoss Developers and Rules Authors Edition 5.3.1 Red Hat Content Services JBoss Enterprise BRMS Platform 5 BRMS Business Process

More information

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 User's Guide Manual BlueCielo ECM Solutions bluecieloecm.com December 09 2014 LEGAL NOTICE 2014 BlueCielo ECM Solutions B. V. Polarisavenue 1 2132 JH Hoofddorp

More information

Fedora 20 Networking Guide

Fedora 20 Networking Guide Fedora 20 Networking Guide Configuration and Administration of networking for Fedora 20 Stephen Wadeley Networking Guide Draft Fedora 20 Networking Guide Configuration and Administration of networking

More information

Red Hat JBoss Developer Studio 4.1 Smooks Developer Tools Reference Guide

Red Hat JBoss Developer Studio 4.1 Smooks Developer Tools Reference Guide Red Hat JBoss Developer Studio 4.1 Smooks Developer Tools Reference Guide Provides information relating to the Smooks Tools module. Edition 4.1.0 Xue(Dart) Peng Red Hat JBoss Developer Studio 4.1 Smooks

More information

For Introduction to Java Programming, 5E By Y. Daniel Liang

For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,

More information

Fedora 22 Networking Guide

Fedora 22 Networking Guide Fedora 22 Networking Guide Configuration and Administration of Networking for Fedora 22 Stephen Wadeley Networking Guide Draft Fedora 22 Networking Guide Configuration and Administration of Networking

More information

Red Hat Subscription Management All Subscription Docs Quick Registration for RHEL

Red Hat Subscription Management All Subscription Docs Quick Registration for RHEL Red Hat Subscription Management All Subscription Docs Quick Registration for RHEL quickly register and subscribe Red Hat Enterprise Linux systems Edition 4 John Ha Deon Ballard Red Hat Subscription Management

More information

Red Hat Developer Toolset 1.1

Red Hat Developer Toolset 1.1 Red Hat Developer Toolset 1.x User Guide 1 Red Hat Developer Toolset 1.1 User Guide Installing and Using Red Hat Developer T oolset Edition 1 Jaromír Hradílek Red Hat Engineering Content Services jhradilek@redhat.com

More information

Red Hat Enterprise Linux 6 Logical Volume Manager Administration. LVM Administrator Guide

Red Hat Enterprise Linux 6 Logical Volume Manager Administration. LVM Administrator Guide Red Hat Enterprise Linux 6 Logical Volume Manager Administration LVM Administrator Guide Logical Volume Manager Administration Red Hat Enterprise Linux 6 Logical Volume Manager Administration LVM Administrator

More information

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

Red Hat Directory Server 8.2 Using the Directory Server Console

Red Hat Directory Server 8.2 Using the Directory Server Console Red Hat Directory Server 8.2 Using the Directory Server Console Managing users and access within the Red Hat Directory Server 8.2 console Edition 8.2.1 Landmann Red Hat Directory Server 8.2 Using the Directory

More information

Counter-Strike Game Server Management Module

Counter-Strike Game Server Management Module SWsoft, Inc. Counter-Strike Game Server Management Module Administrator's Guide ISBN: N/A SWsoft, Inc. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703) 815 5670 Fax: +1 (703) 815

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc. WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software

More information

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies: Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,

More information

Cloud Tools Reference Guide. Version: 3.2.1.GA

Cloud Tools Reference Guide. Version: 3.2.1.GA Cloud Tools Reference Guide Version: 3.2.1.GA 1. Tasks... 1 1.1. Connecting to a Deltacloud server... 1 1.2. Add and manage server keys... 3 1.3. Using the Deltacloud perspective... 4 1.3.1. The Cloud

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

More information

Parallels Containers for Windows 6.0

Parallels Containers for Windows 6.0 Parallels Containers for Windows 6.0 Upgrade Guide June 11, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen

More information

SWsoft, Inc. Plesk File Server. Administrator's Guide. Plesk 7.5 Reloaded

SWsoft, Inc. Plesk File Server. Administrator's Guide. Plesk 7.5 Reloaded SWsoft, Inc. Plesk File Server Administrator's Guide Plesk 7.5 Reloaded (c) 1999-2005 ISBN: N/A SWsoft Inc 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Tel: +1 (703) 815 5670 Fax: +1 (703)

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.)

Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.) Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.) In this project, you will learn the web publishing skills you need to: Plan a website Define a

More information

Red Hat Enterprise Virtualization 3.2 Administration Guide

Red Hat Enterprise Virtualization 3.2 Administration Guide Red Hat Enterprise Virtualization 3.2 Administration Guide Administrating Red Hat Enterprise Virtualization Environments. Edition 1 Jodi Biddle Andrew Burden Zac Dover Steve Gordon Tim Hildred Dan Macpherson

More information

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0 Parallels Panel Parallels Small Business Panel 10.2: User's Guide Revision 1.0 Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax:

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. 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 software, please review the readme files,

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01927-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Red Hat Subscription Asset Manager 1.2 Installation Guide. Installing and Using Red Hat Subscription Asset Manager Edition 3

Red Hat Subscription Asset Manager 1.2 Installation Guide. Installing and Using Red Hat Subscription Asset Manager Edition 3 Red Hat Subscription Asset Manager 1.2 Installation Guide Installing and Using Red Hat Subscription Asset Manager Edition 3 Sarah Chua Lana Brindley Red Hat Subscription Asset Manager 1.2 Installation

More information

TIBCO Hawk SNMP Adapter Installation

TIBCO Hawk SNMP Adapter Installation TIBCO Hawk SNMP Adapter Installation Software Release 4.9.0 November 2012 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR

More information

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Outlook Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Composing & Sending Email Reading & Sending Mail Messages Set message options Organizing Items

More information

Advantage Joe. Deployment Guide for WebLogic v8.1 Application Server

Advantage Joe. Deployment Guide for WebLogic v8.1 Application Server Advantage Joe Deployment Guide for WebLogic v8.1 Application Server This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational

More information

Before you can use the Duke Ambient environment to start working on your projects or

Before you can use the Duke Ambient environment to start working on your projects or Using Ambient by Duke Curious 2004 preparing the environment Before you can use the Duke Ambient environment to start working on your projects or labs, you need to make sure that all configuration settings

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

Colligo Contributor File Manager 4.6. User Guide

Colligo Contributor File Manager 4.6. User Guide Colligo Contributor File Manager 4.6 User Guide Contents Colligo Contributor File Manager Introduction... 2 Benefits... 2 Features... 2 Platforms Supported... 2 Installing and Activating Contributor File

More information

Virtual CD v10. Network Management Server Manual. H+H Software GmbH

Virtual CD v10. Network Management Server Manual. H+H Software GmbH Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Talend Open Studio for MDM. Getting Started Guide 6.0.0

Talend Open Studio for MDM. Getting Started Guide 6.0.0 Talend Open Studio for MDM Getting Started Guide 6.0.0 Talend Open Studio for MDM Adapted for v6.0.0. Supersedes previous releases. Publication date: July 2, 2015 Copyleft This documentation is provided

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1 Hands-On Lab Web Development in Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING HTML CODE SNIPPETS IN VISUAL STUDIO 2010... 6 Task 1 Adding

More information

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01927-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

HOW TO USE THIS GUIDE

HOW TO USE THIS GUIDE HOW TO USE THIS GUIDE This guide provides step-by-step instructions for each exercise. Anything that you are supposed to type or select is noted with various types and colors. WHEN YOU SEE THIS Click Help

More information

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA Smooks Dev Tools Reference Guide Version: 1.1.0.GA Smooks Dev Tools Reference Guide 1. Introduction... 1 1.1. Key Features of Smooks Tools... 1 1.2. What is Smooks?... 1 1.3. What is Smooks Tools?... 2

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development By Kenji Uchida Software Engineer IBM Corporation Level: Intermediate

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

TIBCO Fulfillment Provisioning Session Layer for FTP Installation

TIBCO Fulfillment Provisioning Session Layer for FTP Installation TIBCO Fulfillment Provisioning Session Layer for FTP Installation Software Release 3.8.1 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

JBoss Enterprise Application Platform 4.3 Common Criteria Configuration Guide

JBoss Enterprise Application Platform 4.3 Common Criteria Configuration Guide JBoss Enterprise Application Platform 4.3 Common Criteria Configuration Guide JBoss Enterprise Application Platform Edition 4.3.3 Red Hat Darrin Mison Isaac Rooskov Joshua Wulf JBoss Enterprise Application

More information

ovirt 3.0 Installation Guide

ovirt 3.0 Installation Guide ovirt 3.0 Installation Guide Installing and Configuring an ovirt Environment Stephen Gordon Tim Hildred Installation Guide ovirt 3.0 Installation Guide Installing and Configuring an ovirt Environment Edition

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

JBoss Enterprise Application Platform 5 HTTP Connectors Load Balancing Guide

JBoss Enterprise Application Platform 5 HTTP Connectors Load Balancing Guide JBoss Enterprise Application Platform 5 HTTP Connectors Load Balancing Guide HTTP load-balancing for the JBoss Enterprise Application Platform Jared Morgan Joshua Wulf Laura Bailey Samuel Mendenhall HTTP

More information

Plesk 8.1 for Windows Counter-Strike Game Server

Plesk 8.1 for Windows Counter-Strike Game Server SWsoft, Inc. Plesk 8.1 for Windows Counter-Strike Game Server Administrator Guide (revision 2.2) (c) 1999-2006 ISBN: N/A SWsoft, Inc. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1

More information

Tutorial 5: Developing Java applications

Tutorial 5: Developing Java applications Tutorial 5: Developing Java applications p. 1 Tutorial 5: Developing Java applications Georgios Gousios gousiosg@aueb.gr Department of Management Science and Technology Athens University of Economics and

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

JBoss Communications Platform 5.1 SIP Load Balancer User Guide

JBoss Communications Platform 5.1 SIP Load Balancer User Guide JBoss Communications Platform 5.1 SIP Load Balancer User Guide The Guide to the JBoss Communications Platform SIP Load Balancer Edition 5.1.0 Jean Deruelle Vladimir Ralev Ivelin Ivanov JBoss Communications

More information

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02 Tutorial: Mobile Business Object Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01208-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

Rational Developer for IBM i (RDI) Distance Learning hands-on Labs IBM Rational Developer for i. Maintain an ILE RPG application using

Rational Developer for IBM i (RDI) Distance Learning hands-on Labs IBM Rational Developer for i. Maintain an ILE RPG application using IBM Software Rational Developer for IBM i (RDI) Distance Learning hands-on Labs IBM Rational Developer for i Maintain an ILE RPG application using Remote System Explorer Debug a CL/RPG program member Lab

More information

Postgres Enterprise Manager Installation Guide

Postgres Enterprise Manager Installation Guide Postgres Enterprise Manager Installation Guide January 22, 2016 Postgres Enterprise Manager Installation Guide, Version 6.0.0 by EnterpriseDB Corporation Copyright 2013-2016 EnterpriseDB Corporation. All

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

Desktop, Web and Mobile Testing Tutorials

Desktop, Web and Mobile Testing Tutorials Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

UNICORN 6.4. Administration and Technical Manual

UNICORN 6.4. Administration and Technical Manual UNICORN 6.4 Administration and Technical Manual Page intentionally left blank Table of Contents Table of Contents 1 Introduction... 1.1 Administrator functions overview... 1.2 Network terms and concepts...

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. 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 software, please review the readme files,

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

Eclipse installation, configuration and operation

Eclipse installation, configuration and operation Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for

More information