Dasylab runtime: unknown module

Hallo!
I need help with my Dasylab. I Use Dasylab on Win 7 and Win XP. The full version works fine.
Now we have an Runtime version for our customer. When I try to open the prebuild worksheet I get an errormessage that there are unknown moules in the sheet. That modules are circular buffer, writing and reading global variables.
I can only open the sheet, but it is not possible to run the sheet.
Can anyone help?
Thanks a lot and have a nice day.
Dominik Hilbrich
Solved!
Go to Solution.

Hi,
You will need to contact your DASYLab reseller directly to resolve this. The DASYLab Runtime needs to be correctly configured to include the additional modules from the AddOn Signal Analysis toolkit. These features are included in DASYLab Pro, but might have been purchased as an add-on.
In the US, we make the DASYLab Runtime code to include all DASYLab Pro features, but if you purchased it through a reseller outside of the US, you might have received a Runtime that was configured differently - it depends on the reseller.
If you want to private message your DASYLab serial number to me, I can look it up. Don't post it here - use the private message feature. 
- cj
Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

Similar Messages

  • A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.

    Hiii...
    I was doing FacebookIntegration App.Trying it from many dayss...Can anybody please help me with the below error.It was raising in FacebookLoginPage....
    A first chance exception of type 'System.IO.FileLoadException' occurred in Unknown Module.
    My code is
    namespace tori.Pages
        public partial class FacebookLoginPage : PhoneApplicationPage
               public FacebookLoginPage()
                InitializeComponent();
                this.Loaded += FacebookLoginPage_Loaded;
            async void FacebookLoginPage_Loaded(object sender, RoutedEventArgs e)
                if (!App.isAuthenticated)
                    App.isAuthenticated = true;
                    await Authenticate();
            private FacebookSession session;
            private async Task Authenticate()
                string message = String.Empty;
                try
                    session = await App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
                    App.AccessToken = session.AccessToken;
                    App.FacebookId = session.FacebookId;
                    Dispatcher.BeginInvoke(() => NavigationService.Navigate(new Uri("/Pages/LandingPage.xaml", UriKind.Relative)));
                catch (InvalidOperationException e)
                    message = "Login failed! Exception details: " + e.Message;
                    MessageBox.Show(message);
        While I was debugging error was raising in this line 
    App.FacebookSessionClient.LoginAsync("user_about_me,read_stream,publish_stream,publish_actions");
    While running the App in device I was getting the above error.
    And while running the app in emulator I was facing the below error
    A first chance exception of type 'System.TypeLoadException' occurred in System.Windows.dll
    Additional information: File or assembly name 'System.Threading.Tasks, Version=1.5.10.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A', or one of its dependencies, was not found.
    I am unable to understand what to solve and which is the reason also.
    Can anybody please help me in rectifying it...
    Many Thanks in advance..

    Hi venukoti,
    Are you using Facebook SDK for helping with feature implementation?
    Looks like your app does not have dependencies installed. Please try to re-install the Facebook SDK to see if the same thing happens.
    I would recommend you ask Facebook:
    http://facebooksdk.net/docs/windows/ also
    https://developers.facebook.com/tools-and-support/ for more sufficient suggestions.
    Thanks for your understanding.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deploy trouble - unknown module type

    Hi Folks,
    I am trying to deploy an EAR file to WLS 6.1. The structure of the ear file
    is:
    my-ejb.jar
    lib/my-java1.jar
    lib/my-java2.jar
    meta-inf/application.xml
    .....the application.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE
    Application 1.2//EN' 'http://java.sun.com/j2ee/dtds/application_1_2.dtd'>
    <application>
    <display-name>My App</display-name>
    <module>
    <ejb>my-ejb.jar</ejb>
    </module>
    <module>
    <java>lib/my-java1.jar</java>
    </module>
    <module>
    <java>lib/my-java2.jar</java>
    </module>
    </application>
    .....and the manifest.mf file in my-ejb.jar is:
    Manifest-Version: 1.0
    Created-By: Ant 1.4.1
    Class-Path: lib/my-java1.jar lib/my-java2.jar
    .....BUT I'm getting this error when deploying:
    Error initializing module lib/my-java1.jar of application
    examples:Name=my_deploy,Type=Application from path
    C:\bea\wlserver6.1\config\examples\applications\my_deploy.ear:
    weblogic.management.DeploymentException: unknown module type:
    weblogic.j2ee.dd.JavaModuleDescriptor>weblogic.management.DeploymentExceptio
    n: unknown module type: weblogic.j2ee.dd.JavaModuleDescriptor
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:830)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:525
    at weblogic.management.mbeans.custom.Application.load(Application.java:384)
    Can anyone help please?!
    Thanks

    For some strange reason WebLogic doesn't recognize java modules and throws
    this exception. Anyway, java modules are client application module, not
    utility libraries - just remove them from application.xml. Class-Path: in
    the EJB manifest is enough.
    Roger Berlandier <[email protected]> wrote:
    Hi Folks,
    I am trying to deploy an EAR file to WLS 6.1. The structure of the ear file
    is:
    my-ejb.jar
    lib/my-java1.jar
    lib/my-java2.jar
    meta-inf/application.xml
    .....the application.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE
    Application 1.2//EN' 'http://java.sun.com/j2ee/dtds/application_1_2.dtd'>
    <application>
    <display-name>My App</display-name>
    <module>
    <ejb>my-ejb.jar</ejb>
    </module>
    <module>
    <java>lib/my-java1.jar</java>
    </module>
    <module>
    <java>lib/my-java2.jar</java>
    </module>
    </application>
    .....and the manifest.mf file in my-ejb.jar is:
    Manifest-Version: 1.0
    Created-By: Ant 1.4.1
    Class-Path: lib/my-java1.jar lib/my-java2.jar
    .....BUT I'm getting this error when deploying:
    Error initializing module lib/my-java1.jar of application
    examples:Name=my_deploy,Type=Application from path
    C:\bea\wlserver6.1\config\examples\applications\my_deploy.ear:
    weblogic.management.DeploymentException: unknown module type:
    weblogic.j2ee.dd.JavaModuleDescriptor>weblogic.management.DeploymentExceptio
    n: unknown module type: weblogic.j2ee.dd.JavaModuleDescriptor
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:830)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:525
    at weblogic.management.mbeans.custom.Application.load(Application.java:384)
    Can anyone help please?!
    Thanks--
    Dimitri

  • Why use com.bea.wlw.runtime.descriptor.module.ConfigModuleFactory?

    What is the use of the module com.bea.wlw.runtime.descriptor.module.ConfigModuleFactory?
    What is the purpose of wlw-system.jar?
    How does the following work in weblogic-extension.xml
    <module-provider>
    <name>wlw-runtime-config</name>
    <module-factory-class-name>com.bea.wlw.runtime.descriptor.module.ConfigModuleFactory</module-factory-class-name>
    </module-provider>
    Someone please answer.

    These look like they are from the deprecated and I believe retired BEA Workshop framework in older releases of WLS such as 8.1 and probably still needed by code written for that deprecated framework. It looks like you're already seen this thread that hint that this may not be supported beyond 10.3.1:
    Re: <BEA-149205> Error

  • Looking for a VISA Runtime Merge Module

    I am building an installer with install shield. I have been able to find a LabVIEW Runtime Merge Module and that seems to work great. But, I need one for the VISA RunTime.

    You can download the VISA RunTime Engine from NI's website ( click here ) and have your installer also install the RunTime engine. This link will take you to an NI Knowledge Base which describes how to do this.
    J.R. Allen

  • Deploying Crystal Reports runtime using merge module failed

    Hi,
    I am having a problem when deploying Crystal Reports using merge module runtime, included into MS Visual Studio web setup project, when installing my *.msi with CR runtime on a completely clean PC (with only MS Windows installed). Error: Failed to register one of the Crystal Reportsu2019 *.dll because it could not find Microsoft visual C++ runtime (msvcr71.dll was not in Windows\System32 folder)
    I am using Crystal Reports runtime merge modules, which I downloaded from here: https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    I tried both cr120_mm.zip (Crystal Reports 2008) and cr121_mm.zip (Crystal Reports 2008 SP1)
    cr120 could not find msvcr71.dll, cr121 could not find msvcp80.dll.
    Steps to reproduce:
    -          In MS Visual Studio 2008 create a new empty Web Setup Project.
    -          Add Crystal Reports merge module CRRuntime_12_0.msm or CRRuntime_12_1.msm
    -          Build *.msi
    -          Try to install this *.msi on a completely clean PC. I tried it on Windows Server 2003 R2 SP3, which did not have msvcr71.dll or msvcp80.dll files in C:\Windows\System32 or in any other PATH folders.
    -          During installation there is an error u2013 failed to register one of the Crystal Reportsu2019 *.dll
    I am looking forward to hear from you.
    Thank you.

    I believe these threads have the answer for you:
    https://forums.sdn.sap.com/click.jspa?searchID=19475295&messageID=6558989
    https://forums.sdn.sap.com/click.jspa?searchID=19475295&messageID=6559113
    Ludek

  • Crystal 11.5 runtime deployment required merged modules and minimum size

    I have some deployment restrictions. The 11.5 runtime merged modules are about 80mb, which is very large for use.
    1. Are all merged modules required? It seems as if not all of them are needed. Can I get a list of the required ones?
    2. Is there anyway to minimize the deployment? Either through the msmu2019s or by breaking them apart?
    Any help is appreciated!

    Hi, John;
    The only supported method of deploying our runtime files is to use the merge modules. All of them are required, except for the Mapping merge module, which would only be used if you are using the Mapping feature.
    There is no way to decrease the size of the deployment.
    Best Regards,
    Jonathan

  • Dasylab v12 - E-Mail Module

    Hi,
    In the scope of a continous and long term measurement, I would like to use Dasylab E-Mail module to send regularly an email (once a week) by SMTP method with the current status of my mesurements... I have already found some old  discussions about E-Mail module and I didn't have my answer. I think it's not possible with Gmail and my test doesn't work (e-mail serveur smtp.gmail.com / e-mail port 567, error message: the e-mail coulnd not be sent. The actual sending has caused an error). Which email server can I use ? Is there a possibility to get a status to push directly in the e-mail content ?
    Thank you in advance and best regards,

    Using SMTP requires that the sending PC is member of a company network.
    Then the "SMTP server" option in DASYLab is the IP address in the local network, e.g. 192.168.1.10 (I am not sure, if an alias like \\Betelgeuse-Mail will work).
    M.Sc. Holger Wons | measX GmbH&Co. KG, Mönchengladbach, Germany | DASYLab, DIAdem, LabView --- Support, Projects, Training | Platinum National Instrument Alliance Partner | www.measx.com

  • How to Test Adapter Module in NWDS

    Hi Friends,
    I have written an adapter module. Before deploying on adapter engine, I want to do test in NWDS. Any idea how to do this. Please provide sample java code, if possible.
    Thanks,
    Sandeep Maurya

    Hi,
    Since runtime and module processor framework is not available on your local machine that's why adapter module test not possible using NWDS on local machine.
    Another possibility is to install PCK on some local machine for testing purpose.
    You must deploy (either on PCK or AE) it and test.
    Regards,
    Gourav

  • Java Module in EAR results in DeploymentException

    I'm trying to deploy an ear containing ejb jar files, third-party jar files,
    and war files and I get the following error:
    <Oct 17, 2001 3:41:53 PM GMT-08:00> <Error> <Management> <Error initializing
    module log4j.jar of application mydomain:Name=frontier-1,Type=Application
    from path ./config/mydomain/applications/frontier.ear:
    weblogic.management.DeploymentException: unknown module type:
    weblogic.j2ee.dd.JavaModuleDescriptor>
    The dtd for the application xml document as described here
    http://e-docs.bea.com/wls/docs61/programming/app_xml.html#1010332 says that
    a module may have a java element, however the exception message above seems
    to indicate it it not supported?
    Help please!
    Jon Wilmoth
    Software Architect
    eSage Group
    (206) 264-5675 (Voice & Fax)
    [email protected]
    http://www.esagegroup.com

    After opening a support case with BEA, I found out that the recommended way
    to resolve class loader dependencies is to use the "Class-Path" attribute in
    the archive's manifest file. Also the classloaders are supposed to resolve
    dependencies uniquely and cumulatively. That is to say if I had 3 jar files
    (A,B,C), two with log4j.jar as values for the Class-Path manifest attribute
    and dependencies amongst all three as shown below, the resulting classpath
    would be :
    B.jar : log4j.jar : C.jar : A.jar
    A's manifest:
    Class-Path: B.jar log4j.jar
    B's manifest:
    Class-Path: C.jar
    C's manifest:
    Class-Path: A.jar log4j.jar
    More info about the manifest and how extensions work is available here
    (http://java.sun.com/docs/books/tutorial/jar/basics/manifest.html#download).
    Hope this helps!
    Jon
    Jon Wilmoth
    Software Architect
    eSage Group
    (206) 264-5675 (Voice & Fax)
    [email protected]
    http://www.esagegroup.com
    "Robert Patrick" <[email protected]> wrote in message
    news:[email protected]..
    Looks like a bug to me... Please send this to [email protected]
    Jon Wilmoth wrote:
    I'm trying to deploy an ear containing ejb jar files, third-party jar
    files,
    and war files and I get the following error:
    <Oct 17, 2001 3:41:53 PM GMT-08:00> <Error> <Management> <Errorinitializing
    module log4j.jar of applicationmydomain:Name=frontier-1,Type=Application
    from path ./config/mydomain/applications/frontier.ear:
    weblogic.management.DeploymentException: unknown module type:
    weblogic.j2ee.dd.JavaModuleDescriptor>
    The dtd for the application xml document as described here
    http://e-docs.bea.com/wls/docs61/programming/app_xml.html#1010332 says
    that
    a module may have a java element, however the exception message aboveseems
    to indicate it it not supported?
    Help please!
    Jon Wilmoth
    Software Architect
    eSage Group
    (206) 264-5675 (Voice & Fax)
    [email protected]
    http://www.esagegroup.com

  • Custom login module

    hi,
    I'm would like to configure a custom authentication module between OIM, JBOSS and AD.
    I try to use the LdapLoginModule from JBOSS.
    Add in xlconfig.xml :
    <login-module>
    <thirdPartyLoginModule>org.jboss.security.auth.spi.LdapLoginModule</thirdPartyLoginModule>
    </login-module>
    Change in login-config.xml :
    <application-policy name = "xellerate">
         <authentication>          
              <login-module code="org.jboss.security.auth.spi.LdapLoginModule" flag="required">
                   <module-option name="java.naming.factory.initial">com.sun.jndi.ldap.LdapCtxFactory</module-option>
                   <module-option name="java.naming.provider.url">ldap://XXXX:389</module-option>
                   <module-option name="principalDNPrefix">XXXX</module-option>
                   <module-option name="principalDNSuffix">XXXX</module-option>
                   <module-option name="java.naming.security.principal">XXXX</module-option>
                   <module-option name="java.naming.security.credentials">XXXX</module-option>
                   <module-option name="rolesCtxDN">XXXX</module-option>
                   <module-option name="uidAttributeID">XXXX</module-option>
              <module-option name="matchOnUserDN">XXXX</module-option>
              <module-option name="roleAttributeID">XXXX</module-option>
              <module-option name="roleAttributeIsDN">XXXX</module-option>
              <module-option name="searchTimeLimit">XXXX</module-option>
              <module-option name="searchScope">XXXX</module-option>
              <module-option name="allowEmptyPasswords">XXXX</module-option>
              </login-module>
         </authentication>
    </application-policy>
    There is an Error when I try to login on OIM.
    Server.log :
    TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Begin getAppConfigurationEntry(xellerate), size=9
    TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] End getAppConfigurationEntry(xellerate), authInfo=AppConfigurationEntry[]:
    [0]
    LoginModule Class: org.jboss.security.auth.spi.LdapLoginModule
    ControlFlag: Anmeldemodul-Steuerflag: required
    Options:name=uidAttributeID, value=member
    name=matchOnUserDN, value=true
    name=rolesCtxDN, value=XXXXX
    name=principalDNPrefix, value=XXXXX
    name=principalDNSuffix, value=XXXXX
    name=java.naming.factory.initial, value=com.sun.jndi.ldap.LdapCtxFactory
    name=java.naming.security.credentials, value=XXXXX
    name=allowEmptyPasswords, value=false
    name=java.naming.provider.url, value=XXXXX
    name=java.naming.security.principal, value=XXXXX
    name=searchTimeLimit, value=5000
    name=roleAttributeIsDN, value=false
    name=searchScope, value=ONELEVEL_SCOPE
    name=roleAttributeID, value=XXXXX
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] initialize, instance=@6460623
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Security domain: xellerate
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] login
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Logging into LDAP server, env={java.naming.factory.initial=XXXXXX...}
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Logged into LDAP server, javax.naming.ldap.InitialLdapContext@f24d4f
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Rebind SECURITY_PRINCIPAL to: cn=XXXXX
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] searching rolesCtxDN=XXXXX
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Checking answer: XXXXX
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] Assign user to role XXXXX
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] User 'XXXXX' authenticated, loginOk=true
    TRACE [org.jboss.security.auth.spi.LdapLoginModule] commit, loginOk=true
    TRACE [org.jboss.security.SecurityAssociation] getPrincipal, principal=null
    TRACE [org.jboss.security.SecurityAssociation] getSubject, sc=null
    TRACE [org.jboss.security.SecurityAssociation] getPrincipal, principal=null
    TRACE [org.jboss.security.plugins.JaasSecurityManager.xellerate] Begin isValid, principal:null, cache info: null
    TRACE [org.jboss.security.plugins.JaasSecurityManager.xellerate] defaultLogin, principal=null
    TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Begin getAppConfigurationEntry(xellerate), size=9
    TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] End getAppConfigurationEntry(xellerate), authInfo=AppConfigurationEntry[]:
    [0]
    LoginModule Class: org.jboss.security.auth.spi.LdapLoginModule
    ControlFlag: Anmeldemodul-Steuerflag: required
    Options:name=uidAttributeID, value=member
    name=matchOnUserDN, value=true
    name=rolesCtxDN, value=XXXXX
    name=principalDNPrefix, value=XXXXX
    name=principalDNSuffix, value=XXXXX
    name=java.naming.factory.initial, value=XXXXX
    name=java.naming.security.credentials, value=XXXXX
    name=allowEmptyPasswords, value=false
    name=java.naming.provider.url, value=XXXXX
    name=java.naming.security.principal, value=XXXXX
    name=searchTimeLimit, value=5000
    name=roleAttributeIsDN, value=false
    name=searchScope, value=ONELEVEL_SCOPE
    name=roleAttributeID, value=XXXXX
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.auth.spi.LdapLoginModule] initialize, instance=@22168243
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.auth.spi.LdapLoginModule] Security domain: xellerate
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.auth.spi.LdapLoginModule] login
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.auth.spi.LdapLoginModule] Authenticating as unauthenticatedIdentity=null
    2009-09-18 14:44:49,576 DEBUG [org.jboss.security.auth.spi.LdapLoginModule] Bad password for username=null
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.auth.spi.LdapLoginModule] abort
    2009-09-18 14:44:49,576 TRACE [org.jboss.security.plugins.JaasSecurityManager.xellerate] Login failure
    javax.security.auth.login.FailedLoginException: Password Incorrect/Password Required
         at org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:213)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
    In login-config.xml, I comment the following code :
    <!--
    <login-module code="org.jboss.security.ClientLoginModule" flag="required">
    </login-module>
    <login-module code="com.thortech.xl.security.jboss.UsernamePasswordLoginModule" flag = "required" >
         <module-option name = "unauthenticatedIdentity">Unknown</module-option>
         <module-option name = "data-source">java:/jdbc/xlDS</module-option>
    </login-module>
    -->
    I think that my user is authenticated from AD, but OIM try a second authentication with a username = null.
    Any clues will be helpful.
    Can you help me ?

    Hi,
    I solve the problem.
    In xlconfig.xml :
    <login-module>
              <thirdPartyLoginModule>org.jboss.security.auth.spi.LdapLoginModule</thirdPartyLoginModule>
    </login-module>
    In login-config.xml
    <application-policy name = "xellerate">
    <authentication>
    <login-module code="org.jboss.security.ClientLoginModule" flag="required">
    </login-module>
    <login-module code="com.thortech.xl.security.jboss.UsernamePasswordLoginModule" flag = "required" >
              <module-option name = "unauthenticatedIdentity">Unknown</module-option>
    <module-option name="java.naming.factory.initial ... </module-option>
    </login-module>
    </authentication>
    </application-policy>
    A user must have a role "User" in AD.
    That's all.
    Thanks.

  • Cat 4506 did not recognize the new module,how to solve this problem?

    0:00:16: %C4K_CHASSIS-3-UNKNOWNLINECARD: Unknown module (Field Replaceable Unit
    minor type 339) in slot 3
    00:00:16: %SPANTREE-5-EXTENDED_SYSID: Extended SysId enabled for type vlan
    00:00:17: %C4K_IOSMODPORTMAN-6-MODULEONLINE: Module 1 is online
    00:00:17: %C4K_IOSMODPORTMAN-6-MODULEONLINE: Module 2 is online
    00:00:29: %SYS-5-RESTART: System restarted --
    Cisco Internetwork Operating System Software
    IOS (tm) Catalyst 4000 L3 Switch Software (cat4000-IS-M), Version 12.1(12c)EW, E
    ARLY DEPLOYMENT RELEASE SOFTWARE (fc1)
    TAC Support: http://www.cisco.com/tac
    Copyright (c) 1986-2002 by cisco Systems, Inc.
    Compiled Thu 22-Aug-02 19:28 by hqluong
    00:00:29: %SNMP-5-COLDSTART: SNMP agent on host Switch is undergoing a cold star
    t 0:00:16: %C4K_CHASSIS-3-UNKNOWNLINECARD: Unknown module (Field Replaceable Unit minor type 339) in slot 3

    Hi Friend,
    Click on this link first
    http://tools.cisco.com/ITDIT/CFN/jsp/index.jsp
    Then click on
    Search by Software/Image Name/Product Code/Platform
    Then you will get some options out of which you select PLATFORM and from drop down select
    CT4500-Sup4 anc clik continue
    Then from major release select 12.1EW and from release select 12.1(19)EW1 and finally selecet the feature set which you are currently running on your sup 4 and you will get the IOS which you can download.
    HTH, if yes please rate all post.
    Ankur

  • Runtime error when calling on SpellUI to enable spelling

    I run into a problem with SpellUI in the Squiggly package that is just released. I am trying to use Squiggly for an Air 2.0 application with Flex 4.0.0 sdk, and my IDE is Flash Builder 4.0.0.
    When I have an event handler method that calls on either SpellUI.enableSpelling() or setSpellingMenuEntries(), no matter the code is in a mxml component or an AS class, an error #1014 will occur during the time when the UI component or the class is loaded from a module that is built as a swf. If I choose to ignore the error and call on the event handler, nothing happens. The following is the stack trace message:
    VerifyError: Error #1014: Class mx.flash::UIMovieClip could not be found.
        at flash.display::MovieClip/nextFrame()
        at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.0.0\frameworks\projects\framework \src\mx\core\FlexModuleFactory.as:631]
        at mx.core::FlexModuleFactory/update()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\cor e\FlexModuleFactory.as:401]
        at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\core\FlexModuleFactory.as:718]
    I tried to invoke SpellUI in the Air example project "UserDictionaryExample" attached in the downloaded package, I got a similar error as shown below, but the applicaiton still works.
    VerifyError: Error #1014: Class IIMEClient could not be found.
        at flash.display::MovieClip/nextFrame()
        at mx.managers::SystemManager/deferredNextFrame()[E:\dev\4.0.0\frameworks\projects\framework \src\mx\managers\SystemManager.as:267]
        at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()[E:\dev\4.0.0\framewo rks\projects\framework\src\mx\managers\SystemManager.as:2460]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.preloaders::Preloader/timerHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx \preloaders\Preloader.as:488]
        at flash.utils::Timer/_timerDispatch()
        at flash.utils::Timer/tick()
    As I can tell, the major difference between my app and the example is that my app uses spark components, including the top WindowedApplication. Another difference is that my component is loaded from a swf, whereas the exmple does not do that. Is SpellUI tested with Air 2.0, spark, and modules? Does anyone have any idea what the problem could be? Any help would be greatly appreciated!
    Thanks!

    Thanks for your response and tests.
    I figured out the problems and fixed it with a workaround to make it work for spark TextArea as you also tested.
    But the workaround is not the way I want. I have an air application project with several module projects, and at runtime the modules are loaded dynamically as swfs. One of the mudules is built as a runtime shared library. That "class not found" error will go away ONLY IF the SpellUI class is forced to be built into the runtime shared library that loads other modules dynamically, including the one containing the text editor control that uses squiggly for spelling check. Ideally, I should not do that. But it seems the only way I can get rid of the error and make SpellUI work. Interestingly, I don't have this kind of problem with SpellChecker class, which is from a different swc. This seems to me is a build issue, but I am not sure. Do you have any idea why I have to do that and why SpellUI behaves differently than SpellChecker?
    In addition to the above issue, I found SpellUI doesn't work for spark.components.RichEditableText. When I call SpellUI.enableSpelling() on it, nothing happens and no exception is thrown. If RichEditableText is not currently supported, do you have an plan to support RichEditableText in the future?
    Thanks again.

  • Crystal XI runtimes - Accpac - Lotus

    Post Author: TASCAndy
    CA Forum: General
    We have a client who was running Accpac 5.2 which uses the Crystal 8.5 runtimes. They printed their reports to email using Lotus Notes.
    We upgraded them to Accpac 5.4 which uses the Crystal XI runtimes. This feature no longer works.
    Accpac doesn't support Lotus but they say the only thing that changed in this section of the program is the runtimes.
    Could there be an issue with CRXI runtimes and Lotus Notes?
    If we set the MAPI in IE Tools to Outlook, it works fine, but when we change it to Lotus it crashes. We've had Lotus look at the configuration and it works fine. We've tested MAPI in other applications and it all works fine, so we've finally whittled it down to being a Crystal issue or having to throw it back at Accpac.
    Any ideas/suggestions/tips?
    Thanks

    For runtime merge modules, please post to the Business Objects SDK Application Development. Note that there are several forums depending on the SDK you are using. Ensure that you are posting to the correct forum for fastest response.
    Ludek

  • Crystal Reports XI Runtimes

    Hello every body, my name is Ellery Gomez, and I'm new to this forum, I work with Crystal Reports from version 8. Today I'm workting with an ERP diferent from SAP and I'm using CR, the problem that I have is the following: I made a Report with the version XI but the client pc was unable to view it, I was looking for the runtimes or the merge modules, but I didn't find it. Can you please help me?
    Thanks in Advance
    Best Regards

    For runtime merge modules, please post to the Business Objects SDK Application Development. Note that there are several forums depending on the SDK you are using. Ensure that you are posting to the correct forum for fastest response.
    Ludek

Maybe you are looking for

  • Can't invoke WS from BPEL process: Unable to locate activated endpoint

    I have a simple Calculator Web Service deployed on Glassfish, that I can access with any kind of SOAP client (e.g. soapUI). I have then created a BPEL process that invokes this external Web Service (which happens to run on the same Glassfish server,

  • How to sync iPhone contacts to iPad contacts, having skipped iphone set up

    After buying iphone5c I skipped part of set up.  Now I want to make iphone sync to contacts on iPad. I have backed up iPad to iCloud, and the iPhone too, but can't seem to make them sync, nor find a way back to the initial setup menu to choose the op

  • SAP router IP

    Hi Guys, I just installing and configured the saprouter in our system, when I'd registered the server SID in OSS, they gave me this IP which is not our internal or external IP.What's this IP for actually? Do I need to put it in my saprouttab coz righ

  • Where to set SET_MAX_TIME property in BPEL?

    I am writing a simple synchronous service in my jdeveloper. i want to change the max waiting time property(default 45 sec) to 2 min. where can i set this?

  • AIR-E-K9 LAP521G error

    Hello, I have a wifi access point AIR-E-K9 LAP521G. Is it compatible with UC560. Or do we need a AP521G? Nicolas