Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BASEURL doesn't work as expected

Status
Not open for further replies.

andy5664

Programmer
Feb 25, 2004
2
DE
hi all,

i'm trying to watch a report-generated graph on another server than the WebFocus-Server. For this purpose, i found out, that SET BASEURL=url should be used, but unfortunately it doesn't work. It seems to have no effect on the generated HTML. I would have expected, that <BASE HREF="url"> appears.
Does anybody have an idea or has anybody successfully used SET BASEURL?
I would be glad to hear your experiences.

thanks a lot, andy
 
Syntax: How to Specify a Base URL
SET BASEURL=url where:

url

Is the fully-qualified directory in which additional HTML files, graphics files, and Java applet CLASS files reside. The URL must begin with http:// and end with a closing delimiter (/).

Example: Specifying a Base URL
The following illustrates how to specify a base URL:

SET BASEURL=http://www.informationbuilders.com/ibi_html/newcentcorp/ images/If you are including a graphic image in your report that is stored in the specified base URL, you can add the following declaration to your StyleSheet instead of typing the entire URL:

TYPE=HEADING, IMAGE=leftlogo.gif, ..., $Note: If the URL is at a remote website, it may take longer to retrieve. Whenever possible, store graphic image files on your WebFOCUS system.

 
hi mmiles,

thanks for replying.
before i opened my thread, i already tried it this way (SET BASEURL=http://myserver/directory/), but as i described, nothing seems to happen.
here is an example of my full code, perhaps anybody sees a command, that collides with SET BASEURL:
SET LOOKGRAPH=BAR
SET GRAPHEDIT=OFF
SET GRID=ON
SET BARNUM=OFF
SET 3D=ON
SET BASEURL=http://myserver/ibi_html/javaassist/
GRAPH FILE CAR
SUM SALES
ACROSS MODEL
ON GRAPH SET GRAPHSTYLE *
setLegendMarkerPosition(0);
setConnectLineMarkers(true);
setO1LabelDisplay(true);
setO1AxisSide(0);
setO1MajorGridDisplay(false);
setO1MinorGridDisplay(false);
setSeriesType(0,1);
setY1LabelDisplay(true);
setY1AxisSide(0);
setY1MajorGridDisplay(false);
setY1MinorGridDisplay(false);
setPieFeelerTextDisplay(1);
setTextFormatPreset(getPieSliceLabel(),1);
setPieLabelDisplay(0);
setLegendDisplay(true);
ENDSTYLE
END
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top