BPC 7.5 - Cannot create ActiveX component

Hi all,
I am installed BPC 7.5M on win2003x64, 32bit IIS, 32bit MSSQL
when go to http://hostname/OSoft  at server side or client side
it will have following error.
Anyone have any idea? i am new to BPC
thx
John
Event Type:     Warning
Event Source:     ASP.NET 2.0.50727.0
Event Category:     Web Event
Event ID:     1309
Date:          8/19/2010
Time:          2:14:37 PM
User:          N/A
Computer:     hostname
Description:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 8/19/2010 2:14:37 PM
Event time (UTC): 8/19/2010 6:14:37 AM
Event ID: 8292453043e140608735e4750f8d08d8
Event sequence: 34
Event occurrence: 11
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/1/root/OSoft-1-129266712148491238
Trust level: Full
Application Virtual Path: /OSoft
Application Path: D:\Program Files\BPC\Websrvr\Web\
Machine name: hostname
Process information:
Process ID: 9848
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: Exception
Exception message: Cannot create ActiveX component.
Request information:
Request URL: http://hostname/OSoft/Launch.aspx
Request path: /OSoft/Launch.aspx
User host address: IP
User: domain\user
Is authenticated: True
Authentication Type: Basic
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:      Thread ID: 7
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace:    at Microsoft.VisualBasic.Interaction.CreateObject(String ProgId, String ServerName)
   at OSoft.Consumers.ZFP.WebBase.PageBase.InitComLib()
   at OSoft.Consumers.ZFP.WebBase.PageBase.MakeSecurity(String strUserID)
   at OSoft.Consumers.ZFP.WebBase.PageBase.Page_Init(Object sender, EventArgs e)
   at System.EventHandler.Invoke(Object sender, EventArgs e)
   at System.Web.UI.Control.OnInit(EventArgs e)
   at System.Web.UI.Page.OnInit(EventArgs e)
   at OSoft.Consumers.ZFP.WebBase.PageBase.OnInit(EventArgs e)
   at System.Web.UI.Control.InitRecursive(Control namingContainer)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

Hi,
This might be because of:
1. Missing or disabled Osoft.Services.Platform.YukonAdmin.Olap9Manager component from the Component Services>OsoftSQL2005Admin.
2. Installation pre-requisite for Application Server, SQLServer2005_ADOMD.msi  has not been correctly installed or corrupted.
Would suggest you to implement the following:
1. Install the newly installed BPC Application server
2. Reboot Server
3. Install SQLServer2005_ADOMD.msi from Microsoft
4. Reinstall BPC Application Server
5. Reinstall applicable patches
Hope this helps in resolving your issue.
Regards,
Poonam

Similar Messages

  • New installation and SP2 upgrade of 7.5 - Cannot create ActiveX component

    Hi guys,
    New installation (w/ SP2) on 64bit Server 2003. when attempting to reach Http://Server/OSOFT I'm receiving the following error -
    Server Error in '/OSoft' Application.
    Cannot create ActiveX component.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Cannot create ActiveX component.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [Exception: Cannot create ActiveX component.]
       Microsoft.VisualBasic.Interaction.CreateObject(String ProgId, String ServerName) +232
       OSoft.Consumers.ZFP.WebBase.PageBase.GetZFPText(Int32 intID, String strParam1, String strParam2, String strParam3, String strParam4, String strParam5) +422
       OSoft.Launch.Page_Load(Object sender, EventArgs e) +51
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Control.OnLoad(EventArgs e) +67
       System.Web.UI.Control.LoadRecursive() +35
       System.Web.UI.Page.ProcessRequestMain() +731
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    I've tried the following note (which seems very similar to my issue) only relevant to 7. and it did not help.
    1342140 - Cannot create ActiveX Component BPC 7 NW I've restarted the IIS and it did not help.
    Please advise..
    Thank you!

    Hi,
    I had the same problem with my BPC 7 installation yesterday and followed all the proposed solutions in this thread with no luck. When I checked,  the OSoftResSvrZFP_EN.dll was missing - you might be missing this too. Anyway, I solved it by running the BPC 7.0 server installation exe and then selected 'Repair'.
    Regards,
    Danny

  • Cannot create ActiveX component

    So, I've looked all over for an answer for this one and so far, everything I've seen offered as fixes do not work.
    Exception Details: System.Exception: Cannot create ActiveX component.
    Source Error:
    Line 39:
    Line 40:             ' Create Acrobat Application object
    Line 41:             PDFApp = CreateObject("AcroExch.App")
    I have a webserver on which is installed the latest version of Acrobat Standard.
    Here is my code:
    Imports System.Data
    Imports System.Data.SqlClient
    Imports System.Web.Configuration
    Imports System.Data.OleDb
    Imports System.Security
    Imports System.Security.Principal
    Partial Class CodeTest
        Inherits System.Web.UI.Page
        Dim LOGON32_LOGON_INTERACTIVE As Integer = 2
        Dim LOGON32_PROVIDER_DEFAULT As Integer = 0
        Dim impersonationContext As WindowsImpersonationContext
        Declare Function LogonUserA Lib "advapi32.dll" (ByVal lpszUsername As String, _
                                ByVal lpszDomain As String, _
                                ByVal lpszPassword As String, _
                                ByVal dwLogonType As Integer, _
                                ByVal dwLogonProvider As Integer, _
                                ByRef phToken As IntPtr) As Integer
        Declare Auto Function DuplicateToken Lib "advapi32.dll" ( _
                                ByVal ExistingTokenHandle As IntPtr, _
                                ByVal ImpersonationLevel As Integer, _
                                ByRef DuplicateTokenHandle As IntPtr) As Integer
        Declare Auto Function RevertToSelf Lib "advapi32.dll" () As Long
        Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal handle As IntPtr) As Long
        Private Sub savePDFtoTIF(ByVal fullPathPDF As String, ByVal fullPathTIF As String)
            Dim PDFApp As Acrobat.AcroApp
            Dim PDDoc As Acrobat.CAcroPDDoc
            Dim AVDoc As Acrobat.CAcroAVDoc
            Dim JSObj As Object
            If impersonateValidUser("XXXXXXX", "", "XXXXXXXXXX") Then
                ' Create Acrobat Application object
                PDFApp = CreateObject("AcroExch.App")
                ' Create Acrobat Document object
                PDDoc = CreateObject("AcroExch.PDDoc")
                ' Open PDF file
                PDDoc.Open(fullPathPDF)
                ' Create AV doc from PDDoc object
                AVDoc = PDDoc.OpenAVDoc("TempPDF")
                ' Hide Acrobat application so everything is done in silentmode()
                PDFApp.Hide()
                ' Create Javascript bridge object
                JSObj = PDDoc.GetJSObject()
                ' Attempt to save PDF to TIF image file.
                ' SaveAs method syntax .SaveAs( strFilePath, cConvID )
                ' For TIFF output the correct cConvid is
                ' cCovid MUST BE ALL LOWERCASE.
                JSObj.SaveAs(fullPathTIF, "com.adobe.acrobat.tiff")
                PDDoc.Close()
                PDFApp.CloseAllDocs()
                ' Clean up
                System.Runtime.InteropServices.Marshal.ReleaseComObject(JSObj)
                JSObj = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(PDFApp)
                PDFApp = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(PDDoc)
                PDDoc = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(AVDoc)
                AVDoc = Nothing
                undoImpersonation()
            Else
                lblStatus.Text = "Unable to impersonate"
                Exit Sub
            End If
        End Sub
        Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
            savePDFtoTIF("D:\DoH\998.110803030832.pdf", "D:\DoH\Project\000.tif")
        End Sub
        Private Function impersonateValidUser(ByVal userName As String, _
    ByVal domain As String, ByVal password As String) As Boolean
            Dim tempWindowsIdentity As WindowsIdentity
            Dim token As IntPtr = IntPtr.Zero
            Dim tokenDuplicate As IntPtr = IntPtr.Zero
            impersonateValidUser = False
            If RevertToSelf() Then
                If LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, token) <> 0 Then
                    If DuplicateToken(token, 2, tokenDuplicate) <> 0 Then
                        tempWindowsIdentity = New WindowsIdentity(tokenDuplicate)
                        impersonationContext = tempWindowsIdentity.Impersonate()
                        If Not impersonationContext Is Nothing Then
                            impersonateValidUser = True
                        End If
                    End If
                End If
            End If
            If Not tokenDuplicate.Equals(IntPtr.Zero) Then
                CloseHandle(tokenDuplicate)
            End If
            If Not token.Equals(IntPtr.Zero) Then
                CloseHandle(token)
            End If
        End Function
        Private Sub undoImpersonation()
            impersonationContext.Undo()
        End Sub
    End Class
    The impersonation works, as I use the same code on another page where I am manipulating file system objects through that account, with this code. Also, the code without the impersonation, works on my local machine perfectly.
    Any ideas on what to do would be greatly appreciated.
    Justice

    Look, I got dragged into a project that was late from the start, but is a big contract for the printing company that I work for that uses a lot of Adobe products internally for what they do.
    In good faith, I tried to purchase something that would work. I was in a rush and didn't read the entire EULA as I was installing it. Obviously, I wasn't trying to screw the system or I wouldn't have been here, posting about it. I also do not need an education about what is true or false on the internet. I need a solution now that is going to meet the customers needs based on what is provided here. Rather simple, and don't reallly have the time for an entire formalized consultation as to our "business needs", since this is really all we need it for and time is of the essence.
    If the best Adobe can do is publicly slap customers around on forums and throw vague answers out to follow up on, then I guess it's time to seek out other solutions for our business needs.

  • Acrobat - Cannot create ActiveX component

    I'm using Visual Studio 2005 (.Net 2.0) Console Application to interact with Acrobat 9.  I'm trying to open an existing PDF and Save as TIFF (using the JSObj = PDDoc.GetJSObject() and JSObj.SaveAs()).  On the development computer with Acrobat 9.1.3 installed it works fine.  If I move the executable to my colleague's development machine (Acrobat 9.2) the code throws error: Cannot create ActiveX component.  The Interop.Acrobat.dll resides in the same folder as the .Net exe.  Last month, this worked fine on my collleague's computer.  What has changed on his computer to prevent the ActiveX component from launching?  Below is the code snippet.  Other info: Acrobat 9.2 is the only Adobe app installed on the destination computer.
    Any ideas would be helpful.
    Dim PDFApp As Acrobat.AcroApp
    Dim PDDoc As Acrobat.CAcroPDDoc
    Dim AVDoc As Acrobat.CAcroAVDoc
    Dim JSObj As Object
    Try
      ' Create Acrobat Application object
      PDFApp = CreateObject("AcroExch.App")
      ' Create Acrobat Document object
      PDDoc = CreateObject("AcroExch.PDDoc")

    Just realized I replied to my own message...
    The repair did not work.
    Notes:
    ===============================================================
    - When I open the Acrobat UI with a PDF and then Save as TIFF, it works great.
    - Event Viewer: System Error: The server {85DE1C45-2C66-101B-B02E-04021C009402} did not register with DCOM within the required timeout.  I checked this ClsID in the Registry and it's the PDFShellInfo Class ("C:\Program Files\Adobe\Acrobat 9.0\Acrobat\AcrobatInfo.exe" /PDFShell).
    Should I uninstall Acrobat and re-install?  I'm at wits end...
    Thanks in advance.

  • Cannot Create ActiveX Componet

    Hi,
    I have installed FDM and want to configure shared services i.e. in load balance manager,while entering user credentials I am getting the error as 'Cannot Create ActiveX Component'.
    What could be the error,please advise.
    Thanks.

    It's very likely a permissions issue. Web applications run under least privilege accounts and as a result may not be configured for access to Microsoft Office apps.
    The bigger problem is that server-side Office Automation is not supported by Microsoft because of threading limitations in the apps.
    Considerations for server-side Automation of Office
    Paul ~~~~ Microsoft MVP (Visual Basic)

  • Can i create activex component of AcroExch.PDDoc in Adpbe 9.0 version

    I tried to create obeject of AcroExch.PDDoc in my application where ia have Adobe reader 8.0 installed on my machine.
    So can the problem will be solved if i will install Adobe 9.0 on my machine.
    Thanks in advance for any suggestion..

    You can use this activex component when you install Adobe Acrobat, not Adobe Reader.

  • BPC "The system cannot create the journal template"

    I am trying to create a Journal template in BPC but whatever I do I get the error message "The system cannot create the journal template"
    I am running BPC 5.1 and have tried with service pack 1 and now with service pack 5 installed. The system is on SQL Server 2000.
    Has anyone come past this problem?

    Hi Andy,
    Please check how many sheets are in a default excel workbook on your client. If less than three, BPC fails to create the journal template. If that's the case, try setting default number of worksheets to 3, then retry journal template creation.
    If the above is not the issue, then you'll have to check that reporting services is working correctly. As a first step, go to http://<app server name>/reportserver (or reportserver$<instancename> if you are using a reporting services instance and left it with the default name)
    If that page compiles and shows without error, then try http://<app server name>/ reports (or reports$<instance name>) If that one also compiles/doesn't give errors, then reporting services is working.

  • Can not create ActiveX

    Hi,
      After launching BPC5.1, i tried to connect to BPC for Administration. I received a system error : " The system encountered an error and cannot proceed. Please select the Back button and try again. If the problem persists, contact your administrator. Job name : http://<ip address>/osoft/clientsupport.aspx, Detail: EvErr:UserService.GetParentList; Cannot create ActiveX component.
      Any idea, anybody?
      Thanks in advance for your help.
    Cheers

    what i failed to mention is that another basis person changed the administrator password, and according to the master and installation guide: if you change the password used to install bpc, you must reset the sql, application server and web server passwords as well. to do this, go to server manager on the application server and select server > reset logon credentials.
    problem solved.

  • Remote control using DCOM: Error: "ActiveX component cannot be created."

    Hello,
    I want to address a OMICRON CPC100 device via remote control. I have a dll ("TESTCONTROL.dll"), which provides methods to control the CPC100. In order to encapsulate this functionality, I've written a VB.NET-dll ("CLC_CL_for_Net.dll") (it's a class-dll) which calls methods of TESTCONTROL.dll. Now I want to use CLC_CL_for_Net.dll in LabVIEW.
    Here's the code of CLC_CL_for_Net.dll:
    Imports TESTCONTROLLib
    Namespace MyCPCNamespace
        Public Class CPCClass
            Public Sub New()
            End Sub
            Public Sub testfunction(ByVal ipaddress As String)
                Dim tc As TestProcedure
                Dim atm As IATMTest
                tc = CreateObject("TestControl.TestProcedure", ipaddress)   '<-- here the error occurs!
                atm = CreateObject("TestControl.ATMTest", ipaddress)
                atm.Activate(300, 10, 1)
                atm.Deactivate()
            End Sub
        End Class
    End Namespace
    In order to enable DCOM on my computer, I did the following:
    - I switched the firewall off.
    - I started "dcomcnfg.exe", chose "Component Services/Computers/My Computer -> Properties" and checked the checkbox "Enable Distributed COM on this computer".
    - I also chose the tab "My Computer Properties/COM Security" and allowed everyone full access and launch
    permissions.
    - I created an exe-file from my LabVIEW VI, which uses the dll, with the help of the LabVIEW Application Builder.
    For this exe-file and also for the TESTCONTROL, I set the authentication level to "None".
    For test purposes, I used my dll in a C++ project. There everything works fine. However, when I try to use the dll
    in LabVIEW (using LabVIEW's .NET constructor node and method node, which you can find under Connectivity -> .NET), the program fails at the line "tc = CreateObject("TestControl.TestProcedure", ipAddress)".
    Here the error message displayed by LabVIEW (I translated it from German into English):
    "Error 1172 has occurred at Error calling method CLC_CL_for_Net.MyCPCNamespace.CPCClass.testfunction of ObjectId
    handle: 0x2BB117C for obj 0x3F19E1D[CLC_CL_for_Net.MyCPCNamespace.CPCClass] in domain [LabVIEW Domain for Run] and
    thread 3792, (System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
     Inner Exception: System.Exception: The ActiveX component cannot be created.
    ) in CPC100_RemoteControlVI.vi"
    As the dll works when I use it in the C++ project, I don't understand why this error occurs when I use the dll in
    LabVIEW. Do I have to give LabVIEW any special permissions?
    Can anyone help me to solve this problem? Thanks a lot for your efforts!
    Regards,
    Matthias

    Hi Matthias,
    I am not really familiar with .NET assemblies but I found couple informations on your error :
    First of all, about the Error 1172 in LabVIEW, there is two things to proof:
    Ensure that the .NET assemblies that you are using are saved in the root directory of the top-level VI.
    Add the .NET assembly as a reference in LabVIEW by selecting Tools»Advanced»NET Assembly References. Click the Add button and navigate to the location of all the assemblies that you want to call.
    Those two steps sometimes solve Error 1172 related problems. I also found some information about the "ActiveX component cannot be created" error. A .Net Class library needs to be in a COM wrapper in order for it to be called through COM methods, such as ActiveX. The way to do so is:
    1. Create a new .NET Class Library project.
    2. Remove the Class1.vb that is created.
    3. Click Add Class on your project.
    4. Choose "COM Class", and add it.
    5. Add at least 1 function or sub in it.
    6. Compile it, and Visual Studio should registrer it automaticly.
    If you whish to manuall reg it, or create a registry entry file, use "RegAsm.exe" in the .NET Framework folder.
    I hope this could be any helpful to you
    Regards
    Florian Abry
    Application Engineer Group Leader
    NI Germany

  • BPC V7 Install process the dimension error "ActiveX component can't create"

    All,
    We are installing BPC v7 M on SQL 2008.
    We have split server Install. We have installed everything as advised by the install guide.
    The install for V7 was successful. We can Modified all the app with in the appset. The server manager has all Green checkes.
    But wen we process the dimension we get ActiveX component can't create objectObject variable or With block variable not set error.
    I have seen this post as well - Re: BPC migration to 7.0
    We have make sure our secuirty to the database is working.
    We have make sure the xceedzip.dll is in the correct folder.
    We can also have installed BPC clinet and Admin few times and re started the server fre times.
    Can any one help? any other suggestion?
    thanks
    Sam
    Edited by: Sam Patel on Nov 4, 2009 5:59 PM

    nilanjan chatterjee, Sorin,
    Thanks for helping, As stated The Microsoft SQL Server 2005 Backward Compatibility Components on Microsoft SQL Server 2008 Feature Pack was not installed on app server and causing the problem.
    I have installed that patch on APP server and all is working.
    Points are awarded.
    Sam
    Edited by: Sam Patel on Nov 5, 2009 10:58 PM
    Edited by: Sam Patel on Nov 5, 2009 10:59 PM

  • Acrobat 9 - AcroExch.PDDoc - ActiveX component can't create object

    For opening a PDF file, I used following statement in VB6 :
    Set AcroFirstDoc = CreateObject("AcroExch.PDDoc")
    but it failed, with error "429- ActiveX component can't create object"
    I was searching for solution. I found one link -
    http://www.bigresource.com/Tracker/Track-vb-oY6Wgt9R/
    Is this true?
    What could be the problem? I need urgent help.
    Thanks

    If you want it 
    to continue working after you log off you have to change the COM+ properties 
    of the package to run as a specific user. 
    I recently installed the Evaluation edition of BizTalk Server, but am 
    finding 
    that I need to reinstall the software every time I log off(I am using the 
    same 
    logon throughout). 
    The problem I think is that BizTalk cannot start the XLANG Scheduler COM+ 
    component - If I try to start it manually (in Component Services) I get 
    "Catalog 
    Error: Error Code 80080005 - Server Execution Failed" 
    more info: http://www.programd.com/118_4e0323a255219dd1_1.htm
    If I try to run the XLANG Schedule created in the Tutorial, via 
    ExecuteTutorial.exe, the error message is "...ActiveX Component can't create 
    object. Error: 429 (0x1AD)" 
    BizTalk is unable to run any XLANG Schedule, I also have a Schedule setup 
    which 
    is activated via a File Receive Function. This fails also. 
    The System Log reports the following error every minute (at least!): 
    "The server{bla bla bla}did not register with DCOM within the required 
    timeout" 
    The only solution I have found is to reinstall & even this is not successful 
    every time. 
    Has anyone else seen this problem? Any suggestions? 

  • Urgent:eror:ActiveX component can't create object:fdmFM11xG5C.clsFMAdapter

    Hi All,
    I get the following error :
    Error: ActiveX component can't create object: 'fdmFM11xG5C.clsFMAdapter'
    At Line: 45
    while trying to map a target FM account
    I have used the following adapter fdmFM11xG5C for registering.
    I have registered the adapter using the given documentation still things are not working the same.
    FDM and HFM are installed on two different machines.
    I have also referred to an earlier forum which had the same issue.
    Kindly let me know what to do here.
    Edited by: user12276446 on Jun 27, 2010 11:52 PM

    Create a domain user which has administrator access in both machines. (creating a local user with same name and password in both machines may NOT solve the issue).
    Make sure the that the user is added to the Administrators group. The minimum required rights additionally are:
    Act as part of the Operating System
    LogOn as a batch job
    Access this computer from the network
    For FDM Task manager: LogOn as a Service
    Additionally, check the following two options under Security Options
    DCOM: Machine Access Restrictions
    DCOM: Launch Restrictions
    Mine worked with both these as blank. If you cannot remove them, delete the content of the registry keys (not the keys): MachineAccessRestriction & MachineLaunchRestriction under HKLM\Software\Policies\WindowsNT\DCOM
    Configure HFM DCOM (with the EPM config) using this domain account
    Configure the FDM adapter with this user
    You may have to configure the IIS application pool with this user as well.
    Make sure that this user has rights to the file system where things are installed.
    + the users running the IIS web apps must also have access to the file system (better to add them to the group Users)
    ~
    Sayantan

  • CreateObject - ActiveX component can't create object

    hi
    I have installed Crystal Reports 2008 Version 12.0.0.683 and Crystal Reports 2008 Runtime (CRRuntime_12_0_mlb.msi)!
    I create a VBS Script test.vbs with the following content:
    ' Export to PDF with VB-Script:
    Dim Application, Report
    Set Application = CreateObject("CrystalRuntime.Application.12")
    Set Report = Application.OpenReport("C:\Bericht.rpt")
    Report.ExportOptions.FormatType = 31 ' crEFTPortableDocFormat
    Report.ExportOptions.DestinationType = 1 ' crEDTDiskFile
    Report.ExportOptions.PDFExportAllPages = True
    Report.ExportOptions.DiskFileName = "C:\Bericht.pdf"
    Report.Export (False)
    The error message displays:
    ActiveX component can't create object: 'CrystalRuntime.Application.12''
    Whats wrong with Crystal Reports?

    Yes and No....
    You cannot use VBS to run Crystal Reports as you could in earlier versions. You have to write your app in Visuak Studio .NET and use Crystal Reports .NET Assemblies.
    See these sample app's for more info:
    Root Page
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsHome
    Enterprise Samples (including managed and unmanaged ras)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications
    Non-Enterprise Samples
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsSDKSampleApplications
    Exporting Samples (RAS)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Thank you
    Don

  • ActiveX component can't create object: 'MSSOAP.SoapClient30'

    Dear All,
         After updated the portal form 6.0 to 7.0 ,when I bit the web page entry ,the error:"ActiveX component 'scan't create object: 'MSSOAP.SoapClient30' " appear.But in version 6.0 ,it's fine.
    What could be the problem? How to resolve this.
    Regards,
    Richard Lee

    If you want it 
    to continue working after you log off you have to change the COM+ properties 
    of the package to run as a specific user. 
    I recently installed the Evaluation edition of BizTalk Server, but am 
    finding 
    that I need to reinstall the software every time I log off(I am using the 
    same 
    logon throughout). 
    The problem I think is that BizTalk cannot start the XLANG Scheduler COM+ 
    component - If I try to start it manually (in Component Services) I get 
    "Catalog 
    Error: Error Code 80080005 - Server Execution Failed" 
    more info: http://www.programd.com/118_4e0323a255219dd1_1.htm
    If I try to run the XLANG Schedule created in the Tutorial, via 
    ExecuteTutorial.exe, the error message is "...ActiveX Component can't create 
    object. Error: 429 (0x1AD)" 
    BizTalk is unable to run any XLANG Schedule, I also have a Schedule setup 
    which 
    is activated via a File Receive Function. This fails also. 
    The System Log reports the following error every minute (at least!): 
    "The server{bla bla bla}did not register with DCOM within the required 
    timeout" 
    The only solution I have found is to reinstall & even this is not successful 
    every time. 
    Has anyone else seen this problem? Any suggestions? 

  • Crystal Report Addon Error : ActiveX Component Can't Create Object

    Hello Experts,
    We are facing an problem when we start the Crystal Report Addon .The error message getting
    displayed is  "CR_Crypto ActiveX Component Can't Create Object".This issue is happening only on the
    server its working fine on the client. We had even unistalled and re-installed the addon in the server but
    still it throws the error when we start the addon.
    Please help us to resolve this issue
    Thanks,
    Vishwanath

    Dear Friend,
                 I had described the problem to our technical support team, and they replied as follows u2013
    They solved the Script related error by several stages.
    They checked the machine for any mal-ware existence by the tool provided by Microsoft (MS Mal-ware remover).
    Then they tried by installing the following patches from Microsoft u2013
    http://support.microsoft.com/kb/949140
    Windows Script 5.7 for Windows XP
    http://www.microsoft.com/downloads/details.aspx?familyid=887fce82-e3f5-4289-a5e3-6cbb818623aa&displaylang=en
    Windows Script 5.6 for Windows Server 2003
    http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAA&displaylang=en
    Windows Script 5.6 for Windows XP and Windows 2000
    The internal matter to this problem was about the following DLL and its version u2013
    C:\WINDOWS\system32
    vbscript.dll
    5.5.0.8820
    Desired
    5.6.0.8820
    Check, if the information helps you.

Maybe you are looking for

  • Macbook Pro Decision

    Having just received my refund on a 2011 15" Macbook Pro BTO and 27" Cinema Display (which were to replace my aging 2006 iMac 24" with 20" Cinema Display), I'm now back in analysis paralysis based on my experiences with said laptop. I used the comput

  • Missing Menu bar in InDesign 5.5

    Help! My menu bar has disappeared in Indesign and looks like it has happened to others too. Please advise how I can get it back. I have a catalog I am working on and need the menu bar. Thank you.

  • MacWord BASIC help, please!  Creating folders (finding the "home folder")

    I am new to Mac, but not to Word.  Where is the "home folder" and how do I create a folder to hold Word documents I've named and saved?  

  • SOS:Booking the course with activity allocation error

    hi,everyone:   when we  booking the course with activity allocation appear error message: Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC Except.                CX_SY_OPEN_SQL_DB Date and Time          2007.07.04 09:39:57 Short text     The ABAP/4

  • InDesign CS3 Workflow Question for a Playbill?

    Hi guys, I am designing a playbill in InDesign CS3. The cover of the playbill is of a different stock than the interior pages. Should I create an InDesign book with the cover and the interior pages as a separate document, or keep them as one? The pag