summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/workben/makefile.mk23
-rw-r--r--vcl/workben/svdem.cxx42
2 files changed, 54 insertions, 11 deletions
diff --git a/vcl/workben/makefile.mk b/vcl/workben/makefile.mk
index 85a6c0a7c593..5aebee5f67f0 100644
--- a/vcl/workben/makefile.mk
+++ b/vcl/workben/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.5 $
+# $Revision: 1.6 $
#
-# last change: $Author: obo $ $Date: 2001-06-27 08:35:48 $
+# last change: $Author: ssa $ $Date: 2001-08-10 11:20:10 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -74,9 +74,11 @@ LIBTARGET=NO
# --- Files --------------------------------------------------------
-CXXFILES= svdem.cxx
-
OBJFILES= $(OBJ)$/svdem.obj
+.IF "$(remote)"!=""
+OBJFILES+= $(OBJ)$/officeacceptthread.obj
+EXCEPTIONSFILES=$(OBJFILES)
+.ENDIF
APP1NOSAL= TRUE
APP1TARGET= $(TARGET)
@@ -92,6 +94,15 @@ APP1STDLIBS= $(CPPULIB) \
$(SOTLIB) \
$(SVLIB)
+.IF "$(remote)"!=""
+APP1STDLIBS+= $(UNOLIBS) \
+ $(CPPUHELPERLIB) \
+ $(UNOTOOLSLIB) \
+ $(UCBHELPERLIB) \
+ $(COMPHELPERLIB) \
+ $(SALHELPERLIB)
+.ENDIF
+
APP1DEPN= $(L)$/itools.lib \
$(L)$/sot.lib
@@ -99,10 +110,6 @@ APP1DEPN= $(L)$/itools.lib \
APP1DEF= $(MISC)$/$(TARGET).def
.ENDIF
-.IF "$(remote)"!=""
-EXCEPTIONSFILES=$(OBJ)$/svdem.obj
-.ENDIF
-
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk
diff --git a/vcl/workben/svdem.cxx b/vcl/workben/svdem.cxx
index 03684a0fb02a..40fec7396734 100644
--- a/vcl/workben/svdem.cxx
+++ b/vcl/workben/svdem.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdem.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: th $ $Date: 2001-03-12 15:57:06 $
+ * last change: $Author: ssa $ $Date: 2001-08-10 11:20:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,6 +67,15 @@
#include <wrkwin.hxx>
#include <msgbox.hxx>
+#ifdef REMOTE_APPSERVER
+#include <comphelper/processfactory.hxx>
+#include <cppuhelper/servicefactory.hxx>
+#include <cppuhelper/bootstrap.hxx>
+#include "officeacceptthread.hxx"
+#endif
+
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::lang;
// -----------------------------------------------------------------------
// Forward declaration
@@ -76,10 +85,37 @@ void Main();
SAL_IMPLEMENT_MAIN()
{
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xMS;
+ Reference< XMultiServiceFactory > xMS;
+
+#ifdef REMOTE_APPSERVER
+ // for this to work make sure an <appname>.ini file is available, you can just copy soffice.ini
+ Reference< XComponentContext > xComponentContext = ::cppu::defaultBootstrap_InitialComponentContext();
+ xMS = Reference< XMultiServiceFactory > (xComponentContext->getServiceManager(), UNO_QUERY);
+ ::comphelper::setProcessServiceFactory( xMS );
+
+ // allow remote clients to connect from any host (0) on the given port
+ ::desktop::OOfficeAcceptorThread *pOfficeAcceptThread = new ::desktop::OOfficeAcceptorThread( xMS,
+ ::rtl::OUString::createFromAscii("socket,host=0,port=8081;urp;"), false, ::rtl::OUString(), ::rtl::OUString() );
+ pOfficeAcceptThread->create();
+#endif
+
InitVCL( xMS );
+ GetpApp()->WaitForClientConnect(); // is a no-op in local case
::Main();
DeInitVCL();
+
+#ifdef REMOTE_APPSERVER
+ if( pOfficeAcceptThread )
+ {
+ pOfficeAcceptThread->stopAccepting();
+#ifndef LINUX
+ pOfficeAcceptThread->join();
+ delete pOfficeAcceptThread;
+#endif
+ pOfficeAcceptThread = 0;
+ }
+#endif
+
return 0;
}