merge the formfield patch from ooo-build
[ooovba.git] / odk / examples / DevelopersGuide / ProfUNO / CppBinding / office_connect.cxx
blob36ce86de3fcb920d9665454bee931cd64f65ede2
1 /*************************************************************************
3 * $RCSfile: office_connect.cxx,v $
5 * $Revision: 1.7 $
7 * last change: $Author: rt $ $Date: 2008-07-11 14:24:32 $
9 * The Contents of this file are made available subject to the terms of
10 * the BSD license.
12 * Copyright (c) 2003 by Sun Microsystems, Inc.
13 * All rights reserved.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 3. Neither the name of Sun Microsystems, Inc. nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
30 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
31 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
33 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
34 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
35 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
36 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
37 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *************************************************************************/
41 #include <stdio.h>
43 #include <cppuhelper/bootstrap.hxx>
44 #include <com/sun/star/bridge/XUnoUrlResolver.hpp>
45 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
46 #include <com/sun/star/lang/XMultiComponentFactory.hpp>
48 using namespace com::sun::star::uno;
49 using namespace com::sun::star::lang;
50 using namespace com::sun::star::bridge;
51 using namespace rtl;
52 using namespace cppu;
54 int main( )
56 // create the initial component context
57 Reference< XComponentContext > rComponentContext =
58 defaultBootstrap_InitialComponentContext();
60 // retrieve the servicemanager from the context
61 Reference< XMultiComponentFactory > rServiceManager =
62 rComponentContext->getServiceManager();
64 // instantiate a sample service with the servicemanager.
65 Reference< XInterface > rInstance =
66 rServiceManager->createInstanceWithContext(
67 OUString::createFromAscii("com.sun.star.bridge.UnoUrlResolver" ),
68 rComponentContext );
70 // Query for the XUnoUrlResolver interface
71 Reference< XUnoUrlResolver > rResolver( rInstance, UNO_QUERY );
73 if( ! rResolver.is() )
75 printf( "Error: Couldn't instantiate com.sun.star.bridge.UnoUrlResolver service\n" );
76 return 1;
78 try
80 // resolve the uno-url
81 rInstance = rResolver->resolve( OUString::createFromAscii(
82 "uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager" ) );
84 if( ! rInstance.is() )
86 printf( "StarOffice.ServiceManager is not exported from remote counterpart\n" );
87 return 1;
90 // query for the simpler XMultiServiceFactory interface, sufficient for scripting
91 Reference< XMultiServiceFactory > rOfficeServiceManager (rInstance, UNO_QUERY);
93 if( ! rInstance.is() )
95 printf( "XMultiServiceFactory interface is not exported for StarOffice.ServiceManager\n" );
96 return 1;
99 printf( "Connected sucessfully to the office\n" );
101 catch( Exception &e )
103 OString o = OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US );
104 printf( "Error: %s\n", o.pData->buffer );
105 return 1;
107 return 0;