• No se han encontrado resultados

HALLAZGO DEL DIAGNOSTICO

3.3 RESPONSABILIDAD DE LA LÍNEA DE MANDO EN SSO

You can perform any of the post-installation activities below according to your requirements.

Parent topic: Installation and Setup [page 26]

Related Information

Installing SAP Web IDE [page 27] Starting SAP Web IDE [page 28]

4.4.1 Configuring the Orion Application Server

You may wish to configure the Orion Application Server for your system landscape.

Changing the Orion Application Server Port

By default, the Orion Application Server runs on port 8080. You can change the port, for example, if there are conflicts with other servers running on the same machine.

Procedure

1. Open the orion.ini file:

Microsoft Windows® Mac OS® Open the orion.ini file with a text editor, such as Word­

Pad.

Open the orion.ini file with a text editor, such as vi, by entering the following commands in the Terminal window:

1. cd /Applications/SAPWebIDE/eclipse/ orion.app/Contents/MacOS

2. vi orion.ini 2. Change the port in the following line:

-Dorg.eclipse.equinox.http.jetty.http.port=8080

Note

In vi editor, press I to edit. 3. Save the orion.ini file and close it.

Note

Setting the Proxy Server

In your landscape, you may need to access remote systems via a proxy server.

Procedure

1. Open the orion.ini file:

Microsoft Windows® Mac OS® Open the orion.ini file with a text editor, such as Word­

Pad.

Open the orion.ini file with a text editor, such as vi, by entering the following commands in the Terminal window:

1. cd /Applications/SAPWebIDE/eclipse/ orion.app/Contents/MacOS

2. vi orion.ini

2. Add the following lines at the end of the file, replacing the placeholders with values specific to your landscape:

-Dhttp.proxyHost=<Proxy address> -Dhttp.proxyPort=<Proxy port> -Dhttps.proxyHost=<Proxy adddress> -Dhttps.proxyPort=<Proxy port> -Dhttps.nonProxyHosts=localhost|<host1>|<host2>

Note

In vi editor, press I to edit. 3. Save the orion.ini file and close it.

Note

In vi editor, press ESC when you finish editing. To save and quit, enter :wq .

4.4.2 Connecting Remote Systems

You can define service destinations to access remote systems as required.

Prerequisites

Context

The service destinations are described in the following property files:

Key Value

WebIDEUsage Enter one or more of the following possible values:

● odata_abap:

For the OData functionality of Gateway (corresponds to URL path /sap/opu/odata)

● odata_gen:

For generic OData functionality (service URL must be provided manually in the New Project wizard)

● ui5_execute_abap:

For executing SAPUI5 applications from the SAPUI5 ABAP repository (corresponds to URL path /sap/bc/ui5_ui5)

● dev_abap:

For extensibility scenarios and developing or deploying to the SAPUI5 ABAP repository (cor­ responds to URL path /sap/bc/adt)

● bsp_execute_abap:

For working with fact sheets (corresponds to URL path /sap/bc/bsp)

● odata_xs:

For SAP HANA XS OData services (corresponds to URL path/sap/hba)

Note

When you enter multiple usages for a destination, separate them by commas without spaces (for example, odata_abap,ui5_execute_abap).

WebIDEEnabled true

WebIDESystem <SAP system_ID>

sap-client <SAP client from the ABAP system>

Procedure

1. To connect your remote system <mysystem>, open a file with the same name as your remote system:

Note

Microsoft Windows® Mac OS® In the command shell, enter the following commands:

1. cd /d C:\SAPWebIDE\eclipse

2. mkdir config_master

\service.destinations\destinations

3. cd config_master\service.destinations \destinations

4. echo #ServiceDestination > <mysystem>

5. notepad <mysystem>

In the Terminal window, enter the following commands: 1. cd /Applications/SAPWebIDE/eclipse/

2. vi orion.app/Contents/MacOS/

config_master/service.destinations/ destinations/<mysystem>

2. Paste the content of the following example to the file.

Example for eclipse/config_master/service.destinations/destinations/<mysystem>:

Description=<mysystem> description Type=HTTP TrustAll=true Authentication=NoAuthentication Name=<mysystem> ProxyType=Internet URL=https\://<host>\:<port> WebIDEUsage=odata_abap,ui5_execute_abap,dev_abap WebIDESystem=<mysystem> WebIDEEnabled=true

3. Save and close the file.

Results

If your landscape requires the use of a proxy server to reach your systems, you can configure the Orion Application Server to use a proxy server.

Related Information

4.4.3 Importing the Git Server Certificate into the JVM

If the server certificate is based on a company internal root certificate, you have to import the root certificate into the JVM.

Context

If you are connecting to a Git server in your company via HTTPS, the Java Virtual Machine (JVM) on which the Orion installation is running has to trust the server certificate. If the server certificate is not issued by a public agency, but is based on a company internal root certificate, you have to import the root certificate into the JVM. Otherwise the verification of the Git server's certificate fails and prevents you from performing Git operations. To import your certificate into the JVM, fetch the certificate *.cer file from your company's IT department and store it on your machine, by performing the steps.

Microsoft Windows® Mac OS®

1. In the command shell, enter the following command:

cd C:\Program Files\Java\jre<VERSION>

\lib\security

Example:

C:\Program Files\Java\jre7\lib \security

2. Next, enter the following command:

keytool -import -file <PATH OF THE .cer FILE>

-keystore cacerts -alias <ANY ALIAS>

1. In the Terminal window, enter the following command:

cd /Library/Java/JavaVirtualMachines/ jdk<VERSION>.jdk/Contents/Home/jre/lib/ security Example: /Library/Java/JavaVirtualMachines/ jdk1.7.0_65.jdk/Contents/Home/jre/lib/ security

2. Next, enter the following command:

sudo keytool -import -file <PATH OF THE .cer FILE> -keystore cacerts -alias <ANY ALIAS>

Note