Difference between revisions of "Documentation/DevGuide/JavaBean/Customized Configuration"
From Apache OpenOffice Wiki
< Documentation | DevGuide
OOoWikiBot (talk | contribs) m (Robot: Changing Category:Documentation/Developers Guide/JavaBean for Office Components) |
|||
| Line 6: | Line 6: | ||
}} | }} | ||
{{DISPLAYTITLE:Customized Configuration}} | {{DISPLAYTITLE:Customized Configuration}} | ||
| − | Besides these default values, the Office Bean | + | Besides these default values, the Office Bean can be configured to use other parameters. There are three possibilities: |
| + | * starting the connection with an explicit UNO URL including path and pipe name parameters | ||
| + | * creating the connection manually and handing this object to the <code>OOoBean</code> | ||
| + | * creating the <code>OOoBean</code> with such a manually created connection object. | ||
The first method that a developer uses to configure the Office Bean is through the UNO URL passed in the <code>setUnoUrl()</code> call. The syntax of the UNO URL is as follows: | The first method that a developer uses to configure the Office Bean is through the UNO URL passed in the <code>setUnoUrl()</code> call. The syntax of the UNO URL is as follows: | ||
Revision as of 23:35, 11 July 2008
Besides these default values, the Office Bean can be configured to use other parameters. There are three possibilities:
- starting the connection with an explicit UNO URL including path and pipe name parameters
- creating the connection manually and handing this object to the
OOoBean - creating the
OOoBeanwith such a manually created connection object.
The first method that a developer uses to configure the Office Bean is through the UNO URL passed in the setUnoUrl() call. The syntax of the UNO URL is as follows:
url := 'uno:localoffice'[','<params>]';urp;StarOffice.NamingService' params := <path>[','<pipe>] path := 'path='<pathv> pipe := 'pipe='<pipev> pathv := platform_specific_path_to_the_local_office_distribution pipev := local_office_connection_pipe_name
Here is an example of how to use setUnoUrl() in code:
OfficeConnection officeConnection = new LocalOfficeConnection();
officeConnection.setUnoUrl(
“uno:localoffice,path=/home/user/staroffice6.0/program;urp;StarOffice.NamingService”);
aBean = new OOoBean( officeConnection );
| Content on this page is licensed under the Public Documentation License (PDL). |