cancel
Showing results for 
Search instead for 
Did you mean: 

WDPortalNavigation in a https portal environment

Former Member
0 Kudos

Hi experts!

I have the following requirement/problem: in my WD Java application, I need to navigate, i.e., open an external window of another application (outside Portal) and I'm using WDPortalNavigation.navigateAbsolute() method to do this.

My WD Java application is running in a https environment (https://myhost.com/irj/portal) and I need to navigate to a https URL also.

The problem occours when the redirection page opens, it opens with this URL: http://myhost.com/irj/portalapps/com.sap.portal.navigation.toplevel/html/child.html and I get a page not found error, wich is correct because http://myhost.com does not exist!!!

Any idea where I can "say" to WDPortalNavigation to use https instead of http in the redirection page???

Please Help.

Thank you.

Osvaldo Silva

View Entire Topic
siarhei_pisarenka3
Active Contributor
0 Kudos

Hi Osvaldo Silva

Instead of Portal Navigation use the following in the case:

IWDWindow win = wdComponentAPI.getWindowManager().createNonModalExternalWindow(java.lang.String URL, java.lang.String title);
win.show();

BR, Sergei

Former Member
0 Kudos

Hi Siarhei, and thanks for your reply.

I've also tried that aproach and I got a runtime "Invalid URL" error.

Any other sugestion?

Thanks.

Osvaldo Silva