aad full installation

Upload: har-jeet-singh-pundir

Post on 03-Apr-2018

234 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/28/2019 AAD Full Installation

    1/80

    AAD Full Installation

    Version 0.1

  • 7/28/2019 AAD Full Installation

    2/80

    Document History

    Revision History

    RevisionNumber

    RevisionDate

    Summary of Changes Changesmarked

    Revision by: N

    Revision by: Author N

    Revision by: Author N

    Revision by: Author N

    Revision by: Author N

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 2 of 80

  • 7/28/2019 AAD Full Installation

    3/80

    Distribution

    This document has been distributed to

    Name Title Contact information

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 3 of 80

  • 7/28/2019 AAD Full Installation

    4/80

    Contents

    Document History................................................................................................................2Revision History

    ..........................................................................................................................................2

    Distribution......................................................................................................................3Contents...............................................................................................................................4

    Permissions:.....................................................................................................................5

    J2SE Installation:.............................................................................................................6

    WebSphere Install:.........................................................................................................16Install myeclipse-blue-7.0:.............................................................................................45

    Configure myeclipse-blue-7.0:......................................................................................45

    Attach your WebSphere Server to your workspace:..................................................52Configure WebSphere:...................................................................................................56

    Create an Oracle Datasource:.....................................................................................57Create an DB2 Datasources:......................................................................................73

    CVS:...............................................................................................................................76

    Update all AAD projects from CVS..............................................................................80

    Build aad projects..........................................................................................................80

    Deploy and restart server...............................................................................................80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 4 of 80

  • 7/28/2019 AAD Full Installation

    5/80

    Permissions:

    The new user should be an administrator of the machine.

    Also the user should have a CVS account.

    Your TWC V or E id needs to be setup within the Chordiant Admin console

    to have a valid profile, role, and desktop in order to login.

    A Pulse ID needs to be created: Goto http://www.poweredbypulse.com/ Then the

    pluse ID needs to be sent to The Manager so that he can add it to the group.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 5 of 80

    http://www.poweredbypulse.com/http://www.poweredbypulse.com/
  • 7/28/2019 AAD Full Installation

    6/80

    J2SE Installation:

    To compile and run a java program we need to install java platform. JDK (Java Development Kit).

    JDK is the basic set of tools required to compile and run java programs. This section enables you

    to download JDK and teaches you the steps to install it.

    Download and Install JDK (Java Development Kit)

    The latest version of jdk is 6 (update 1) at the time of writing the tutorial. You can download the

    latest version of jdk from http://java.sun.com/javase/downloads/index.jsp . Once you download

    the exe file you can now install it. Just follow as mentioned:

    To install the jdk, double click on the downloaded exe file (jdk-6u1-windows-i586-p.exe)

    Step 1. Double Click the icon of downloaded exe.

    You will see jdk 6 update 1 window as shown below.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 6 of 80

    http://java.sun.com/javase/downloads/index.jsphttp://java.sun.com/javase/downloads/index.jsp
  • 7/28/2019 AAD Full Installation

    7/80

    Step 2: Now a "License Agreement" window opens. Just read the agreement and click

    "Accept"button to accept and go further.

    Step 3: Now a "Custom Setup" window opens.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 7 of 80

  • 7/28/2019 AAD Full Installation

    8/80

    Step 4: Click on "Change" button to choose the installation directory. Here it is "C:\Program

    Files\ Java\jdk1.6.0_01". Now click on "OK" button.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 8 of 80

  • 7/28/2019 AAD Full Installation

    9/80

    Clicking the "OK" button starts the installation. It is shown in the following figure.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 9 of 80

  • 7/28/2019 AAD Full Installation

    10/80

    Step 5: Next window asks to install Runtime Environment.

    Click the "Change" button to choose the installation directory of Runtime Environment. We prefer

    not to change it. So click "OK" button.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 10 of 80

  • 7/28/2019 AAD Full Installation

    11/80

    Step 6: Click "OK" button starts the installation.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 11 of 80

  • 7/28/2019 AAD Full Installation

    12/80

    Step 7: Now "Complete" window appears indicating that installation of jdk 1.6 has completed

    successfully. Click "Finish" button to exit from the installation process.

    Step 8: The above installation will create two folders "jdk1.6.0_01" and "jre1.6.0_01" in "C:\

    Program Files\ java" folder.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 12 of 80

  • 7/28/2019 AAD Full Installation

    13/80

    Step 9: To make available Java Compiler and Runtime Environment for compiling and running

    java programs , we set the system environment variables.

    First of all select "My Computer" icon and right click the mouse button. Now click on "system

    Properties" option. It provides the "System Properties" window , click the 'Advanced' tab.

    Then Click the "Environment Variables" button. It provides "Environment Variables" window.

    Now select thepath in System variables and click 'Edit' button. The"Edit System

    Variable" window will open. Add "c:\Program Files\Java\jdk1.6.0_01\bin" to 'variable

    value' and click 'Ok', 'Ok' and 'Ok' buttons.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 13 of 80

  • 7/28/2019 AAD Full Installation

    14/80

    Step 10: Now set the JAVA_HOME variable and set its value to " C:\ProgramFiles\Java\jdk1.6.0_01 ". If this variable has not beendeclared earlier then create a new system

    variable by clicking on "New"button and give variable name as "JAVA_HOME" and variable

    value as " C:\Program Files\Java\jdk1.6.0_01 ". Now click "OK". This variable is used by other

    applications to find jdk installation directory. For example, Tomcat server

    needs "JAVA_HOME" variable to find the installation directory of jdk.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 14 of 80

  • 7/28/2019 AAD Full Installation

    15/80

    Step 11: Now this is the final step to check that you have installed jdk successfully and it isworking fine. Just go to the command prompt and typejavac and hit enter key you will get the

    screen as shown

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 15 of 80

  • 7/28/2019 AAD Full Installation

    16/80

    WebSphere Install:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 16 of 80

  • 7/28/2019 AAD Full Installation

    17/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 17 of 80

  • 7/28/2019 AAD Full Installation

    18/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 18 of 80

  • 7/28/2019 AAD Full Installation

    19/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 19 of 80

  • 7/28/2019 AAD Full Installation

    20/80

    Keep on pressing Next button (accept terms and condition also)

    Put install location as C:\WebSphere61\AppServer

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 20 of 80

  • 7/28/2019 AAD Full Installation

    21/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 21 of 80

  • 7/28/2019 AAD Full Installation

    22/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 22 of 80

  • 7/28/2019 AAD Full Installation

    23/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 23 of 80

  • 7/28/2019 AAD Full Installation

    24/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 24 of 80

  • 7/28/2019 AAD Full Installation

    25/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 25 of 80

  • 7/28/2019 AAD Full Installation

    26/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 26 of 80

  • 7/28/2019 AAD Full Installation

    27/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 27 of 80

  • 7/28/2019 AAD Full Installation

    28/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 28 of 80

  • 7/28/2019 AAD Full Installation

    29/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 29 of 80

  • 7/28/2019 AAD Full Installation

    30/80

    Copy these 2 directories from this location .

    C:\Durgesh\Software\DownloadDirector\download.updii.61019.windows.ia32

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 30 of 80

  • 7/28/2019 AAD Full Installation

    31/80

    And paste them in the app server directory of the WebSphere 6.1 installC:\WebSphere61\AppServer

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 31 of 80

  • 7/28/2019 AAD Full Installation

    32/80

    Now change to the UpdateInstaller directory and run the .exe fileC:\WebSphere61\AppServer\UpdateInstaller

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 32 of 80

  • 7/28/2019 AAD Full Installation

    33/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 33 of 80

  • 7/28/2019 AAD Full Installation

    34/80

    The setup then asks for a directory in which to install the patch. Give it the directory

    of the 6.1 app server and an install directory named UpdateInstaller1 like thisC:\WebSphere61\AppServer\UpdateInstaller1

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 34 of 80

  • 7/28/2019 AAD Full Installation

    35/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 35 of 80

  • 7/28/2019 AAD Full Installation

    36/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 36 of 80

  • 7/28/2019 AAD Full Installation

    37/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 37 of 80

  • 7/28/2019 AAD Full Installation

    38/80

    BEFORE MOVING ON

    Go back to the directory with the install files

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 38 of 80

  • 7/28/2019 AAD Full Installation

    39/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 39 of 80

  • 7/28/2019 AAD Full Installation

    40/80

    Go to the DownloadDirectory directory again and copy this file from this directory

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 40 of 80

  • 7/28/2019 AAD Full Installation

    41/80

    And copy to this directory

    C:\WebSphere61\AppServer\UpdateInstaller1\maintenance

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 41 of 80

  • 7/28/2019 AAD Full Installation

    42/80

    NOW CONTINUE THE INSTALL

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 42 of 80

  • 7/28/2019 AAD Full Installation

    43/80

    (just next button here only)

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 43 of 80

  • 7/28/2019 AAD Full Installation

    44/80

    Keep on following next buttons and the maintenance package install will start

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 44 of 80

  • 7/28/2019 AAD Full Installation

    45/80

    Install myeclipse-blue-7.0:

    1. Execute :\\myeclipse-blue-7.0-win32.exe.2. Elect to install MyEclipse Blue 7.0 under C:\Program Files\Genuitec\ (Default)

    Configure myeclipse-blue-7.0:

    1. When you go into MyEclipse select the workspace c:\MyWorkspace

    2. Wait for available updates screen to come

    3. Select to install Pulse Services and extentions and click finish4. You will be required to reboot.

    5. Again select c:\MyWorkspace

    6. Again wait for updates screen to come and now select to install the 3 remainingupdates and click finish.

    7. Again reboot and again (This time you can cancel out of you Dash board andlicense screens. You can now select to goto your workbench:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 45 of 80

  • 7/28/2019 AAD Full Installation

    46/80

    In your workspace

    8. Uncheck Build Automatically

    9. Under Windows pulldown menu, goto preferences. Then goto Java-

    Compiler. Set the compliance level to 1.4.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 46 of 80

  • 7/28/2019 AAD Full Installation

    47/80

    10. Then under java installed JREs click on search

    11. Highlight c:\Program Files\java and select OK

    12. Select version 1.6 and then OK

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 47 of 80

  • 7/28/2019 AAD Full Installation

    48/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 48 of 80

  • 7/28/2019 AAD Full Installation

    49/80

    Now add the newly installed WebSphere 6.1 server.

    Name: WebSphere61_WirelessProfile Location: C:\WebSphere61\AppServer\profiles\AppSrv01

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 49 of 80

  • 7/28/2019 AAD Full Installation

    50/80

    Increase the memory to 512

    (then just keep clicking Next, then Finish)

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 50 of 80

  • 7/28/2019 AAD Full Installation

    51/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 51 of 80

  • 7/28/2019 AAD Full Installation

    52/80

    Attach your WebSphere Server to your workspace:

    1. Under the server tab right click and select configure

    2. Highlight WebSphere 6.0 under WebSphere Blue Connectors, and then onthe right click on Browse for the WebSphere Home Directory. Browse to

    C:\WebSphere|AppServer (The above and following screenshots haveWebSphere60, please ignore the 60)

    3. Now under server instances select ADD

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 52 of 80

  • 7/28/2019 AAD Full Installation

    53/80

    4. Change Default Server Launch Mode to Run Mode then Click next

    5. Click next

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 53 of 80

  • 7/28/2019 AAD Full Installation

    54/80

    6. Change to 512M then click next

    7. Click Finish

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 54 of 80

  • 7/28/2019 AAD Full Installation

    55/80

    8. Now click apply and OK

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 55 of 80

  • 7/28/2019 AAD Full Installation

    56/80

    Configure WebSphere:

    1. You can startup you WebSphere Server from your IDE

    2. Right click on your new server and select run

    If you ever see a Windows Security Alert Select unblock

    3. After the server starts go to the WebSphere Admin Console by right clicking onthe server again and selecting open Admin Console

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 56 of 80

  • 7/28/2019 AAD Full Installation

    57/80

    Create an Oracle Datasource:

    serverName = ddtdrdb02cdp.twcable.com

    portNumber = 1531

    URL =jdbc:oracle:thin:@ddtdrdb02cdp.twcable.com:1531:AADD

    1. From the server view, open the admin console

    2. Log in with any name

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 57 of 80

  • 7/28/2019 AAD Full Installation

    58/80

    3. Start by changing the path to the Oracle jar via the Environment link. Click onWebSphere Variables

    4. Scroll down until you see Oracle JDBC Driver Path. Click the link.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 58 of 80

  • 7/28/2019 AAD Full Installation

    59/80

    5. Change the value field to be the windows path to the Oracle 9 jar in your workspace.You can put the entire workspace path. Or, what I did was just copy the driver jar out of

    my workspace to a new folder on my C drive.

    When youve changed the value to point to the Oracle driver, click Apply, then the tiny

    little Save link that appears hidden in some mindless dribble at the top of the screen:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 59 of 80

  • 7/28/2019 AAD Full Installation

    60/80

    Now click Save YET AGAIN!!!!!

    5. Now go back to the links at the left and click JDBC Providers under

    Resources:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 60 of 80

  • 7/28/2019 AAD Full Installation

    61/80

    6. Click the New button down at the bottom.

    7. Change the dropdowns to match the picture below and click the Next button:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 61 of 80

  • 7/28/2019 AAD Full Installation

    62/80

    8. Under general properties, change the name and the name of the Provider.

    NOTE: The name here is not the data source name. Its a reference to the

    provider. I just chose to name it the same as the data source. But you could call it

    anything. Just copy the name you use off to Notepad, since youll have to supplythis name later.

    9. Again, do you 2-step save click the Save link, then the Save button!!!!

    10. Now you should see the driver jar reference in the list.

    So from here, click its name.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 62 of 80

  • 7/28/2019 AAD Full Installation

    63/80

    11. On the right side, click Data Sources

    12. Click the New button

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 63 of 80

  • 7/28/2019 AAD Full Installation

    64/80

    13. NOW you enter the Data Source name. THIS HAS TO MATCH theapplicationContext-hibernate.xml file.

    So name it EXACTLY like the picture below. Also, un-check the CMP checkbox.

    14. Scroll all the way down to the bottom and enter the URL from Leos email:jdbc:oracle:thin:@ddtdrdb02cdp.twcable.com:1531:AADD

    15. Next, scroll back up to the top and click Custom Properties

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 64 of 80

  • 7/28/2019 AAD Full Installation

    65/80

    From this page, scroll down and click Server Name

    Now enter the server name from Leos email into the value field:ddtdrdb02cdp.twcable.com

    Then click Apply. Click on the Custom Properties link at the top to get back:

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 65 of 80

  • 7/28/2019 AAD Full Installation

    66/80

    16. Now change the port number right under the Server Name link to be the one fromLeos email: 1531

    Then, Apply

    17. FINALLY (Whew!), Go back to AADnoXA via the link at the top

    Set the user name and password via the J2EE connector link at the right

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 66 of 80

  • 7/28/2019 AAD Full Installation

    67/80

    18. Click the new button

    19. Give the connector an alias any name you want, enter the connection info andApply.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 67 of 80

  • 7/28/2019 AAD Full Installation

    68/80

    20. Now click Save

    21. Go back to AADnoXA via the link at the top

    Change the following 3 values:

    22. Again, do you 2-step save click the Save link, then the Save button!!!!

    23. With that created, click the AADnoXA link to get back to test your connection.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 68 of 80

  • 7/28/2019 AAD Full Installation

    69/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 69 of 80

  • 7/28/2019 AAD Full Installation

    70/80

    Click the Test Connection button

    You should now see this message in your console:

    CAR 202 JDBC Provide and DataSource Configuration DEV

    CAR 202 JDBC Provide and DataSource Configuration DEV

    Server Name: 10.157.206.12

    UID: GSO8XXS001PWD: GSO8XXS1

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 70 of 80

  • 7/28/2019 AAD Full Installation

    71/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 71 of 80

  • 7/28/2019 AAD Full Installation

    72/80

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 72 of 80

  • 7/28/2019 AAD Full Installation

    73/80

    Now youre done.

    Create an DB2 Datasources:

    Name: DS_ECAROLINA_038JNDI: DS_ECAROLINA_038

    Server: 10.157.206.12Component and container Alias: DS_ECAROLINA_038

    J2CAlias: DS_ECAROLINA_038

    User: WILESB001

    Pwd: WILESB1

    Name: DS_GREENSBORO_056

    JNDI: DS_GREENSBORO_056Server: 10.157.206.12

    Component and container Alias: DS_GREENSBORO_056J2CAlias: DS_GREENSBORO_056User: GSOESB001

    Pwd: GSOESB1

    Name: DS_GSOAAD8_056JNDI: DS_GSOAAD8_056

    Server: 10.157.206.12

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 73 of 80

  • 7/28/2019 AAD Full Installation

    74/80

    Component and container Alias: DS_GSOAAD8_056

    J2CAlias: DS_GSOAAD8_056User: GSO8XXS001

    Pwd: GSO8XXS1

    Name: DS_SCAROLINA_390JNDI: DS_SCAROLINA_390

    Server: 10.157.206.12Component and container Alias: DS_SCAROLINA_390

    J2CAlias: DS_SCAROLINA_390

    User: SCAESB001Pwd: SCAESB1

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 74 of 80

  • 7/28/2019 AAD Full Installation

    75/80

    Data Source List (January / 2013)

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 75 of 80

  • 7/28/2019 AAD Full Installation

    76/80

    CVS:

    When the user gets a CVS account they will have to do the following:

    Create a repository connection in the IDE:

    1. Within the workspace, click on open a perspective, and choose Other.

    2. Under CVS choose, CVS Repository Location, then Next

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 76 of 80

  • 7/28/2019 AAD Full Installation

    77/80

    (Enter the values for connection type, host, port, and repository path) andchoose Finish

    prvpchg01.twcable.com /product/cvs

    user

    Password

    Choose No.

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 77 of 80

  • 7/28/2019 AAD Full Installation

    78/80

    Import projects:(There are several ways to do this. The best way would be to import a team Project set.

    However below is how you would import from CVS)

    Within your workspace right click on the package explorer screen and select Import

    Under CVS, highlight Projects from CVS and click Next

    Highlight your repository location you just created and slect next

    Type in AAD/AADWeb (This project is on the HEAD in CVS)

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 78 of 80

  • 7/28/2019 AAD Full Installation

    79/80

    Repeat for the following other projects (however the following projects should be

    checked out from the AJAX Branch and not the HEAD):AAD/AADXML

    AAD/AADDbIcoms

    AAD/AADMainConfiguration

    AAD/IntegrationAgentsAAD/IssueTrack

    Document: AAD Full Installation 7/10/2013Pyramid IT Consulting Page 79 of 80

  • 7/28/2019 AAD Full Installation

    80/80

    Update all AAD projects from CVS

    Build aad projects.

    Right click on the /AADWeb/WebRoot/WEB-

    INF/classes/com/twc/aadx/addPrivacy.xml, goto MyEclipse and check exclude from

    Validation

    Build all projects. (You may have to refresh the AADWeb project and rebuild that

    project again as Jars were added to the web-inf\lib dir)

    Deploy and restart serverRight click on your server and