Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This solution can run on VS2019.

Admin access to GALRO Admin

In order to run the GALRO Admin web page, we need to be added as the administrators. Most All members of the current (Sept 2022) Civil Aviation maintenance team have been added to GALRO Admin as Administrators on development, acceptance and production as follows:

  • Alain Asgill

  • Chris Collins

  • Noreen Dertinger

  • Sufyan Maghur

  • Kurt Martin

  • Phuong Nguyen

  • Riadh Said

  • Rajesh Shah

  • Siamak Shirzad

  • Haoyuan Wang

To connect to GALRO Admin:

  1. Find the URL for the environment you need to connect to in the Environment Access Information section.

    1. Note: on acceptance you may be presented with a prompt to login. Login using your network credentials. If your login attempt fails you will need to log an ORION ticket to request access.

      Image Added

Adding a new user via the GALRO Admin application:

Any user listed above can connect to GALRO Admin on development, acceptance and production and add a new user.
1. Select “User Administration” from the left hand menu.

...

2. Click “Add user”

...

3. Search for the user you are adding. See RDIMS (to be created) for details regarding adding users.
Example

...

4. Add and save the user.
Example, for admin user:

...


Adding a new user via the GALRO Database application:

GALRO Admin users are managed in the CCARCS database (Table TA04_GALRO_SECURITY_USER).
See also TA05_GALRO_ACCESS_LEVEL

On dev and acc, use the “CARS” user. I was not able to find an appropriate account for PROD with write access, so the client gave me access. Once I had access, I could add the rest of the team.


Important note: if you don’t have access to the GALRO admin app you will not be able to add other users.
I was able to add myself to the database and then could add other users.

Running on Local:

Expand
titleCompile errors and fixes

If there is any error about CrystalDecisions:

Check the References, you have to reinstall the actual Dlls for these libraries.

On VS2019 → Tool -> Nuget Packet Manager -> Manage Nuget Packages for Solution, and search for the library to install if that library did not exist, and reinstall if it already existed.

When we add the library “CrystalDecisions.ReportAppServer.ClientDoc”, we have to install the specific version “13.0.3500.0” since this is what is specified/required in the web.config .

<add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>

Build the solution and run it. If the banner is still not displaying correctly, how to fix it?

Fixed: On the browser, click view source code, you can find

→ we must miss the images folder and stylesheets folder in our local path when running GALRO-AGILE-SEC in dev mode

→ Go to \\ncrws499\catcappsx\ and copy “images” and “stylesheets” folders to your local source code of GALRO-AGILE-SEC

→ Refresh the browser, now it displays correctly

...