Unable to catch LDAPException  error code(53) in jsp on weblogic 6.1

When I try to authenticate a user in LDAP whose account is inactivated the following error is thrown UNWILLING_TO_PERFORM in weblogic Server log.
My JSP file couldn't to catch this exception, where as it could catch all other exception like NO_SUCH_OBJECT
INVALID_CREDENTIALS. It throws 500 internal server error on browser which seems awkward to the user.
Im Using basic authentication model by setting 401 status code in response.
I have even tried catch block with Exception, but failed to catch it.
Could Any one plz help me out.
Exception in detail-----
Servlet failed with Exception
netscape.ldap.LDAPException: error result (53); Account inactivated. Contact system administrator.; DSA is unwilling to perform
at netscape.ldap.LDAPConnection.checkMsg(LDAPConnection.java:4852)
        at netscape.ldap.LDAPConnection.internalBind(LDAPConnection.java:1757)
        at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1294)
        at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1303)
        at netscape.ldap.LDAPConnection.bind(LDAPConnection.java:1613)
        at weblogic.security.ldaprealmv2.LDAPDelegate.authenticate(LDAPDelegate.java:851)
        at weblogic.security.ldaprealmv2.LDAPRealm.authUserPassword(LDAPRealm.java:61)
        at weblogic.security.acl.AbstractListableRealm.authInternal(AbstractListableRealm.java:186)
        at weblogic.security.acl.AbstractListableRealm.authenticate(AbstractListableRealm.java:127)
        at weblogic.security.acl.AbstractListableRealm.getUser(AbstractListableRealm.java:110)
        at weblogic.security.acl.CachingRealm.authenticate(CachingRealm.java:945)
        at weblogic.security.acl.CachingRealm.getUser(CachingRealm.java:889)
        at weblogic.security.acl.Realm.authenticate(Realm.java:200)
        at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
        at weblogic.security.acl.internal.Security.authenticate(Security.java:172)
        at weblogic.servlet.security.internal.SecurityModule.checkAuthenticate(SecurityModule.java:302)
        at weblogic.servlet.security.ServletAuthentication.weak(ServletAuthentication.java:318)
        at weblogic.servlet.security.internal.BasicSecurityModule.checkAuthenticateHeader(BasicSecurityModule.java:62)
        at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:118)
        at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2674)
        at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2427)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:159)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:140)
--------------- nested within: ------------------
weblogic.security.ldaprealmv2.LDAPRealmException: Account inactivated. Contact system administrator. - with nested exception:
[netscape.ldap.LDAPException: error result (53); Account inactivated. Contact system administrator.; DSA is unwilling to perform]
        at weblogic.security.ldaprealmv2.LDAPDelegate.authenticate(LDAPDelegate.java:885)
        at weblogic.security.ldaprealmv2.LDAPRealm.authUserPassword(LDAPRealm.java:61)
        at weblogic.security.acl.AbstractListableRealm.authInternal(AbstractListableRealm.java:186)
        at weblogic.security.acl.AbstractListableRealm.authenticate(AbstractListableRealm.java:127)
        at weblogic.security.acl.AbstractListableRealm.getUser(AbstractListableRealm.java:110)
        at weblogic.security.acl.CachingRealm.authenticate(CachingRealm.java:945)
        at weblogic.security.acl.CachingRealm.getUser(CachingRealm.java:889)
        at weblogic.security.acl.Realm.authenticate(Realm.java:200)
        at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
        at weblogic.security.acl.internal.Security.authenticate(Security.java:172)
        at weblogic.servlet.security.internal.SecurityModule.checkAuthenticate(SecurityModule.java:302)
        at weblogic.servlet.security.ServletAuthentication.weak(ServletAuthentication.java:318)
        at weblogic.servlet.security.internal.BasicSecurityModule.checkAuthenticateHeader(BasicSecurityModule.java:62)
        at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:118)
        at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2674)
        at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2427)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:159)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:140)
..so on

It would worth if you take a look to the access log file, and see what error code is returning your operation. I detected that when you perform an ldapsearch using a user with expired password (with DS 5.2, explicitly passwordExpirationTime set to 19700101000000Z in my case) the command returns "ldap_search: DSA is unwilling to perform"
jair@riscl~ $ ldapsearch -b "o=isp" -D "uid=RRJA2829,ou=people,o=affiliates,o=isp" -w met999 "uid=admin"
ldap_search: DSA is unwilling to perform
jair@riscl~ $ echo $?
53And the access log shows (LDAP_SUCCESS for BIND operation):
[23/Jun/2009:15:16:14 -0500] conn=1847 op=-1 msgId=-1 - fd=48 slot=48 LDAP connection from 127.0.0.1 to 127.0.0.1
[23/Jun/2009:15:16:14 -0500] conn=1847 op=0 msgId=1 - BIND dn="uid=RRJA2829,ou=people,o=affiliates,o=isp" method=128 version=3
[23/Jun/2009:15:16:14 -0500] conn=1847 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn="uid=rrja2829,ou=people,o=affiliates,o=isp"
[23/Jun/2009:15:16:14 -0500] conn=1847 op=1 msgId=2 - need new password
[23/Jun/2009:15:16:14 -0500] conn=1847 op=1 msgId=2 - RESULT err=53 tag=101 nentries=0 etime=0
[23/Jun/2009:15:16:14 -0500] conn=1847 op=2 msgId=3 - UNBIND
[23/Jun/2009:15:16:14 -0500] conn=1847 op=2 msgId=-1 - closing - U1
[23/Jun/2009:15:16:15 -0500] conn=1847 op=-1 msgId=-1 - closed.So, it is possible that your code doesn't catch the exception because the bind operation is returning code 0 (LDAP_SUCCESS) and for some other reason weblogic is receiving a second code 53 which is thrown by the server and not catched by your code, I really don't know if it is possible, is just what comes to my mind right now.
I also made a test with java using the same user with expired password and couldn't catch any exception like in your case
import java.util.Hashtable;
import javax.naming.directory.*;*
*import javax.naming.ldap.*;
import javax.naming.*;
public class Password {
   public static void main (String args[]) {
      LdapContext ctx = null;
      String userid = "uid=RRJA2829,ou=people,o=affiliates,o=isp";
      String passwd = "met999";
      try {
         Hashtable env = new Hashtable();
         env.put("java.naming.factory.initial", "com.sun.jndi.ldap.LdapCtxFactory");
         env.put("java.naming.provider.url", "ldap://riscl:389/");
         env.put("java.naming.security.principal", userid);
         env.put("java.naming.security.credentials", passwd);
         ctx = new InitialLdapContext(env, null);
      } catch (AuthenticationException e) {
            System.out.println("=> "  +e.getMessage()+  " <=");
      } catch (NamingException ne) {
         System.out.println("=> "  +ne.getMessage()+  " <=");
}and the logs showed:
[23/Jun/2009:15:32:41 -0500] conn=43 op=-1 msgId=-1 - fd=52 slot=52 LDAP connection from 127.0.0.1 to 127.0.0.1
[23/Jun/2009:15:32:41 -0500] conn=43 op=0 msgId=1 - BIND dn="uid=RRJA2829,ou=people,o=affiliates,o=isp" method=128 version=3
[23/Jun/2009:15:32:41 -0500] conn=43 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn="uid=rrja2829,ou=people,o=affiliates,o=isp"
[23/Jun/2009:15:32:42 -0500] conn=43 op=-1 msgId=-1 - closing - B1
[23/Jun/2009:15:32:42 -0500] conn=43 op=-1 msgId=-1 - closed.but in this case LDAP is not returning the code 53 "UNWILLING TO PERFORM" to java app in the way it did to ldapsearch.
Hope it helps.
BR,
jairsinho

Similar Messages

  • Unable to catch the error pls help

    Hi all am trying from last two hours but strangely unable to catch the error inthe below procedure..
    Ignore what the functionality is but look at these steps in the procedure ;Look at these two steps below in the procedure....
    It goes wrong at this point......
    v_acct_nb := in_acct_gp_array(i).gp_dtl_array(j).account_id;
    SELECT DISTINCT account_id INTO v_acct_dim_nb FROM ats_ACCOUNT WHERE account_id = v_acct_nb ; ----> this throws exception that no rows found
    I can see that values are passed into v_acct_nb variable.... but the second statements returns exception saying no data found .
    But
    when i hard code the value returned in the variable in the second statement like below it works ....
    v_acct_nb := in_acct_gp_array(i).gp_dtl_array(j).account_id; /* say i received the value v_acct_nb =20 */
    SELECT DISTINCT account_id INTO v_acct_dim_nb FROM ats_ACCOUNT WHERE account_id = '20'; -----> this works
    whats the issue here ?
    CREATE OR REPLACE PROCEDURE add_appl_dummy2( in_usr_id VARCHAR2,in_acct_gp_array appl_acct_gp_array,v_status_message OUT VARCHAR2)
    IS
    v_usr_dim_nb INTEGER;
    v_acct_dim_nb  VARCHAR2(35);
    v_user_exception     EXCEPTION;
    v_account_exception     EXCEPTION;
    v_acct_in_othr_group_exception  EXCEPTION;
    v_grp_already_exist_exception  EXCEPTION;
    v_acct_nb  VARCHAR2(35);
    v_error_code         VARCHAR2(50);
    v_error_msg          VARCHAR2(50);
    v_dflt_appl_acct_gp_nm VARCHAR2(50);
    v_dflt_appl_acct_gp_id INTEGER;
    v_count NUMBER;
    BEGIN
            /* verify if the user is valid */
            BEGIN
                SELECT usr_id INTO v_usr_dim_nb FROM TSS_USR WHERE access_id =in_usr_id ;
                EXCEPTION WHEN NO_DATA_FOUND THEN
                  v_error_code := SQLCODE;
                  v_error_msg  := SQLERRM;
                RAISE v_user_exception; 
            END;
    DBMS_OUTPUT.PUT_LINE('1');
            FOR i IN in_acct_gp_array.FIRST.. in_acct_gp_array.LAST
            LOOP
                /* Verify if the user has already created an account group with the same name */
                BEGIN
                  SELECT COUNT(1) INTO v_count FROM RPT_ACCT_GP WHERE usr_id=v_usr_dim_nb AND appl_acct_gp_nm=in_acct_gp_array(i).appl_acct_gp_nm;
                  IF v_count >0 THEN
    DBMS_OUTPUT.PUT_LINE('2');
                      RAISE v_grp_already_exist_exception;
                  ELSE
    DBMS_OUTPUT.PUT_LINE('3');
                      NULL;
                  END IF;
                END;
    DBMS_OUTPUT.PUT_LINE('4');
                FOR j IN in_acct_gp_array(i).gp_dtl_array.FIRST..in_acct_gp_array(i).gp_dtl_array.LAST
                LOOP
                      *v_acct_nb := in_acct_gp_array(i).gp_dtl_array(j).account_id;*    
       *SELECT DISTINCT account_id INTO v_acct_dim_nb FROM ats_ACCOUNT WHERE account_id = v_acct_nb ;*
       IF v_acct_dim_nb IS NULL THEN
        DBMS_OUTPUT.PUT_LINE('is null');
       ELSE
                     DBMS_OUTPUT.PUT_LINE(v_acct_dim_nb); /* verify if the account number is valid */
                         DBMS_OUTPUT.PUT_LINE(v_acct_nb);
                         END IF;
             END LOOP;
        END LOOP;
    COMMIT;
    DBMS_OUTPUT.PUT_LINE('9');
    v_status_message:='SUCCESS';
    EXCEPTION
        WHEN v_user_exception THEN
             v_status_message:= 'Invalid user id :'||in_usr_id ||' '||v_error_code||' '||v_error_msg;
        WHEN v_grp_already_exist_exception THEN
             v_status_message:= 'Group with the same name already exists ';
        WHEN OTHERS THEN
             v_status_message:= SQLCODE||' '||SQLERRM;
    END;
    SELECT DISTINCT account_id  FROM ats_ACCOUNT WHERE account_id='000000400127032'

    Please remove this bug anyway:
        WHEN OTHERS THEN
             v_status_message:= SQLCODE||' '||SQLERRM;

  • Unable to empty trash error code 8003 appears ?

    Unable to empty trash error code 8003 appears ?

    I had the same problem - tried all sorts but nothing worked. Eventually I used a tool called Trash It! which did the job (though apparently it is only to be used as a last resort).
    http://www.macupdate.com/app/mac/8214/trash-it! Emptied the Trash and no problems since.
    Cheers
    J

  • Unable to empty trash error code 8003

    Unable to empty trash  error code 8003
    MacBook Pro
    OSX 10.6.7
    4GB RAM

    I had the same problem - tried all sorts but nothing worked. Eventually I used a tool called Trash It! which did the job (though apparently it is only to be used as a last resort).
    http://www.macupdate.com/app/mac/8214/trash-it! Emptied the Trash and no problems since.
    Cheers
    J

  • Oracle Form 9i - How to catch for error code and error message?

    Hello:
    I'd like to catch for error code such as ORA-20001, ORA-28007 if the form is not success. I tried TOOL_ERR.CODE and TOOL_ERR.MESSAGE, but it returns 0 and no message.
    Thanks in advance,
    TD

    I got it.
    Thanks,
    TD

  • TS3694 unable to restore iphone error code 3194 keeps coming up what do i do?

    unable to restore iphone 4 - error code 3194 keeps coming up what do i do ?

    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • How to catch the error code thrown by Oracle client installation?

    Hi everyone,
    Recently, I'm writing a bat file to install Oracle 11g client for windows, I know the command line should be below, but how to find the error code it return? like the command line I want to run in Windows, the errorlevel will return 0 if the command line is pass, otherwise it will return no-zero:
    oui.exe -silent -waitforcompletion -nowait -force -responseFile ...\response\clientruntime.rsp
    BTW, I know I can find the error info under the path ...\Oracle\Inventory\logs, but I think it is better if you can tell me another way to catch the error in command line. I just wish that I can determine whether the Oracle provider installation is pass......
    Thanks
    Lindsay
    Edited by: lindsaywang on Oct 6, 2008 1:28 PM

    I got it.
    Thanks,
    TD

  • Unable to open TM -- Error Code -43

    Have been using TM 1.0 for 3 days, suddenly unable to open app. Getting msg "The operation could not be completed. An unexpected error occurred (error code -43)." Re-installed OSX to 10.5.1 and ran "repair disk permissions" from Disk Utility. Any ideas? What is error code -43? I thought error codes went out with OS9.... Thanks for your help.

    Was able to startup TM again my pressing the Control key while clicking the TM app icon. A pop-up menu appeared from which TM Preferences was selected. It appears that error code -43 is akin to a external HD that is not mounted. All is well again

  • Unable to write smartlist,  error code 1060301

    Hi Team Members,
    we are trying to use Essbase Studio to create Essbase cube by using relational db tables.
    while doing that we are getting following Error.
    Note:_
    we have tried it with partitioned table & Normal Tables bt result are same.
    rational tables we are using contains varchar2 data type.
    Hirerchy contains : 2 columns SourceID & FileID ---> datatype varchar2
    Measure Hir Contains: 1 column duration ---> datatype varchar2
    Environment:_
    Essbase Studio (11.1.2.1)
    Essbase server 11.1.2.1
    Relational DB: Oracle 10g R2
    eRROR:_
    Specified smart list missing name NoData will be ignored
    Specified smart list out-of-range name OutOfRange will be ignored
    Record #3752 - Unable to write smartlist 4203, error code 1060301*
    Deployment Log_
    Member load for dimension RedPSHIR started at: Sep 22, 2011 12:25:38 PM PKT. Records processed: 2,163.
    Member load for dimension RedPSMHir started at: Sep 22, 2011 12:25:50 PM PKT. Records processed: 3,751. Records rejected: 3. Member load elapsed time: 26 Seconds.
    Data load started at: Sep 22, 2011 12:26:05 PM PKT.     Data load elapsed time: 15 Seconds.
    The error file is located on the server at: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Server\.\ess_japihome\data\TEST.Plan1_09-22-11_12-25-36.err
    Failed to deploy Essbase cube.
    Caused by: Failed to load data into database: Plan1.
    Caused by: Cannot get async process state. Essbase Error(1042017): Network error: The client or server timed out waiting to receive data using TCP/IP. Check network connections. Increase the olap.server.netConnectRetry and/or olap.server.netDelay values in the essbase.properties. Restart the server and try again.
    TEST.Plan1_09-22-11_12-25-36.err file output_
    Specified smart list missing name NoData will be ignored
    Specified smart list out-of-range name OutOfRange will be ignored
    Record #3752 - Unable to write smartlist 4203, error code 1060301
    Regards,
    Alee

    Hi guys,
    I think the issue was due to using varchar2 datatype column (duration) for measure Hirerchy.
    after converting it into number (using view option in rational DB) & doing the whole process again. it works fine
    Reference section (Note):
    rational tables we are using contains varchar2 data type.
    Hirerchy contains : 2 columns SourceID & FileID ---> datatype varchar2
    Measure Hir Contains: 1 column duration ---> datatype varchar2
    Regards,
    Alee

  • Unable to restore iPhone. error code 21

    I am unable to restore my iPhone through iTunes. I keep getting an error code 21 after trying recovery mode. please help, I've followed work around instructions on apple, but no luck. Also because the phone will not turn on I am unable to locate serial number for the device.

    If you have tried the troubleshooting steps outlined in this article for Error 21 unsuccessfully, then you will need to contact Apple Support to get help:
    Resolve specific iTunes update and restore errors
    https://www.apple.com/support/contact/
    Best of luck,
    GB

  • Gkbisd Unable to collect cdhash error code 100024

    What is process/daemon gkbbisd ?
    What is cdhash? What means "error code 100024" ?
    One example message:
    07/03/2014 9:17:24.443 PM gkbisd[246]: Unable to collect cdhash for /System/Library/CoreServices/Install in Progress.app (error code 100024)
    I have hundreds more
    "/System/Library/CoreServices/Install in Progress.app" ??

    It looks like gkbisd is used for verification of code signatures for GateKeeper (the thing that asks you if you really want to open an app when you open it for the first time). It was only added in 10.9.4.
    I was getting the same log messages, and found that removing its database and restarting the process stopped the messages from occurring.
    Open Terminal and do the following:
    sudo killall gkbisd
    sudo mv /private/var/db/gkbis.db /private/var/db/gkbis.db.backup
    sudo /usr/libexec/gkbisd &
    You'll be asked to enter your password to run these commands.
    This will kill the gkbisd process, move the database (so it has to build it again), and then restart it.
    If you're comfortable with the command line then there should be no harm in deleting the database rather than moving it.

  • Unable to update Photoshop - Error code U44M1P7

    I have Photoshop CS6 installed through Creative Cloud on Mac OSX 10.8.3. Photoshop says it is running 13.0.4 x64. The Creative Cloud updater indicates that there is an update available to 13.1.2, however whenever I try to update, the update fails with error code U44M1P7. I searched the forums and have seen several references to this error, but I haven't seen a good method for resolving the error. What steps can I take to resolve this problem and still have my Photoshop installation configured correctly with all my current settings and plugins.
    Thanks.
    Jim

    So I ended up uninstalling, cleaning and reinstalling. After the installation I checked for updates. I managed to install the 13.1.2 update to Photoshop CS6, but the updates for Adobe Bridge CS6, Photoshop Camera Raw 7 and Adobe Extension Manager CS6 failed. The log file had this to say about Camera Raw:
    04/21/13 14:44:44:385 | [WARN] |  | OOBE | DE |  |  |  | 4959771 | DW050: The following payload errors were found during install:
    04/21/13 14:44:44:385 | [WARN] |  | OOBE | DE |  |  |  | 4959771 | DW050:  - Camera Profiles Installer_7.4_AdobeCameraRawProfile7.0All: Install failed
    04/21/13 14:44:44:385 | [WARN] |  | OOBE | DE |  |  |  | 4959771 | DW050:  - Photoshop Camera Raw 7_7.4_AdobeCameraRaw7.0All: Install failed
    For Bridge:
    04/21/13 14:51:19:454 | [WARN] |  | OOBE | DE |  |  |  | 4987621 | DW050: The following payload errors were found during install:
    04/21/13 14:51:19:454 | [WARN] |  | OOBE | DE |  |  |  | 4987621 | DW050:  - Adobe Bridge CS6_5.0.2_AdobeBridge5-mul: Install failed
    And for Extension Manager
    04/21/13 14:51:35:526 | [WARN] |  | OOBE | DE |  |  |  | 4988349 | DW050: The following payload errors were found during install:
    04/21/13 14:51:35:526 | [WARN] |  | OOBE | DE |  |  |  | 4988349 | DW050:  - Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All: Install failed
    I don't use Bridge that often so that isn't a big deal. Camera Raw is a bigger deal, although most of the time I use Lightroom.

  • Unable to open applications: error code -10810

    For some reason I have started to have problems opening up applications after my computer has been on for around 10 minutes. I am able to open up apps at startup, but after they've been running for a while, if I try to open additional apps (from either the doc or the apps folder) I get a pop-up error window with the code "-10810". This number shows up in all the error windows.
    I've tried to do some research on this and found a couple of articles saying to delete the following:
    /Library/Caches/com.apple.LaunchServices.6B.csstore
    ~/Library/Preferences/com.apple.LaunchServices.plist
    (where '~' means your Home directory, i.e. '/Users/yourname')
    but I don't have this particular file.
    Can anyone help me? This problem just started today, but I've been running Leopard for about a month now.

    Was able to startup TM again my pressing the Control key while clicking the TM app icon. A pop-up menu appeared from which TM Preferences was selected. It appears that error code -43 is akin to a external HD that is not mounted. All is well again

  • HT201210 unable to restore 3gs, error code -1 comes up at end of firmware restore

    I am trying to restore my Iphone 3gs, unfortunately when the restore reaches the end of firmware restore it seems to pause for a minute, i then get a message telling me that anunknown error has occured, error code (-1). i cant seem to find out what this error code means, I have put phone into DFU mode and restored again and again but always the same result. HELP

    Do a search for error 1 at the top of the forum, this subject has been brought up numerous time in numerous threads.  Look for the green check mark.

  • Unable to Publish Project - Error Code -108

    I am trying to publish a project (photos only) that is just a little over 1 hour long. About 75% of the way through I get the -108 error. An error code search indicates "error -108 iMemFullErr or memFullErr: Not enough room in heap zone" .....but I have 14gb RAM and a free 1TB hard drive. Any ideas?

    I experienced this error code when I was trying to export a movie using the QuickTime option and H.264 format.
    Tried a slew of different video settings without success (meaning after a few minutes of trying to export, iMovie would give me error code -108.
    Then, I started suspecting the audio format. So, first I exported the movie without the audio tracks and it completed successfully. Then, I tried exporting with the AAC audio encoder instead of the default Linear PCM option, and it, too, successfully exported the movie, with audio.
    So, try a different audio format output for your publication.

Maybe you are looking for

  • Uploading Time data to HR Clusters B2

    Please let me know how I can load Time data to HR Clusters B2 . Thanks

  • How to change script time limits in FlashBuilder 4/ error #1502

    Hy guys i have a seriusly problem, and i hope that any one to help me. I'm a developer GIS, and i develop a Web Mapping Application with FlexViewer ArcGIS. I have a widget that call a model that i published in REST. When i run the widget i have error

  • Memory error (??) though Tomcat memory is set to 3G

    Hi, When try to modify activeSync policy / try to stop paused activesync (not quite sure when), the following error trace comes up.. What could be the reason ? [Identity SYSLOG]:2010-09-20 22:07:05.172 null E idmuat1 LG SYLG00 Failed to wri te syslog

  • AIR SDK 17 iOS list skins confused

    Using the latest SDK 17 (115) on iOS the app has issues with datagrid/list skins - if you manually skin using setRendererStyle, it seems ALL the skin states are using the Selected skins. For example, the upSkin state uses the selectedUpSkin skin as f

  • Trade in Timing for Iphone 6 Promotion

    This has probably been asked and answered somewhere else, but I cant find it. I will try to explain my situation.  I would like to take advantage of the iPhone 6 trade in offer.  As I understand it, I can trade in my IPhone 4 and receive $200 credit