Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » report viewer - https termination / resource loading issue(issue with report viewer BASE element in context with load balancing https termination)
report viewer - https termination / resource loading issue [message #1053749] Tue, 07 May 2013 13:34
gerhard preis is currently offline gerhard preisFriend
Messages: 1
Registered: May 2013
Junior Member
hello all,

we are currently trying to deploy birt 4.2.0 with report viewer in an infrastructure with an upstream propritary load balancer that does https terminiation. the problem is that the html structure is written correctly, but resources (images, css and js) are referencing the terminated url.

A request to url
h t t p s://someserver/portal/reporting/frameset?__id=viewer&__report=SomeReport.rptdesign&__masterpage=true&__locale=de_DE


is tranformed to

h t t p://someserver/portal/reporting/frameset?__id=viewer&__report=SomeReport.rptdesign&__masterpage=true&__locale=de_DE


resources are then requested using the already terminated url which is not reachable from the client:

h t t p://someserver:80/portal/reporting/webcontent/birt/...


the problem seems to be that <BASE> html tag in various JSP files (including RunFragment.jsp) produces a static path based on information from the request:

<%
	// base href can be defined in config file for deployment.
	String baseHref = request.getScheme( ) + "://" + request.getServerName( ) + ":" + request.getServerPort( );
	if( !attributeBean.isDesigner( ) )
	{
		String baseURL = ParameterAccessor.getBaseURL( );
		if( baseURL != null )
			baseHref = baseURL;
	}
	baseHref += request.getContextPath( ) + fragment.getJSPRootPath( );

...

	<BASE href="<%= baseHref %>" >

%>


by setting the base_url property in viewer.properties to an empty string, one can achieve the <BASE> to be relative, which, however, is not a cross-browser-solution (IE seems to have problems with it and relative BASE uris seem not to be in scope of HTML 4.01 at all). has anyone had similar problems or am i missing something obvious? many thx.

gerhard
Previous Topic:PDF report with table of contents containing page number
Next Topic:Creating a Stacked Bar chart using a script
Goto Forum:
  


Current Time: Sat Apr 20 04:36:45 GMT 2024

Powered by FUDForum. Page generated in 0.02961 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top