GetBinFont

Syntax

<web service URL>/PP.GetBinFont?FileName=<font name>

Description

The GetBinFont operation is used to load font with the specified name from BI server to the client computer by means of GET request.

Comments

The operation has the unique parameter fileName, which value is name of the loaded font. The list of fonts that can be loaded from BI server is returned by the GetFonts operation. As a result of the GetFonts operation, one can get a full additional URL for loading fonts in the url field.

<html>

<head>

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<title>Use the GetBinFont operation</title>

</head>

<body>

    <script language="javascript" type="text/javascript">

        var svc = "http://localhost:9090/axis2/services/PP.SOM.Som";

        url = svc + "/PP.GetBinFont?FileName=Arial";

        window.open(url);

    </script>

</body>

</html>

See also:

Additional Operations