Java The Installer Cannot Proceed With The Current Internet Connection Settings Hatas

Posted on
Java The Installer Cannot Proceed With The Current Internet Connection Settings Hatas 3,0/5 7869 reviews

Select the workspace WORKSPACE_START and proceed with ok. The perspectives Scout and Java are available containing the Scout project. Service registry of the server and a service proxy is created and registered on the client side. Properties View and implement the execaction such that the current value of the.

Hi,

I am trying to install Java on a machine which does not have internet connection.

I get the following message when trying to install the file 'jxpiinstall'.

As per the help section on site http://www.java.com/en/download/help/connect_proxy.xml

there are two solutions provided(mentioned below). I tried both the options but still I could not I see the same error message popping up when trying to install Java.

Can somebody guide me on this ?

The Offline installation program contains all the files you need for installation.

  • Download and install the offline installer package.
  • When prompted, please choose Save in the download dialog box, and save the download package in a convenient place (e.g. save on the desktop).
  • Double click on the downloaded installation file to start the installation process.
  • From the Start button, click Settings > Control Panel
  • In the Control Panel, double click on the Internet Options Control Panel
  • Click the LAN Settings button
  • Under the Proxy server section, check Use a proxy server for your LAN
  • Enter the name of your proxy server in the Address field and the port number in the Port field.
  • Click on OK to accept the change.
WORD PNG TXT JPG
Start display at page:
Download 'Implement a Multi-Frontend Chat Application based on Eclipse Scout'
  • Tabitha Amelia Greer
  • 1 years ago
  • Views:

Transcription

1 BAHBAH TUTORIAL Implement a Multi-Frontend Chat Application based on Eclipse Scout Authors: Matthias Zimmermann, Matthias Villiger, Judith Gull

2 TABLE OF CONTENTS 1 PREREQUISITES Starting the Bahbah Package Compiling and Running the Initial Application CREATING THE CHAT OUTLINE AND PAGES CHAT OUTLINE USER NODE PAGE Adding a Node Page to the Outline Setting the Tree Node Text Configuring the Page ADDING ONLINE USERS TO THE CHAT OUTLINE Creating an Outline Service for Connected Buddies Implementing a Service Operation Creating and Configuring a NodePage for the Connected Users Adding an Instance of the NodePage for Every Online User Dynamically Adding and Removing Buddies upon Connect and Disconnect CHAT FORM CREATING A NEW FORM Adding Fields to the Form Opening the Chat Form SENDING AND RECEIVING MESSAGES Sending a Message Appending a Message to the History field Handling Received Messages BUDDY ICON & ROW DECORATION EXPLANATION OF PREPARED ELEMENTS CHANGING THE BUDDY ICON DISPLAYING BUDDY ICONS IN PAGES & FORMS DEPLOYING THE APPLICATION TO TOMCAT BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 2 von 26

3 1 PREREQUISITES In order to do this tutorial you need - The Bahbah package delivered with this tutorial depending on your operating system: o Bahbah_eclipse_win32.exe (for Windows) o BahBah_eclipse_macosx.zip o Bahbah_eclipse_linux_32.tar.gz (for Linux 32 bit) o Bahbah_eclipse_linux_64.tar.gz (for Linux 64 bit) - JDK (1.6 or later) for macosx and Linux. In the Windows package, a JDK is included in the Bahbah package. The Bahbah package contains - Eclipse ( - Subversive SVN ( - Scout SDK (Juno) ( - TARGET_SCOUT39: (some scout plugins that will be delivered with Scout for mobile support) - TARGET_RAP: (Version 1.5, see - WORKSPACE_FINISHED: A workspace with the finished Bahbah application. - WORKSPACE_START: The initial workspace for this tutorial - apache-tomcat zip (see Starting the Bahbah Package Extract the package to a folder (e.g. C:devbahbah_eclipse for windows) and start the eclipse executable. Select the workspace WORKSPACE_START and proceed with ok. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 3 von 26

4 Eclipse opens with the initial Bahbah workspace. The perspectives Scout and Java are available containing the Scout project org.eclipse.scout.bahbah Compiling and Running the Initial Application To compile Bahbah you need to set the target platform to ScoutRAP.target: Open the resource editor CTRL+SHIFT+R and select the file ScoutRap.target. Click on Set as Target Platform! BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 4 von 26

5 This triggers an automatic recompilation of the workspace. After the compilation is finished there should be no compilation errors. Now you are ready to start Bahbah: First start the server using the run configuration bahbah-server-dev.product: You can see in the console that the server is running:!entry org.eclipse.scout.bahbah.server :37:11.073!MESSAGE org.eclipse.scout.bahbah.server.serverapplication.start(serverapplication.java:56) bahbah server initialized Now you can start one or more clients. The available products are: - bahbah-swing-client-dev.product (Rich Client SWING) - bahbah-swt-client-dev.product (Rich Client SWT) - bahbah-rap-dev.product (Web Client) Access in a browser with the URL o o (Mobile Version) o (Tablet Version) Login with Username: admin Password: admin Once you logged in you can create and delete users in the administration view. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 5 von 26

6 2 CREATING THE CHAT OUTLINE AND PAGES In this chapter we will extend the GUI of the Bahbah application with the help of the Scout SDK. 2.1 CHAT OUTLINE The first goal is to create a new chat outline in the GUI for the chat conversations: Add a new Outline to the desktop by right-clicking on the Node org.eclipse.scout.bahbah/client/desktop/outlines and selecting New Outline Enter Chat as Name and finish the wizard. Now you can open the new class ChatOutline generated by the Scout SDK, which represents the client model for the chat outline by double-clicking the new ChatOutline in the Scout Explorer. Scout SDK also added a new tool button in to the Desktop. Double-click on Desktop to open the corresponding class. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 6 von 26

7 The order of the Buttons is given by Annotation. By default, new Buttons are added at the end. To display the ChatOutlineViewButton as the first button just change its order annotation to something smaller than the one of AdministrationOutlineViewButton And because we want to have the just created Chat outline active when starting the application, we also change the order in which the outlines are added to the Desktop: In the Desktop class find the method getconfiguredoutlines and change the order in which the outlines are added so that the ChatOutline comes first: ArrayList<Class> outlines = new ArrayList<Class>(); outlines.add(chatoutline.class); outlines.add(administrationoutline.class); return outlines.toarray(new Class[outlines.size()]); At this point you might want to restart the clients (SWT, SWING and RAP Version) and see, if everything looks as expected. Note that all the changes you have done so far are in the client model in the plugin org.eclipse.scout.bahbah.client. You do not have to write UI specific code. 2.2 USER NODE PAGE The next step is to add some data to the chat outline. To get an overview of the currently connected users we organize the chat outline tree in the following way: The top-level node represents the currently logged-in user while all the other connected users are displayed as child nodes. Let s start with the top-level node. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 7 von 26

8 2.2.1 Adding a Node Page to the Outline We can easily add this node by adding a new child page to the ChatOutline: Open the Scout Explorer and right-click on the subfolder Child Pages of ChatOutline and choose New Page. Choose AbstractPageWithNodes as template for your page and proceed with Next. Type User in the Name field and Finish the Wizard Setting the Tree Node Text Remember that we want the text of the tree node to represent the logged-in user. To set this text we have to edit the UserNodePage class: Open the UserNodePage class by double-clicking the new node in the Scout Explorer. If the new page is not visible already, select the Child Pages node below ChatOutline in the Scout Explorer and press F5. The text of the tree node is given by the title property of the page, which can be set by overriding the method getconfiguredtitle. Currently the title property is set to the translated text User. Update the getconfiguredtitle method to return the username stored in the client protected String getconfiguredtitle() { return ClientSession.get().getUserId(); BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 8 von 26

9 2.2.3 Configuring the Page We do not have any data to be displayed for this node. Therefore we set the table invisible for this page: Click on the node UserNodePage in the Scout Explorer, open Advanced Properties in the Scout Object Properties View and uncheck the property Table Visible. Furthermore we would like to have this page expanded by default. Therefore we also tick the checkbox Expanded: 2.3 ADDING ONLINE USERS TO THE CHAT OUTLINE In this section we add all the currently connected users to the chat outline Creating an Outline Service for Connected Buddies First we prepare a service to retrieve all connected users, except the logged-in user, i.e. the buddies: Expand the server node in the Scout Explorer and create a new outline service. Enter a class name and click next. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 9 von 26

10 The following screen shows an overview of the service, its interface and registration. In the example below the StandardOutlineService class contains the actual implementation of the service. The interface IStandardOutlineService is located in the shared plugin and therefore visible in the client and server plugin. Additionally, the service is registered in the OSGi service registry of the server and a service proxy is created and registered on the client side. Press Finish to create the service Implementing a Service Operation In order for the service to do something useful we need to add a service operation. Select New Service Operation in the Scout Explorer and enter the name and return type of the operation as shown in the screenshot: The Scout SDK simply adds a new public method to the service class and interface. Open the service class to implement the method. In the initial workspace there already exists a service operation to get all online users. (See UserProcessService). We only need to call this operation and remove the logged-in username. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 10 von 26

11 The class org.eclipse.scout.service.services contains useful convenience methods to get services. E.g. IUserProcessService svc = SERVICES.getService(IUserProcessService.class); finds the service with the interface IUserProcessService in the registry. //get the service IUserProcessService svc = SERVICES.getService(IUserProcessService.class); //find all online users Set<String> allonlineusers = svc.getusersonline(); On the server, the logged in user is stored in the server session: String user = ServerSession.get().getUserId(); Putting it all together we end up with something like public String[] getonlineusers() throws ProcessingException { Set<String> allusers = SERVICES.getService(IUserProcessService.class).getUsersOnline(); Set<String> users = new HashSet<String>(allUsers); // remove myself users.remove(serversession.get().getuserid()); return users.toarray(new String[users.size()]); Creating and Configuring a NodePage for the Connected Users Now we are ready to update the client. We create another NodePage for the buddies as a child page of the UserNodePage: Open the Scout Explorer and right-click on the subfolder Child Pages of UserNodePage and choose New Page. Select AbstractPageWithNodes as template for your page and proceed with Next. Type Buddy in the Name field and Finish the Wizard. We add a property to the BuddyNodePage to later set the name. Right-click on Variables of the BuddyNodePage and select New Property Bean and create a property with name Name and Bean type String. Change the method getconfiguredtitle to return the name protected String getconfiguredtitle() { return getname(); Check Leaf in the Scout Object Properties View for the BuddyNodePage to indicate that the node never contains any children and uncheck Table Visible, because no table will be needed for this page Adding an Instance of the NodePage for Every Online User In the last section we added a single BuddyNodePage as a child page of the UserNodePage. However, instead of only one BuddyNodePage we would like to have one instance per buddy. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 11 von 26

12 The child pages are added to the UserNodePage in the method execcreatechildpages. Open the UserNodePage class to edit this method. To get the buddies we can call the service operation created in chapter Remember that a service proxy was registered on the client when we created the service. We can again use the SERVICES class to get the registered service proxy and receive the data from the server by calling the service operation: String[] buddies = SERVICES.getService(IStandardOutlineService.class).getOnlineUsers(); Now it s your turn to implement execcreatechildpages(collection<ipage> pagelist), such that all buddies are added to the pagelist. Do not forget to set the name of the page. Start multiple clients and verify that the connected users are now displayed in the chat outline Dynamically Adding and Removing Buddies upon Connect and Disconnect So far the connected buddies are only evaluated once when the page is instantiated. In this section we add the functionality to update the outline dynamically. We implement this functionality using client notifications: Whenever a user connects or disconnects the server sends a notification event to all clients (see NotificationProcessService). When the client receives such a notification it refreshes the outline page. The method updatebuddypages below handles the refresh of the outline and adds or removes nodes, if needed. Copy the following code snippet to the UserNodePage: public void updatebuddypages() throws ProcessingException { HashSet<String> newbuddy = new HashSet<String>(); ArrayList<String> updatedlist = new ArrayList<String>(); String[] buddies = SERVICES.getService(IStandardOutlineService.class).getOnlineUsers(); for (String buddy : buddies) { newbuddy.add(buddy); // keep track of known buddies and remove buddies that are no longer here for (IPage page : getchildpages()) { BuddyNodePage buddypage = (BuddyNodePage) page; if (newbuddy.contains(buddypage.getname())) { updatedlist.add(buddypage.getname()); else { gettree().removechildnode(this, buddypage); BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 12 von 26

13 // add new buddies for (String buddy : newbuddy) { if (!updatedlist.contains(buddy)) { BuddyNodePage buddypage = new BuddyNodePage(); buddypage.setname(buddy); gettree().addchildnode(this, buddypage); The client service BahBahNotificationConsumerService handles the client notification events. Update the methods handlerefreshbuddies() and getusernodepagefromdesktop() as shown below. private void handlerefreshbuddies() { UserNodePage userpage = getusernodepagefromdesktop(); if (userpage!= null) { try { logger.info('refreshing buddies on client'); userpage.updatebuddypages(); catch (Throwable t) { logger.error('handling of remote message failed.', t); public UserNodePage getusernodepagefromdesktop() { Desktop d = Desktop.get(); if (d!= null) { return d.getusernodepage(); return null; Finally add getusernodepage() and getchatoutline() to the Desktop class: public UserNodePage getusernodepage() { IPage invisiblerootpage = getchatoutline().getrootpage(); if (invisiblerootpage!= null && invisiblerootpage.getchildnodecount() > 0) { IPage p = invisiblerootpage.getchildpage(0); if (p instanceof UserNodePage) { return (UserNodePage) p; return null; private IOutline getchatoutline() { for (IOutline o : getavailableoutlines()) { if (o.getclass().equals(chatoutline.class)) { return o; return null; BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 13 von 26

14 3 CHAT FORM The next goal is to create a form to enter the chat message and display the history of the conversation. 3.1 CREATING A NEW FORM Select New Form in the Scout Explorer and enter Chat as name. You can uncheck the check box Create form Id, because the default form id property is not needed. Click Next to proceed. Unlike most common forms the chat form is not used to enter data to be persisted on the backend or display stored data. It is only used to display messages received by client notifications and send messages to other users. We therefore do not want to create the default process services and handlers. Uncheck everything except New Handler and finish the wizard. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 14 von 26

15 In this form we will need the buddy name and user name to send and display messages: Create the bean properties username and buddyname (both of type String) for the ChatForm using the menu New Property Bean in the Scout Explorer Adding Fields to the Form Now let s add a field to enter the message to the form: Select New Form Field on Main Box, choose the type StringField and click next. Enter the class name MessageField (leave the Name empty) and Finish the Wizard. No label is needed for the message field. Click on the new node MessageField in the Scout Explorer View and uncheck the property Label Visible in the section Advanced Properties. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 15 von 26

16 We add another field for the history of the conversation: Select New FormField on MainBox and create a field with type TableField and class name HistoryField. Uncheck the property Label Visible for the HistoryField as well. To add columns to the history table expand the node HistoryField in the Scout Explorer and select New column Select Integer Column as template and Type as column name. To add additional columns you can select Create one more column as the next step to the column wizard. Add the following columns to the table: Name Type Remarks Type Integer Sender String Receiver String Message String Time Time To find this type, tick the box as shown below. Check Show all Templates to add the time column. We set the some more properties for the columns in the Scout Object Properties View: - Type Column: Uncheck displayable, because we only use this columns to hold data and do not actually display it BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 16 von 26

17 - Time Column: We want to sort the history in descending order, such that the last message appears on top: Uncheck Sort Ascending and set the Sort Index to 0 (both in the Advanced Properties section). - Time Column: Set the Format to HH:mm:ss - Message Column: Tick Text Wrap - Table: Tick the property Multiline Text Finally, we change the layout of the form fields. By default the fields are organized in a grid with two columns. We change the Grid Column Count to 1 on the MainBox Opening the Chat Form The chat form should be displayed on a click on the buddy node, i.e. when the BuddyNodePage is activated. Open the BuddyNodePage in the ScoutExplorer and add Exec Page Activated. A form can be added to a page by calling setdetailform. FormHandlers are used to start a form in different ways, e.g. for creating new data vs. for editing existing data. The chat form has only one handler (NewHandler), which is started by calling startnew(). BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 17 von 26

18 The following code snippet contains a basic implementation of execpageactivated. public ChatForm getchatform() throws ProcessingException { if (m_form null) { m_form = new ChatForm(); m_form.setautoaddremoveondesktop(false); m_form.setusername(clientsession.get().getuserid()); m_form.setbuddyname(getname()); m_form.startnew(); return protected void execpageactivated() throws ProcessingException { super.execpageactivated(); // after buddy page activation the buddy's chat history is displayed on the right side ChatForm chatform = getchatform(); setdetailform(chatform); 3.2 SENDING AND RECEIVING MESSAGES In this section we cover the actual sending and receiving of the chat messages Sending a Message In order to send a message, a user types something in the message field and hits enter. To implement this functionality, we add a key stroke action to the form: Open the ChatForm in the Scout Explorer and right-click on Keystrokes below the MainBox. Select New Key stroke and enter SendMessageKeyStroke for the Class Name and enter for the Key Stroke. Select the SendMessageKeyStroke in the Scout Explorer and add the operation Exec Action in the Scout Objects Properties View and implement the execaction such that the current value of the message field is public class SendMessageKeyStroke extends AbstractKeyStroke protected String getconfiguredkeystroke() { BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 18 von 26

19 return protected void execaction() throws ProcessingException { // TODO send the current value of the message field to the server Hints: - Call sendmessage in INotificationProcessService to send the message - getmessagefield().getvalue(); //gets the current value of the message field Appending a Message to the History field We create a new method to the history field to add a message to the table: public class HistoryField extends AbstractTableField<HistoryField.Table> { private final Integer MESSAGE_TYPE_LOCAL = 1; private final Integer MESSAGE_TYPE_REMOTE = 2; public void addmessage(boolean local, String sender, String receiver, Date date, String message) throws ProcessingException { gettable().addrowbyarray(new Object[]{(local? MESSAGE_TYPE_LOCAL : MESSAGE_TYPE_REMOTE), sender, receiver, message, date); Now you can easily change the execaction Method in SendMessageKeyStroke such that the message is added to the history field. Restart the client to verify that the message is added to the history field Handling Received Messages The sending and receiving of messages can be implemented using client notifications. The server sends a client notification containing the message to the receiving client. The client then displays the message. Note that in contrast to the refreshing of the RefreshBuddiesNotification a SingleUserFilter is applied, such that only the receiving user needs to handle the message. (see NotificationProcessService.sendMessage). Add the following code snippet to the UserNodePage to find the chat form by buddy name: public ChatForm getchatform(string buddy) throws ProcessingException { if (StringUtility.isNullOrEmpty(buddy)) { return null; for (ITreeNode node : getchildnodes()) { BuddyNodePage buddynode = (BuddyNodePage) node; if (buddynode.getname().equals(buddy)) { return buddynode.getchatform(); return null; BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 19 von 26

20 Open BahBahNotificationConsumerService and implement handlemessage to display received messages in the correct chat form: private void handlemessage(messagenotification notification) { UserNodePage userpage = getusernodepagefromdesktop(); String buddy = notification.getsendername(); if (userpage!= null) { try { ChatForm form = userpage.getchatform(buddy); if (form!= null) { form.gethistoryfield().addmessage(false, buddy, form.getusername(), new Date(), notification.getmessage()); catch (Throwable t) { logger.error('handling of remote message failed.', t); BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 20 von 26

21 4 BUDDY ICON & ROW DECORATION This chapter describes how to extend the Chat outline so that each user can change its own buddy icon. Furthermore we will improve the outline and chat history table to show these buddy icons. We will add some colors as well to better distinguish the two persons involved in a conversation. 4.1 EXPLANATION OF PREPARED ELEMENTS Each user must be able to change its buddy icon. Therefore we need a possibility to store icons per user. The Derby database included in the workspace is already prepared for that. Press Ctrl+Shift+T to open the Open Type dialog. In the search field enter dbsetup and open the type by pressing Ok. In the attribute list of the create-table-statement you can see that there exists a BLOB (binary large object) type column named icon. So the database is ready to store the buddy icon. The workspace also contains a form capable of browsing locally to select an image file. You can find the form in the Scout Explorer: client/forms/iconchooserform. When saved, this form calls the IconProcessService which scales down the image and stores it in the BLOB column in the database. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 21 von 26

22 4.2 CHANGING THE BUDDY ICON So that we can make use of these prepared pieces we must add them to our chat application. In this tutorial we create a new context menu on the top-level node of the chat buddies tree on the left hand side of the application. To do so we navigate to the client/desktop/outlines/chatoutline/child Pages/UserNodePage/Menus node in the Scout Explorer and right-click on it. From the context we choose the entry New Menu Fill the dialog as shown in the screenshot: Press finish to create the menu entry. Below the Menus node in the Scout Explorer the new menu is shown. Select it and navigate to the Scout Object Properties view below. There remove the configuration for Single Selection Action and Empty Space Action by clicking on the red minus icon right to the properties. Below the Operations Section in the Scout Object Properties view press the green plus icon next to Exec Prepare Action. When the operation is created, it is displayed as a hyperlink. By clicking on it we will jump to the just created operation in the Java code. There replace the TODO comment with the following code snippet: setvisible(useragentutility.isdesktopdevice() && ACCESS.check(new UpdateIconPermission())); This hides the menu entry if the user has no permissions to update icons or if we are running on a mobile or tablet client. Now we have already added the change icon feature to our application. By activating the new context menu in the buddies tree a user can now update its icon. But because Scout caches icons for performance reasons, we will only see the new icon after we have restarted the client application. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 22 von 26

23 4.3 DISPLAYING BUDDY ICONS IN PAGES & FORMS As every user can now update its icon we would also like to show these icons in the buddies tree and the chat history table. To understand how this works, we will have a look at how icons are loaded in Scout. Icons always have a unique name. If an icon with a certain name should be shown, Scout calls an IconProviderService. This service must then provide the necessary data for the requested icon name. The initial workspace already contains an IconProviderService that can load icons from our Derby database. The default Scout implementation of that service loads icons from plugin resource folders. But because we would like to do both (load buddy icons from the database and load all other application icons from the plugin resources) we need to distinguish icon names that belong to a buddy from all other icons. In this tutorial this is accomplished by a special prefix that is added to all buddy icons: If our IconProviderService gets a request for an icon with that prefix, it will return the icon stored in the database. Otherwise it will just delegate to the default implementation of Scout. This means that at everywhere we would like to show buddy icons we must remember to add this prefix! Now let s start showing the icons: Open the client/all Pages/Buddy Node Page. In the Java editor add the following code inside the protected String getconfigurediconid() { return BuddyIconProviderService.BUDDY_ICON_PREFIX + getname(); Now open client/all Pages/UserNodePage and add the following protected String getconfigurediconid() { return BuddyIconProviderService.BUDDY_ICON_PREFIX + ClientSession.get().getUserId(); Finally we navigate to client/forms/chatform/mainbox/historyfield/table. In the Advanced Operations section of the Scout Object Properties view add the Exec Decorate Cell operation and jump to the code by clicking on the hyperlink after the creation. Inside the method add the following code: // text color row.setforegroundcolor('000000'); // set icon id of the sender of the message (user icons have a specific prefix) row.seticonid(buddyiconproviderservice.buddy_icon_prefix + getsendercolumn().getvalue(row)); // set font style and background color depending whether the message is from myself or not boolean ismessagefromme = MESSAGE_TYPE_LOCAL.equals(getTypeColumn().getValue(row)); if (!ismessagefromme) { BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 23 von 26

24 view.setfont(fontspec.parse('bold')); row.setbackgroundcolor('ddebf4'); Now we can start the application and change our icon. Afterwards a second client can be started (choose a different user name). The new icon is then shown in the buddies tree on the left hand side and inside the chat window. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 24 von 26

25 5 DEPLOYING THE APPLICATION TO TOMCAT In this chapter we will deploy the created application to an Apache Tomcat servlet container. For this we will export it to two.war files: 1. The first containing the BahBah Server and a downloadable rich client. 2. The second containing the RAP UI used for browser, mobile & tablet access. First navigate to the org.eclipse.scout.bahbah project node in the Scout Explorer and select Export Scout Project. In the dialog specify a target directory. In this folder the exported.war files will be saved. All other settings can be kept at its default as shown in the example. Press Next and verify that the War File for the BahBah server is named bahbah.war. Press Next again. On this wizard page you can specify which rich client should be available to download when navigating to the BahBah web page. From the Client Product to Include choose one of the products marked with (production). You can choose the SWT or Swing client. Keep the default settings for Client Download Location and press Next one last time. In the last wizard page ensure that the WAR File is named bahbah_web.war and press Finish. The selected products are now exported and packaged into two.war files that will be stored at the target directory specified in the first step. On the USB sticks provided you can also find a Tomcat 6 servlet container. Copy it to your hard drive and start the server using <Tomcat Root>/bin/startup.bat or <Tomcat Root>/bin/startup.sh. Open a BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 25 von 26

26 web browser and navigate to the following page: Enter admin for username and password. On the manager web application scroll down to the Select WAR file to upload field and press the Browse button. Navigate to target directory specified in the first step of the Scout Project Export wizard and select the bahbah.war file. Press Deploy. Repeat this step also for the bahbah_web.war file exported at the same location. Then navigate to the following URL: The BahBah Server is now running! From the web page you can download the selected rich client to start chatting or you can now also use the web version at This is also the URL to use for the mobile and tablet access. BSI Business Systems Integration AG Bahbah Tutorial Version 1.0 Seite 26 von 26

TestingofScout Application. Ludwigsburg,

TestingofScout Application Ludwigsburg, 27.10.2014 The Tools approach The Testing Theory approach Unit testing White box testing Black box testing Integration testing Functional testing System testing

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup 'The journey of a thousand miles begins with one step.' - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Mobile Login Extension User Manual

Extension User Manual Magento provides secured and convenient login to Magento stores through mobile number along with OTP. Table of Content 1. Extension Installation Guide 2. API Configuration 3. General

More information

Integrate HEAT Software with Bomgar Remote Support

Integrate HEAT Software with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Contents. Emma User Guide

Emma User Guide Emma User Guide i Contents Getting Started with Emma.. 2 Prerequisites.. 2 Installation.. 4 Installing Emma.. 4 Uninstalling Emma.. 4 Start and registration.. 4 Starting Emma.. 4

More information

Nova Bonita Workflow. Quick Start Guide. Nova BONITA WORKFLOW

Nova Bonita Workflow Quick Start Guide Nova BONITA WORKFLOW Nova Bonita Workflow Quick Start Guide Nova Bonita (aka Bonita v4) Software September 2008 Table of Contents 2.1.1 Downloading the products..6

More information

EditGrid Excel Plus Links

EditGrid Excel Plus Links..1 Installation..2 Using EditGrid Excel Plus (quick)..3 Warnings:..3 Quick use..3 1. In order to make a link between an Excel file on your PC and an online file on EditGrid..3

More information

Composer Deployment Guide. Installation

Composer Deployment Guide Installation 12/27/2017 Installation Contents 1 Installation 1.1 Composer Installation Video 1.2 Getting Started After Installation 1.3 Installing Composer as an Eclipse Plugin

More information

System Installation Guide

System Installation Guide Guide to a successful system installation on an open source application stack. October 25 th, 2016 Version 1.3.3 Contact: DIGIT-EUSURVEY-OSS@ec.europa.eu 1 Content 1. Overview..

More information

EVALUATION ONLY. WA2097 WebSphere Application Server 8.5 Administration on Linux. Student Labs. Web Age Solutions Inc.

WA2097 WebSphere Application Server 8.5 Administration on Linux 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

ADF Code Corner. 65. Active Data Service Sample Twitter Client. Abstract: twitter.com/adfcodecorner

ADF Code Corner 65. Active Data Service Sample Twitter Client Abstract: Active Data Service is a push event framework in Oracle ADF Faces that allows developers to implement real time server to client

More information

NetBeans Primer v8.0

Using an IDE for Web Development NetBeans Primer v8.0 Using a simple text editor to create source code and compiling from the command line enables the programmer to concentrate on the code and not be encumbered

More information

DREAMFACTORY SOFTWARE INC. Snapshot User Guide. Product Usage and Best Practices Guide. By Sathyamoorthy Sridhar June 25, 2012

DREAMFACTORY SOFTWARE INC Snapshot User Guide Product Usage and Best Practices Guide By Sathyamoorthy Sridhar June 25, 2012 This document describes Snapshot s features and provides the reader with notes

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Eclipse Scout. Release Notes. Scout Team. Version 7.0

Eclipse Scout Release Notes Scout Team Version 7.0 Table of Contents About This Release..................................... 1 Service Releases.....................................

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!.. 6 Site Manager!.. 6 Drafts!.. 6 Components!.. 6 Categories!.. 6 Content Collections:

More information

CA Output Management Web Viewer

CA Output Management Web Viewer User Guide Release 12.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word.. 1 Get Organized.. 1 Create the

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview..1 2 Setting up Your Account..3 2.1 Completing the Initial Email and

More information

Jedox Installation on Windows

Hatas

Jedox Installation on Windows Important: It is not possible to load a database in a previous version that was once loaded in version 5.0! On Windows you must have Administrator Rights for the installation

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

Mobile Login extension User Manual

extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

More information

If you don t have the JDK, you will need to install it. 1. Go to

Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

Grable and associates columbia city. Choma, Jr., An Overview of Analog Feedback Part II: Amplifier Configurations in Generic Device Technologies, Analog Integrated Circuits and.

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

Installation & User Guide

SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

From: Sudarshan N Raghavan (770)

Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

Panorama Sharing Skyline Documents

Panorama Sharing Skyline Documents Panorama is a freely available, open-source web server database application for targeted proteomics assays that integrates into a Skyline proteomics workflow. It has

More information

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide

HP ALM 11.00 Administration and Customization Lab Guide Overview This Lab Guide contains the exercises for Administration and Customization of HP ALM 11 Essentials training. The labs are designed to enhance

More information

Tutorial on Basic Android Setup

Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Linux Version Introduction In this tutorial, we will learn how to set up the Android software development environment and

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print..7 CollabNet, Inc. Trademark and Logos..7 Chapter

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0

USER MANUAL TABLE OF CONTENTS Introduction.. 1 Benefits of Customer Portal.. 1 Prerequisites.. 1 Installation.. 2 SuiteCRM Plug-in Installation.. 2 Joomla Manual Plug-in installation.. 3 Plug-in

More information

SharePoint List Booster Features

SharePoint List Booster Features Contents Overview.. 5 Supported Environment.. 5 User Interface.. 5 Disabling List Booster, Hiding List Booster Menu and Disabling Cross Page Queries for specific List

More information

Customizing and Administering Project Server Access

WEB Customizing and Administering Project Server Access In this chapter Creating and Deleting Users from Project Server 2 Managing User Groups Project Server User Security 4 Using Categories to Control

More information

Remote Support Web Rep Console

Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a rich client plug-in application

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS 1 Lab instructions This lab teaches

More information

ACT! Calendar to Excel

Another efficient and affordable ACT! Add-On by ACT! Calendar to Excel v.6.0 for ACT! 2008 and up http://www.exponenciel.com ACT! Calendar to Excel 2 Table of content Purpose of the add-on.. 3 Installation

More information

Step 1: Accessing the account

Quick guide Step 1: Accessing the account Step 2: Download RSFiles! Step 3: Installing RSFiles! Step 4: RSFiles! settings 4.1 Add the license code in the General tab 4.2 File settings 4.3 Frontend settings

More information

User Guide. Product: GreenFolders. Version: 3.8

User Guide Product: GreenFolders Version: 3.8 Release Date: October 2014 GreenFolders 3.8 User Guide Introduction Table of Contents 1 Introduction.. 6 2 General Information.. 7 2.1 Login Procedure..

More information

Client Configuration Cookbook

Sitecore CMS 6.4 or later Client Configuration Cookbook Rev: 2013-10-01 Sitecore CMS 6.4 or later Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES.. 3 SYSTEM REQUIREMENTS.. 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365..3 LICENSE ACTIVATION..4

More information

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

Database Explorer Quickstart

Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

Content Author's Reference and Cookbook

Sitecore CMS 6 Content Author's Reference and Cookbook Rev. 080627 Sitecore CMS 6 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents Chapter

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

S-Drive User Guide v1.27

S-Drive User Guide v1.27 Important Note This user guide contains detailed information about S-Drive usage. Refer to the S-Drive Installation Guide and S-Drive Advanced Configuration Guide for more information

More information

Working with Actions Stratum.Viewer 6

Working with Actions Stratum.Viewer 6 Getting Started Access to Actions Accessing Actions Functionality Introduction to Actions Quick Start Set up an Action Tasks Add an Email Action Add a File Share Action

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL TABLE OF CONTENTS Introduction.. 1 Benefits of Customer Portal.. 1 Prerequisites.. 1 Installation.. 2 SuiteCRM Plug-in Installation.. 2 Drupal Manual Plug-in installation.. 4 Plug-in

More information

Chapter 5 Retrieving Documents

Chapter 5 Retrieving Documents Each time a document is added to ApplicationXtender Web Access, index information is added to identify the document. This index information is used for document retrieval.

More information

WebSphere. Clips and Tacks: Getting started with the IBM BPM suite of products

WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products ii IBM WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products Contents Chapter 1. Introduction....

More information

Custom Contact Forms Magento 2 Extension

Custom Contact Forms Magento 2 Extension User Manual This is the user manual of Magento 2 Custom Contact Forms v100.0.0 and was last updated on 29-06-2017. To see what this extension can do, go to the

More information

Working with Beehive Controls

Working with Java Controls Working with Beehive Controls BEA Workshop for WebLogic Platform incorporates Beehive controls that make it easy for you to encapsulate business logic and to access enterprise

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1.. 5 Log into EDDIE..

More information

Java The Installer Cannot Proceed With The Current Internet Connection Settings Hatası

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test.. 3 Adding Quick Verification Steps.. 10 Creating Advanced Test Verifications.. 13 Creating a Data Driven

More information

Liferay Portal 4 - Portal Administration Guide. Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer

Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer 1.1

More information

Installing Komplete 5 with Direct Install

Installing Komplete 5 with Direct Install This document discusses how to use Receptor s Direct Install feature to install and update Komplete 5, its plugins, and its libraries. In order to install Komplete

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.1

USER MANUAL TABLE OF CONTENTS Introduction.. 1 Benefits of Customer Portal.. 1 Prerequisites.. 1 Installation & Configuration.. 2 Dynamics CRM Plug-in Installation.. 2 Drupal Manual Plug-in installation..

More information

Tutorial: Tools for mobile Linux (TmL) Exercises

Tutorial: Tools for mobile Linux (TmL) Exercises Setting Up the Environment for the Hands-on Sessions You can get all the software you need for the TmL tutorial from http://wiki.eclipse.org/dsdp/tml/eclipsecon2009_tutorial.

More information

FileLoader for SharePoint

Administrator s Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 Contents Preface 3 FileLoader Users.. 3 Getting Started with FileLoader 4 Configuring Connections to SharePoint 8

More information

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide

Sonatype CLM - IDE User Guide i Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide ii Contents 1 Introduction 1 2 Installing Sonatype CLM for Eclipse 2 3 Configuring Sonatype CLM for Eclipse 5

More information

Branding Customizations

Branding Overview, page 1 Branding Prerequisites, page 1 Branding Task Flow, page 2 Branding File Requirements, page 4 Branding Overview The Branding feature lets you upload customized branding for Cisco

More information

SAP GUI 7.30 for Windows Computer

SAP GUI 7.30 for Windows Computer Student and Faculty Installation Instructions Table of Contents Caution:.. 2 System Requirements:.. 2 System Memory (RAM) requirements:.. 2 Disk Space requirements:..

More information

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports

White Paper BMC Remedy Action Request System 7.6.04 Using a BIRT Editor to Create or Modify Web Reports September 2012 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

CHAPTER 6. Java Project Configuration

CHAPTER 6 Java Project Configuration Eclipse includes features such as Content Assist and code templates that enhance rapid development and others that accelerate your navigation and learning of unfamiliar

More information

Visual Dialogue User Guide. Version 6.0

Visual Dialogue User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its

More information

1. Installing R4E 1. 1) Provision Software Sites 2. 2) Install Version Control System Features 3. 3) Install R4E feature 4. 4) Install Versions

R4E Documentation 1. Installing R4E 1. 1) Provision Software Sites 2. 2) Install Version Control System Features 3. 3) Install R4E feature 4. 4) Install Versions Connectors 2. Getting Started 1. Overview

More information

Community Edition. Web User Interface 3.X. User Guide

Community Edition Talend MDM Web User Interface 3.X User Guide Version 3.2_a Adapted for Talend MDM Web User Interface 3.2 Web Interface User Guide release. Copyright This documentation is provided under

More information

How to take up my assessment?

2011, Cognizant How to take up my assessment? Step 1 : You have to take up the assessment only using the Virtual Desktop Interface (VDI environment) Please use the URL, https://learninglabs.cognizant.com

More information

CANVAS OBSERVER GUIDE

CANVAS OBSERVER GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents Introduction..3 What is the Observer role?..4 How can I use Canvas

More information

Creating a PDF Report with Multiple Queries

Creating a PDF Report with Multiple Queries Purpose This tutorial shows you how to create a PDF report that contains a table and graph utilizing two report queries. Time to Complete Approximately 15 minutes

More information

COPYRIGHTED MATERIAL. Lesson 1

Lesson What you ll learn in this lesson: Adding files to the Organizer Understanding workspaces Using the Photo Downloader Creating an album Importing your Photos into Adobe Photoshop Elements Adobe Photoshop

More information

SIS offline. Getting Started

SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

Eclipse 4 Eclipse Day Toulouse 24 mai 2012

Eclipse 4 Eclipse Day Toulouse 24 mai 2012 OPC 12 ECD PRE E4A 01 A OPCOACH 2012 Table of contents I - Eclipse 4 5 A. Application Model.. 10 B. E4 injection and annotations.. 14 C. CSS Styling.. 17

More information

FileLoader for SharePoint

End User's Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 3 Contents Preface 4 FileLoader Users.. 4 Getting Started with FileLoader 5 Configuring Connections to SharePoint 7 Disconnecting

More information

10. The Barcodes and dynamic images example explained The chart example explained The running totals example explained

J4L FO Designer 2.1 Table of contents 1. Introduction..4 Requirements..4 Setup & startup..5 Delivered files..8 2. The user interface..9 The properties view..10 XML Schema folder..12 The XML test

More information

AVG Business Edition Remote Administration

AVG Business Edition Remote Administration User Manual Document revision AVG.02 (1/7/2018) Copyright AVG Technologies CZ, s.r.o. All rights reserved. All other trademarks are the property of their respective

More information

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration.

Workflow function and condition Example WFCE - Introduction 1 WFCE - Java API Workspace preparation 1 WFCE - Creating project plugin 1 WFCE - Build and deployment 2 WFCE - Deployment to Installed Polarion

More information

AndeSight. User Manual. Working with AndESLive. Version 1.0

AndeSight User Manual Working with AndESLive Version 1.0 Table of Contents AndeSight User Manual PREFACE.. 2 CHAPTER 1 INTRODUCTION AND OVERVIEW.. 3 1.1 ANDESIGHT OVERVIEW.. 4 1.2 IDE OVERVIEW.. 4

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Modified on 27 JUL 2017 vsphere Web Services SDK 6.5 vcenter Server 6.5 VMware ESXi 6.5 Developing and Deploying vsphere Solutions,

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Getting Started..2 Logging into the Administration Side..2 Icon Glossary..3 Mouse Over Menus..4 Description of Menu Options..4 Creating a Page..5 Menu Item

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Toromiro User Guide. Toromiro User Guide This is the Toromiro User Guide which will help you install, setup and work with Toromiro.

Toromiro User Guide Contents 1. Getting Started 1.1. What is Toromiro? 1.2. Installation 1.3. First Steps 1.4. Tutorial 1.4.1. Repository Connections 1.4.1.1. Connecting to a Jackrabbit Repository 1.4.1.2.

More information

WASP 2.0. Installation and Admin Guide

WASP 2.0 Installation and Admin Guide Contents System Requirements.. 4 Overview.. 4 Obtaining WASP2.. 4 Starting and stopping WASP2.. 4 Licensing and Support.. 5 Where to install WASP2.. 6 Installation..

More information

UNic Eclipse Mini Tutorial (Updated 06/09/2012) Prepared by Harald Gjermundrod

Page 1 of 19 UNic Eclipse Mini Tutorial (Updated 06/09/2012) Prepared By: Harald Gjermundrod Table of Contents 1 EASY INSTALLATION.. 2 1.1 DOWNLOAD.. 2 1.2 INSTALLING.. 2 2 CUSTOMIZED INSTALLATION..

More information

Working with Beehive Controls

Working with Java Controls Working with Beehive Controls BEA Workshop for WebLogic Platform incorporates Beehive controls that make it easy for you to encapsulate business logic and to access enterprise

More information

HPE Java Add-in Extensibility

HPE Java Add-in Extensibility Software Version: 14.02 Developer Guide Go to HELP CENTER ONLINE https://admhelp.microfocus.com/uft/ Document Release Date: November 21, 2017 Software Release Date: November

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.2

USER MANUAL TABLE OF CONTENTS Introduction.. 1 Benefits of Customer Portal.. 1 Prerequisites.. 1 Installation & Configuration.. 2 Dynamics CRM Plug-in Installation.. 2 Joomla Manual Plug-in installation..

More information

JDK-WildFly-NetBeans Setup Local

@author R.L. Martinez, Ph.D. Table of Contents Overview.. 1 Security Notice.. 2 Download and Install Latest Stable JDK.. 2 Download and Install Latest Stable WildFly.. 6 Download and Install Latest

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer

i About the Tutorial Eclipse is an integrated development environment (IDE) for Java and other programming languages like C, C++, PHP, and Ruby etc. Development environment provided by Eclipse includes

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Multi-NVR Manager. Quick Start Configuration Usage

Multi-NVR Manager Quick Start Configuration Usage 2014. All rights are reserved. No portion of this document may be reproduced without permission. All trademarks and brand names mentioned in this publication

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial Contents Introduction.. 1 What you will learn in this tutorial.. 2 Lesson 1: Create First Form Using Wizard.. 3 Lesson 2: Design the Second Form.. 9 Add Components

More information

Catalog Content Management

Catalog Content Management Documentation Version 2.12 December 2017 Product Management CCMT Documentation 2 of 23 Content 1. Introduction.. 3 1.1 Network requirements.. 3 2. Catalog Management Process..

More information