Tuxedo Client on Windows Server 2003/2008

I know this is a little unorthodox, and probably not supported, any pointers on possible problems with WSL and WSH would be nice though.
I'm trying to run a .NET application that acts as a Tuxedo client on the Windows Server 2008 operating system. I've tried this with multiple versions of the Tuxedo client software, including 7, 8, 9, and 10. The application works fine on Windows XP.
My client ULOG:
120157.CI2009CORE!?proc.3376.2624.1: LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
120157.CI2009CORE!?proc.3376.2624.1: LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
120157.CI2009CORE!?proc.3376.2624.1: LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
Has anyone tried something like this before? Is there a server 2008 setting I'm missing?
EDIT:
Same problem on a server 2003 machine. Using the 10.0 win 2003 installation and tried it with the 10.0 winXP install.
Edited by: user1953107 on Feb 16, 2009 3:23 PM

My original problem with the WSL seems to have been not having enough environment variables and the tux.env file set. This leads me to another problem though. I need to be able to set the WSNADDR at runtime, which I thought I was doing, but the API seems to insist on using the environment settings instead of what is set in the application.
Example:
TypedTPINIT tpinfo = new TypedTPINIT();
tpinfo.flags = TypedTPINIT.TPMULTICONTEXTS;                       
Utils.tuxputenv("WSNADDR=//NOTVALID");
AppContext ctx1 = AppContext.tpinit(tpinfo);
TypedString requestString = new TypedString(tbInputData.Text);
TypedBuffer replyBuffer = new TypedString(0);
ctx1.tpcall(tbServiceName.Text, requestString, ref replyBuffer, 0);
string result = ((TypedString)replyBuffer).GetString(0, (int)replyBuffer.Size);
ctx1.tpterm();That ought to fail completely because the WSNADDR "//NOTVALID" doesn't point anywhere. I only use an invalid WSNADDR for illustration, because even when I set WSNADDR in the code to a valid location, the API uses what is in the env file instead. Likewise I can set the env file to an invalid location, but use a good one in the code and the system will also fail.
I really need to determine WSNADDR at runtime, how do I do that? I believe I'm following the instructions found at Link: [http://edocs.bea.com/tuxedo/tux100/dotnet/dotnet_chapter.html] and not getting the desired results.

Similar Messages

  • Tuxedo Memory Leak Issue (Tuxedo 8.1 - Windows Server 2003)

    Hi
    We are running tuxedo 8.1, 32 bit with patch level 258 in our windows server 2003 based production environment. We are currently facing an issue where the memory usage of machine slowly keeps on going higher and higher eventually resulting in “Memory Allocation Failure” to tuxedo servers. We then have to do a complete restart of tuxedo which stabilizes the system for other few days.
    We have been analyzing the our source code in development/test environment using different tools like a customized Alzheimer tool and IBM purify but both tools reported no memory leaks. We then developed a test tuxedo server exposing a tuxedo service which simply allocates a memory to a response buffer and then returns the response buffer. I then configured tuxedo queue with same name “MEMTEST3” and configured a TMQForward server to call this “MEMTEST3” service every time a message is en-queued to the MEMTEST3 queue.
    unsigned long _LIBENTRY ulTPAlloc(FBFR32 **ppc, long size)
    unsigned long ulRes = MSG_SUCCESS_c;
    ppc = (FBFR32 ) tpalloc("FML32", (char *) 0, size);
    if (*ppc == (FBFR32 *) 0) {
    vLogMessage(hGetLogHandle(), MSG_MEM_ALLOC_ERR_c, (char *) 0, (Event_t *) 0,
    BM_NOSUPPRESS_c, size);
    ulRes = MSG_MEM_ALLOC_ERR_c;
    return (ulRes);
    /*==============================================================================
    Service MEMTEST2
    ==============================================================================*/
    void MEMTEST3(TPSVCINFO *pRequest)
    FBFR32 *pFmlResponse = NULL;
    FBFR32 *pFml = NULL;
    unsigned long ulRes = MSG_SUCCESS_c;
    unsigned long ulActionCode = 0;
    int iExitValue = 0;
    long lTpurcode = 0;
    FBFR32 *pFmlNULL = NULL;
    userlog("Starting MEMTEST3 service.");
    if (pRequest == NULL || pRequest->data == NULL)
    vLogMessage(hGetLogHandle(), MSG_API_ARGS_ERR_c, NULL, NULL, BM_NOSUPPRESS_c);
    ulRes = MSG_API_ARGS_ERR_c;
    else
    pFml = (FBFR32 *) pRequest->data;
    userlog("MEMTEST3: GET THE MEM");
    ulRes = ulTPAlloc(&pFmlResponse, 1024);
    userlog("Ending MEMTEST3 service.");
    tpreturn( iExitValue, lTpurcode, ( char * ) pFmlResponse , 0L, 0L );
    While I was en-queuing the messages to the queue, I kept on monitoring the memory usage of the server hosting the service. What I observed was that I saw an initial hike in the usage of memory of the server followed by small jumps in memory increase. I kept on monitoring the server for a long time and the memory was never returned. What I suspect is that there is memory leak in tuxedo TMQforward process as it never released the memory allocated in the service.
    Can anyone help how this situation can be avoided ?
    Kind Regards,
    Asim

    Hi Todd,
    Also as well as my previous question, I also found your reply to another user posting something similar at Re: Memory leaks in Tuxedo libraries
    You mention that:
    In general Tuxedo will free anything it allocates, although there are cases where memory is allocated and not freed because:
    +1) it is one time or a fixed number of times allocations that will not continue to grow, and freeing up the memory just before exiting isn't of any benefit.+
    +2) the memory is under Tuxedo's memory management functions where we manage our own look aside lists to provide better buffer allocation performance and again freeing these before process termination is of little benefit.+
    Our code does only issue TPALLOC once and then a TPRETURN - could point (1) of your comment above also be something of concern to us, where we would observe a continuous growth of memory usage?
    I know it may sound like a stupid question but do we need to run our code 20,000 times before memory gets freed?
    Kind Regards,
    Asim

  • Does DPM 2012 R2 with rollup 2 support any version of Windows Server 2003/2008 on Hyper-V?

    We have Hyper-V Hosts with VMs which include Windows 2003/2003R2/2008/2008R2.
    If I we upgrade to DPM 2012 R2 Update Rollup 2, will we be able to backup all those VMs now?   The support matrix (http://technet.microsoft.com/en-us/library/jj860400.aspx)
    still seems to show what is supported by the initial release of DPM 2012 R2, not an updated version for the rollup.
    We currently use DPM 2012 SP1 and Hyper-V hosts using Server 2012.

    Hi,
    This is kind of a loaded question because DPM 2012 R2 never dropped support for protecting Windows 2003/2008 using host level backup.
    However, the support matrix will be updated shortly to include the added support for protecting workloads on Windows 2003 / 2008 using DPM 2012 R2 UR2.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Windows 8.1 client and Windows Server 2003

    Hi we have a Server 2003 domain with XP clients. I now have new PC's with Windows 8.1. I made the PC join the domain. I have given the new Windows 8.1 PC the same network settings like the XP-one it replaces. I can view all the network drives, I can join
    the domain, printing, ... But when I try browsing the internet it doesn't work. I can do a ping to 8.8.8.8 and www.google.com and it answers but when I surf to the internet it won't open any internet page and time-outs. The 2003 domain is one without a dhcp-server
    so all static ip's. I  have attached this PC to our DHCP-network and set the IP-settings to automatic and it can browse the internet. I have given a XP-pc the same network settings and it can browse the internet. How can I solve this?
    Kind regards!

    Hi jhousen1,
    Please provide more information for better analyzation:
    1. What error message do you receive in Internet Explorer?
    2. Do we have any proxy settings configured in group policy?
    Please Check the proxy settings through Internet Options in Windows 8.1, also take a look at the article below:
    What to do when Internet Explorer isn’t working
    http://windows.microsoft.com/en-hk/internet-explorer/ie-crashes-stops-working#ie=ie-11
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • IPlanet 6.0 SP6 compatibility with Oracle 11g Client in Windows server 2003

    Hi All,
    We have issues with our classic ASP application when connecting to Oracle 11g. Our application Database is migrating from oracle 10g to oracle 11g, with oracle 10g we don't have any issues but we are facing issues with Oracle 11g database
    We are running iPlanet-WebServer-Enterprise/6.0SP6. And Chilisoft is Sun ONE ASP 4.0 (formerly known as Chili!Soft ASP) on windows 2003 machine for running ASP application.
    The connection we are trying is
    Provider=OraOLEDB.Oracle; Data Source=xxxx;User Id=xxx;Password=xxx;
    The error we are getting is "OraOLEDB error '80004005' "
    Question: Is iPlanet-WebServer-Enterprise/6.0SP6. And Chilisoft is Sun ONE ASP 4.0 is compatible with Oracle Client 11g in Windows 32 bit machine
    Appreciate your quick response
    Thanks,
    Murthy

    I have the same situation. Could you please share your experience if you resolve it? Thanks.

  • Upgrading windows server 2003 domain controller to windows server 2008

    Hello friedns :
    We have a company with about 2000 users , and two windows server 2003 domain controllers , one of them acts as a primary domain controller , and the other acts as secondary domain controller , all the FSMO s are on the primary DC ,we have decided to upgrade all of our servers from windows server 2003 to windows server 2008 , the first step is to upgrade the domain controllers to windows server 2008 , our domain controllers are so sensitive and has to be active 24 hours a day , i have stress upgrading it to windows server 2008 , what is the best solution to upgrade it with no risk ?
    ( i have an opinion but i am not sure and i dont have any guide about it , i want to install a windows server 2008 and promote it as an additional domain controller to the windows server 2003 DC and the transfer all the FSMOs to it , and then promote the first domain controller !!! is that possible ? if yes , is there any guide about it? )
    If there is a guide available for it please let me know . (Specially if there is a tip & trick)
    thank you guys.
    Network is my LOVE

    Hi,
    This TechNet online article might be helpful for you.
    How to Upgrade Domain Controllers to Windows Server 2008 or Windows Server 2008 R2
    http://technet.microsoft.com/en-us/library/ee522994(WS.10).aspx
    For your convenience, I have list some general steps for your reference.
    Since the following operation have potential damage to Active Directory database, it is highly suggested that you'd better perform a full backup of Active Directory (System State) firstly. Also it is better to test the following procedure in a similar lab environment first.
    General Steps:
    =============
    1. Verify the new server's TCP/IP configuration has been pointed to the current DNS server.
    2. Make the new server become a member server of the current Windows Server 2003 domain first.
    3. Upgrade the Windows Server 2003 forest schema to Windows Server 2008 schema with the "adprep /forestprep" command on old server.
    Please run the "adprep.exe /forestprep" command from the Windows Server 2008 installation disk on the schema master. To do this, insert the Windows Server 2008 installation disk, and then type the following command:
    Drive:\sources\ADPREP\adprep.exe /forestprep
    4. Upgrade the Windows 2003 domain schema with the "adprep /domainprep" command on old server.
    Please run the "adprep.exe /domainprep" command from the Windows Server 2008 installation disk on the infrastructure master. To do this, insert the Windows Server 2008 installation disk, and then type the following command:
    Drive:\sources\ADPREP \adprep.exe /domainprep
    5. Insert Windows Server 2008 Installation Disc in the new server.
    6. Run "dcpromo" on new server to promote it as an additional domain controller in existing Windows 2003 domain, afterwards you may verify the installation of Active Directory.
    Please refer to:
    How to Verify an Active Directory Installation in Windows Server 2003
    http://support.microsoft.com/kb/816106
    7. Verify the new server's TCP/IP configuration has been pointed to current DNS server.
    8. Enable Global Catalog on new server and manually Check Replication Topology and afterwards manually trigger replication (Replicate Now) to synchronize Active Directory database between 2 replicas.
    Please note: It will some time to replicate GC between DC, please wait some time with patience.
    9. Disable Global Catalog on the old DC.
    10. Transfer all the FSMO roles from the old DC to the new DC.
    Please refer to:
    How to view and transfer FSMO roles in Windows Server 2003
    http://support.microsoft.com/kb/324801
    11. Verify that the old DNS Server Zone type is Active Directory-Integrated. If not, please refer to:
    How To: Convert DNS Primary Server to Active Directory Integrated
    http://support.microsoft.com/kb/816101
    Note: Active Directory Integrated-Zone is available only if DNS server is a domain controller.
    12. Install DNS component on new server and configure it as a new DNS Server (Active Directory Integrated-Zone is preferred). All the DNS configuration should be replicated to the new DNS server with Active Directory Replication.
    13. Make all the clients change TCP/IP configuration to point to new server as DNS.
    14. You may configure TCP/IP on all the clients, or adjust DHCP scope settings to make them use the new DNS server.
    Please note: It is a good practice to make the old DC offline for several days and check whether everything works normally with the new server online. If so, you may let the old DC online and run DCPROMO to demote it.
    Hope it helps.
    Regards,
    Wilson Jia
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • How do I add a Mac to a Windows Server 2003 or 2008 domain?

    I recently started working for a public school district that runs Windows Server 2003 and Windows Server 2008 R2. There are several faculty members, myself included, that would like to get their Macs onto the domain and capable of file sharing, printing to network printers, etc. I cannot find decent instructions anywhere. Could someone please point me in the right direction or give me some directions? It would be greatly appreciated. Thanks.

    I'm also new to the MAC world - I trust you were able to join the MAC's to the domain - I finally figured it out. However, I have not been able to get the MAC's to save to the Windows 2008 server where I have student folders setup. Have you been able to do this? If so can share the info with us.
    Thanks,
    Steve
    [email protected]
    Newport School District

  • Windows server 2008 R2 x64 Authentication failure while try to access Windows server 2003 R2

    Hello,
    I try to access Windows Server 2003 R2 Standard from Windows Server 2008 R2 x64 standard using integrated windows authentication . And because my application tries to read SQL server i'm getting and error that user is not trusted. Then I tried to open a
    simple shared folder on  2003 and none of the users is able to do it. Both servers are part of common workgroup in the same IP range. Using domain is not an option. Migrating 2003 to 2008 is not an option either. The specific DB provider I have to use
    supports only windows authentication, so creating user into SQL server is not an option too. I have tested many applications and cases which requires/uses windows authentication and non of the manage to connect.
    Any help is very welcome because things are urgent!
    Authentication failure

    That method in workgroup mode may be a problem.
    Authentication in SQL Server
    Might ask them over here.
    SQL Server forums on
    MSDN
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Connect SQL Server 2012 from Windows Server 2003 with native client 9.0

    Hi,
    I currently have a setup where ETL tool Ab Intio, running on a Linux server, connects to the SQL Server 2005 through a passthrough Wintel server with Windows Server 2003 OS using SQL server native client 9.0
    Now I have the requirement to upgrade the SQL server from 2005 to 2012.
    My question is, will it be possible to connect to SQL server 2012 through Windows Server 2003 with native client 9.0?
    As per the specs, I need native client 11.0+ to fully support SQL Server 2012, but then, as per specs, native client 11.0 doesnot run on Windows server 2003. OS upgradation is currently not on the cards.
    So will it be possible to the run the basic queries we use currently, if we can connect SQL server 2012 through Windows Server 2003 with native client 9.0/10.0, without updgrading the OS of the Wintel server?
    Thanking you in advance! 

    Hi Soumya,
    Yes, you can use the SQL Server Native Client shipped with SQL Server 2005 to connect to a SQL Server 2012 instance, and there is no need to upgrade the operating system.
    Regards,
    Mike Yin
    TechNet Community Support

  • Oracle Client 9.2.0.1 on Windows Server 2003 Web Edition???

    Hi,
    I will install the Oracle Client 9.2.0.1 on
    Windows Server 2003 Web Edition, but when I run the
    setup-program the following error is coming:
    'Windows cannot open this program since it has been disabled.'
    I think the program is suppressed by Microsoft.
    Can anybody help me???
    Thanks,
    Norman

    As Windows 2003 is officially released this week, I believe Oracle will shortly announce which versions of the database will be supported on Windows 2003. Stay tuned.
    Alison

  • Oracle 9i Client Installation for Windows Server 2003

    Hello All,
    How do I install the 9i client on Win Server 2003? I can't find any instructions...
    Is it just download the 2 files and install in that order?
    http://www.oracle.com/technology/software/products/oracle9i/htdocs/win2k3soft.html
    Thanks!
    Message was edited by:
    user517416

    Have you read the doc linked on the page which you gave ?
    http://download-uk.oracle.com/docs/html/B10924_01/toc.htm
    Moreover, you have the documentation installation guide for Windows :
    http://download-west.oracle.com/docs/html/A95493_01/toc.htm
    Nicolas.

  • Migrating From Window Server 2003 to Window Server 2012 for Web server deployment and Developmemt Machine is on Window Server 2008

    Hi Microsoft Team,
    We need your urgent advice and that is also on priority:
    Issue Description: We need to migrate from
    WINDOW SERVER 2003 to WINDOW SERVER 2012 while the development activity will be carried
    under WINDOW SERVER 2008 as DEVELOPMENT BOX.
    .NET Framework Version: 3.5 ( For both DEVLOPMENT(WINDOW SERVER 2008) and WEBSERVER(to WINDOW SERVER 2012))
     IIS Version: 7.5 (For both DEVLOPMENT(WINDOW SERVER 2008) and WEBSERVER(to WINDOW SERVER 2012))
    Need your quick advice Is that configuration feasible for Development and
    Deployment (Web Server).
    Highly appreciate your response as this will depend which product we need to buy also if you feel any showstopper or concern. Please let us know.

    Hi,
    As suggested by Tim, in order to get better assistance, we can ask for help in the following IIS forum.
    IIS Forum
    http://forums.iis.net/
    In addition, regarding migrating from Windows Server 2003 to Windows Server 2012, the following blog can be referred to for more information.
    Step-By-Step: Active Directory Migration from Windows Server 2003 to Windows Server 2012
    http://blogs.technet.com/b/canitpro/archive/2013/05/27/step-by-step-active-directory-migration-from-windows-server-2003-to-windows-server-2012.aspx
    Best regards,
    Frank Shen

  • Failed Windows Server 2003 Enterprise SP2 to Windows 2008 Enterprise OS Upgrade

    Attempted to upgrade the OS on our Primary Domain Controller which is running Windows Server 2003 Enterprise with Service Pack 2 installed on a HP ProLiant DL360 G4P Server with 2GB of ram, 3.2 GHz Processor and 53.2 GB of free space on C.  I took
    the following steps prior to attempting upgrade.
    1. Determined that Server meet the minmum requirements for upgrade.
    2. Installed all Windows Updates.
    3. Uninstalled McAfee Virus Scan Enterprise Application
    4. Backed Up and Imaged Primary Domain Controller.
    5. Tested Domain Replication to ensure Primary and Backup Domain Controllers were communicating with each other.
    6. Set Domain Function Level at Windows Server 2003
    7. Placed ADPREP folder on C:\ on Primary Domain Controller and ran "adprep /forestprep" and "adprep /domainprep" successfully
    8. In the C:\Windowd\System32 renamed the WindowsPowerShell application folder to WindowPowerShell-Old, the application failed the Upgrade compatibility test.
    Loaded the DVD: "Windows Server 2008 for Enterprise, Standard and Datacenter 32bit Edition", ran installation in upgrade mode to preserve existing settings and software.  The Ugrade ran to last step, application install and failed at
    26% complete with the following errror message:
    "Windows installation encountered an error and cannot continue. Your computer will now restart and your previous version of windows will be restored"
    My questions are why did the upgrade fail?  What can we do to ensure the upgrade will succeed next time?
    I have incuded the Setuperr.log below.
    2014-08-24 08:48:27, Error      [0x08081e] MIG    Failed to load manifest at C:\$WINDOWS.~BT\Sources\dlmanifests\errorreportingfaults-dl.man: class UnBCL::XmlException:  hResult = 0x0, Line = 2, Position = 134;
    void __thiscall UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-08-24 08:48:30, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:30, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:30, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:35, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:35, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:35, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:35, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:58, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:58, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:58, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:58, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:58, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:59, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:59, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:59, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:48:59, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:48:59, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:09, Error      [0x08085f] MIG    MigHost: CMigPluginSurrogate::LoadAndRegisterServerInThreadContext: LoadLibraryExW(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, LOAD_WITH_ALTERED_SEARCH_PATH)
    failed gle=0x7f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x080863] MIG    MigHost: CMigPluginSurrogate::COMGenericThreadingHostThreadProc: LoadAndRegisterServerInThreadContext() failed hr=0x8007007f.[gle=0x0000007f]
    2014-08-24 08:49:09, Error      [0x0808ff] MIG    COutOfProcPluginFactory::CreateInstance: m_currentHostSurrogate->LoadDllServer(C:\$WINDOWS.~BT\Sources\dlmanifests\Microsoft-Windows-IE-ESC\EscMigPlugin.dll, {196B9C00-9ECD-11DB-AF15-0014223890F3},
    0) failed, hr=[0x8007007f].
    2014-08-24 08:49:18, Error      [0x08071d] MIG    CDownlevelOCStore::GetOCCollection, Failed to load C:\$WINDOWS.~BT\Sources\dlmanifests\errorreportingfaults-dl.man.: class UnBCL::XmlException:  hResult = 0x0, Line
    = 2, Position = 134; . .
    void __thiscall UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-08-24 08:49:22, Error      [0x08081e] MIG    Failed to load manifest at C:\$WINDOWS.~BT\Sources\dlmanifests\errorreportingfaults-dl.man: class UnBCL::XmlException:  hResult = 0x0, Line = 2, Position = 134;
    void __thiscall UnBCL::XmlDocument::Load(class UnBCL::String *)
    2014-08-24 09:13:05, Error      [0x080792] MIG    COCEventTracing::COCEventTracing Failed to call StartTrace 87.[gle=0x00000057]
    2014-08-24 09:14:26, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\AutoEnrollment [EventMessageFile]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\AutoEnrollment [EventMessageFile]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:26, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\AutoEnrollment [TypesSupported]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\AutoEnrollment [TypesSupported]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:27, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\Tlntsvr [EventMessageFile]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\Application\Tlntsvr [EventMessageFile]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:27, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\DfsSvc [EventMessageFile]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\DfsSvc [EventMessageFile]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:27, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\DfsSvc [TypesSupported]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\DfsSvc [TypesSupported]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:27, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\SCardSvr [EventMessageFile]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\SCardSvr [EventMessageFile]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:14:27, Error      [0x0802b6] MIG    Could not create object: HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\SCardSvr [TypesSupported]. Exception class Mig::Win32ErrorException: Win32ErrorException:
    Error(0), Skip opening registry entry [HKLM\SYSTEM\CurrentControlSet\Services\Eventlog\System\SCardSvr [TypesSupported]], which is protected by WRP..
    void __thiscall Mig::CRegistryDataStore::Create(class Mig::CDataUnit *)
    2014-08-24 09:30:13, Error      [0x060005] IBS    CallBack_StampRequiredDrives:An error occurred while fixing paths on black board GLE is [0x0]
    2014-08-24 09:30:13, Error      [0x064188] IBSLIB RollbackReinitialize: threw exception.: class UnBCL::ArgumentException: Directory "X:\$WINDOWS.~BT\Sources\Rollback" doesn't exists..
    __thiscall OSRollbackService::CCheckpointImpressario::CCheckpointImpressario(const unsigned short *,class OSRollbackService::CCheckpointSequence *,int)
    [gle=0x00000003]
    2014-08-24 09:33:19, Error      [0x0804b3] MIG    CMigWorkingDirHelper::CMigWorkingDirHelper() failed.: class UnBCL::DirectoryNotFoundException: root of directory to create not found.
    class UnBCL::DirectoryInfo *__stdcall UnBCL::Directory::CreateDir(const class UnBCL::String *)
    [gle=0x00000003]
    2014-08-24 09:33:19, Error      [0x0802fa] MIG    MigStartUp caught exception: class UnBCL::DirectoryNotFoundException: root of directory to create not found.
    __thiscall Mig::CMigWorkingDirHelper::CMigWorkingDirHelper(class UnBCL::String *)
    __thiscall Mig::CMigWorkingDirHelper::CMigWorkingDirHelper(class UnBCL::String *)
    class UnBCL::DirectoryInfo *__stdcall UnBCL::Directory::CreateDir(const class UnBCL::String *)
    [gle=0x00000003]

    Hi,
    Here are some limitation of upgrading:
    Upgrading is supported from x86-based and x64-based computers, but cross-architecture upgrades are not supported. 
    Cross-language upgrades are not supported.
    Upgrading from Windows Server 2003 to a Server Core installation of Windows Server 2008 is not supported.
    We cannot upgrade the failover clusters from Windows Server 2003 to Windows Server 2008. Before upgrading, we must uninstall failover clustering.
    For detailed information about Upgrading to Windows Server 2008, please refer to the link below,
    http://technet.microsoft.com/en-us/library/cc755199(v=WS.10).aspx#BKMK_Supported
    Besides, to confirm that it isn't an IO issue, could you please try to copy the DVD to the local disk?
    If error occurs, it may be an IO issue.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Instant Client not working on Windows Server 2003

    Hi everybody,
    I have installed the Instant Client libraries on a machine running Windows Server 2003 in order to connect to a remote Oracle server. I also installed the sqlplus package. I copied them in a local directory, updated the Environment variable PATH and restarted. When I try to execute sqlplus to test if everything works fine, I get the following errors:
    sqlplus user/[email protected]:1521/orcl
    SP2-1503: Unable to initialize Oracle call interface
    SP2-0152: ORACLE may not be functioning properly
    Also, when I try to use PHP OCI8 functions like oci_connect() I get an error like:
    PHP Warning: oci_connect() [function.oci-connect]: OCIEnvNlsCreate() failed. There is something wrong with your system - please check that PATH includes the directory with Oracle Instant Client libraries
    I checked it and the PATH variable points to the instant client libraries.
    Any ideas?
    Thanks in advance!

    I get the following errors: sqlplus user/[email protected]:1521/orcl SP2-1503: Unable to initialize Oracle call interface SP2-0152: ORACLE may not be functioning properly Also, when I try to use PHP OCI8 functions like oci_connect......Like the error suggested, the instant client libraries does not include the Network Service required by SQLPLUS.
    The connect string you are trying to use doesn't work for SQLPLUS. SQLPLUS will need proper TNS names configured.
    In another words, instanct client libraries installation is not enough to use sqlplus. Use Runtime installation or Customized installation.

  • Use Windows Server 2003 or 2008 with BootCamp?Just want to run basic things

    Hey, well I can get a copy of Microsoft Windows Server 2003 and 2008 with the DreamSpark program (as I am in college) for free. But my question is, is this a good idea to use with my MacBook Pro? I wasn't sure how well it'd work with Boot Camp, and all I'd want is to just run basic programs and/or games.
    Is it a good idea? And does anyone have tutorials for how to install it?

    Hi,
    Windows Server 2003 and XP 64-bit share the same codebase and XP-64bit is not supported with BootCamp.
    Windows Server 2008 and Vista 64-bit share the same codebase and Vista 64-bit is only supported with BootCamp on some Macs. See here: http://support.apple.com/kb/HT1846
    For running 'basic' things with the Server versions, why not use one of the Virtualization apps like Parallels, VMWare Fusion or VirtualBox ?
    http://www.parallels.com/products/desktop/
    http://www.vmware.com/products/fusion/
    http://www.virtualbox.org/
    VirtualBox is open-source, so you don't have to pay for it.
    Regards
    Stefan

Maybe you are looking for

  • Send Smartforms Output as pdf Attachment in E-Mail

    Hi! I've searched quite a long time and tried to use different examples I've found in the forum but it doesn't work for me. I tried to do the following: Send output of smartforms by mail to a specified e-mail adress. Sometimes there have to be sent 2

  • Elements Upgrade to Mac

    Good afternoon, I am buying a mac. I have Photoshop Elements 9. I would like to upgrade to V11 but on the mac, can I buy the upgrade version?

  • Preferences Problem

    This one's a little tricky. First some history: After suffering a massive Kernal Panic problem following an upgrade to 10.4.6, I had to reinstall to 10.4.3. I'm afraid to upgrade any further at this time. Since that time, I believe Safari is responsi

  • Terminal: could not open a new pseudo-tty

    Since I upgraded to Leopard my Terminal started to misbehave. Many times when i open it or a new window or just a new tab, all it displays it the message: Could not open a new pseudo-tty. An I cannot type in it or anything. Even if I quit Terminal an

  • Creating a blog in flash

    I am trying to create a blog in flash. I am trying to figure out where to start. I think that what I need to do is convert the text to xml and then php to a mysql database and then back the same way to post it. Is there a way to use loadvars to do th