diff -ur ACE_wrappers.orig//TAO/docs/configurations.html ACE_wrappers/TAO/docs/configurations.html
--- ACE_wrappers.orig//TAO/docs/configurations.html     2008-06-17 16:45:08.000000000 +0300
+++ ACE_wrappers/TAO/docs/configurations.html   2011-05-30 13:00:29.000000000 +0300
@@ -696,7 +696,7 @@
 
   <li><p>If you don't want the application users to worry about
       setting up or knowing about <code>svc.conf</code> files, you can
-      call <code>TAO_Internal::default_svc_conf_entries()</code>
+      call <code>TAO::ORB::default_svc_conf_entries()</code>
       before calling the first <code>ORB_init()</code> in your program
       to set up the default svc.conf entries.  In this case, if a TAO
       application cannot find a svc.conf file, it will configure TAO's
@@ -713,7 +713,7 @@
             <code>svc.conf</code> in the start-up directory will be
             evaluated, if one exist.
         <li>Default entries set by
-            <code>TAO_Internal::default_svc_conf_entries()</code>, if
+            <code>TAO::ORB::default_svc_conf_entries()</code>, if
             ones exist.
         <li>Default configuration as specified in <a
             href="Options.html">this document</a>.
@@ -723,7 +723,7 @@
       always the ones take effect.  For example, if you set the entries
       for <code>Resource_Factory</code> and
       <code>Server_Strategy_Factory</code> using
-      <code>TAO_Internal::default_svc_conf_entries()</code> in a
+      <code>TAO::ORB::default_svc_conf_entries()</code> in a
       program and you also have a file called <code>svc.conf</code>
       which has an entry for <code>Resource_Factory</code>.  This
       program will use the entry for <code>Resource_Factory</code> in
diff -ur ACE_wrappers.orig//TAO/tao/TAO_Internal.h ACE_wrappers/TAO/tao/TAO_Internal.h
--- ACE_wrappers.orig//TAO/tao/TAO_Internal.h   2010-06-02 16:52:08.000000000 +0300
+++ ACE_wrappers/TAO/tao/TAO_Internal.h 2011-05-30 12:59:43.000000000 +0300
@@ -18,6 +18,7 @@
 #include /**/ "ace/pre.h"
 
 #include "tao/orbconf.h"
+#include "tao/TAO_Export.h"
 
 #if !defined (ACE_LACKS_PRAGMA_ONCE)
 # pragma once
@@ -76,6 +77,7 @@
      * Set default @c `svc.conf' content.
      * This function must be called before first ORB initialization.
      */
+    TAO_Export
     void default_svc_conf_entries (char const * rf_args,
                                    char const * ssf_args,
                                    char const * csf_args);