JNLPException: security error how to resolve

"JNLPException[category: security error : Exception: null : LaunchDesc: null " it happened when run app.jnlp on the java web start.
the app.jnlp is following:
{code}<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
codebase="http://192.168.0.7:8080/b2/c8/splash/">
<information>
<title>A User-Friendly App</title>
<vendor>Mauro Inc.</vendor>
<homepage href="home.html"/>
<description>Install Your programs via the Web, quickly and effectively!</description>
<description kind="short">An example of a simple Java-launched Installator</description>
<security>
<all-permissions/>
</security>
<offline-allowed/>
</information>
<resources>
<j2se version="1.5+"/>
<extension
name="Splash Window"
href="splash.jnlp">
</extension>
<jar href="app.jar"/>
<jar href="first.jar"/>
<jar href="second.jar"/>
<jar href="third.jar"/>
</resources>
<application-desc/>
</jnlp>
{code}
the splash.jnlp is following:
{code}
<?xml version="1.0" encoding="utf-8"?>
<jnlp
     spec="1.0+"
     codebase="http://192.168.0.7:8080/b2/c8/splash//">
     <information>
          <title>Install Your Program Via the Web,quickly and effectively!</title>
          <vendor>Mauro Inc.</vendor>
          <homepage href="home.html"/>
          <description>Install Your Program Via the Web,quickly and effectively!</description>
          <description kind="short">A simple Java-launched Installator</description>
          <offline-allowed/>
     </information>
     <resource>
          <j2se version="1.5+"/>
          <jar href="splash.jar"/>
     </resource>
     <installer-desc main-class="com.fei.Splash"/>
</jnlp>
{code}
The error message is that reference many host computer in one resource.But use other jar file,it do not have error.In this error,I use a singleton pattem in the jar file.
thanks for your attention.
Edited by: feiyangdefei on Jan 28, 2008 6:04 AM
Edited by: feiyangdefei on Jan 28, 2008 6:06 AM
Edited by: feiyangdefei on Jan 28, 2008 6:08 AM

by the way,the App.java is following:
import java.awt.BorderLayout;
import java.awt.event.WindowAdapter;
import javax.swing.JLabel;
import javax.swing.JFrame;
import javax.swing.ImageIcon;
import java.awt.event.WindowEvent;
public class App extends JFrame{
     public App(){
          ImageIcon img =
               new ImageIcon(getClass().getClassLoader().getResource("images/back.jpg"));
          JLabel jlabel = new JLabel(img);
          jlabel.setLayout(new BorderLayout());
          jlabel.add(new JLabel("An Application..."));
          getContentPane().add(jlabel);
          addWindowListener(new WindowAdapter(){
               public void windowClosing(WindowEvent e){
                    System.exit(0);
          pack();
          setVisible(true);
     public static void main(String[] args){
          App app = new App();
}and the Splash.java is following:
import java.awt.*;
import javax.swing.*;
import javax.jnlp.*;
import java.net.URL;
public class Splash extends JWindow implements Runnable{
  private ClassLoader loader;
  private static ExtensionInstallerService extensionInstaller;
  private JLabel ImageLabel;
  private JLabel MessageLabel  = new JLabel();
  private JLabel animLabel;
  private JLabel resourceLabel  = new JLabel();
  private static Splash splash;
  //data
  private String[] jarSequence= {"first.jar", "second.jar", "third.jar"};
  private String[] msgSequence= {
    "Now Even More Powerful!",
    "Incredibly Fast And Reliable!",
    "Ready To Go?"};
  private String codebase = "http://192.168.0.7:8080/jwstest/";
   * Private Constructor - Implements the Singleton Design Pattern
  private Splash() {
    super();
    loader = getClass().getClassLoader();
    //prepare UI
    //ImageLabel = new JLabel(new ImageIcon(loader.getResource("images/background.jpg")));
    ImageLabel = new JLabel(new ImageIcon("images/background.jpg"));
    //animLabel = new JLabel(new ImageIcon(loader.getResource("images/working.gif")));
    animLabel = new JLabel(new ImageIcon("images/background.jpg"));
    resourceLabel.setBorder(BorderFactory.createEmptyBorder(6,6,6,6));
    ImageLabel.setLayout(new BorderLayout());
    ImageLabel.setBorder(BorderFactory.createRaisedBevelBorder());
    ImageLabel.add(resourceLabel, BorderLayout.NORTH);
    ImageLabel.add(MessageLabel, BorderLayout.SOUTH);
    ImageLabel.add(animLabel, BorderLayout.CENTER);
    getContentPane().setLayout(new BorderLayout());
    getContentPane().add(ImageLabel, BorderLayout.CENTER);
    pack();
    //Centers the window
    Dimension size = getSize();
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    if (size.height > screenSize.height) {
      size.height = screenSize.height;
    if (size.width > screenSize.width) {
      size.width = screenSize.width;
    setLocation((screenSize.width - size.width) / 2, (screenSize.height - size.height) / 2);
   * Implements the Singleton Design Pattern
  public static Splash getInstance(){
    if (splash == null)
      splash = new Splash();
    return splash;
   * Sets a message visible at the bottom
   * @param text Text to show
  public static void setMessage(String text) {
    if (splash != null)
      splash.MessageLabel.setText("    " + text);
   * Sets a message visible at the top showing the
   * currently downloading resource file
   * @param rsr Text to show
  public static void setLoadingResource(String rsr) {
    if (splash != null) {
      splash.resourceLabel.setText("Downloading: "+rsr);
   * Shows up the splash window or destroys it
   * @param show
  public static void showUp(boolean show) {
    if (splash == null)
      return;
    splash.setVisible(show);
    if (show == false) {
      splash.setCursor(Cursor.getDefaultCursor());
      splash = null;
    } else {
      splash.setCursor(new Cursor(Cursor.WAIT_CURSOR));
      try {
        // Lookup the Service
        extensionInstaller =
          (ExtensionInstallerService)ServiceManager.lookup("javax.jnlp.ExtensionInstallerService");
        // Hide JNLP Client's download window
        extensionInstaller.hideStatusWindow();
      } catch(UnavailableServiceException use) {
        System.out.println("Service not supported: "+use);
   * Takes charge of all the JAR delivery
  public void run() {
    DownloadService ds;
    int jarNumber = jarSequence.length;
    try {
      ds = (DownloadService)ServiceManager.lookup("javax.jnlp.DownloadService");
    } catch (UnavailableServiceException use) {
      ds = null;
      System.out.println("Service is not supported: "+use);
    }//once have a ds you can do a lot of things
    //begin downloading jars
    for (int i=0;i<jarNumber;i++){
      if (ds != null) {
        processJar(ds,i);
      //take a breath
      try {
        Thread.currentThread().sleep(3000);//IT'S ONLY COSMETICS!
//        Thread.currentThread().yield();
      } catch (Exception e) {
        System.out.println("Synchronization Exception: "+e);
    }//-for
    showUp(false);//all the needed JARs have processed
    extensionInstaller.installSucceeded(true);//we're optimistic
   * A fancy method that finds out if a JAR is cached and removes it.
   * substitute it with your code.
  private void processJar(DownloadService ds, int i){
    try {
      // determine if a particular resource is cached
      URL url =
        new URL(codebase + jarSequence);
boolean cached = ds.isResourceCached(url, null);
// remove the resource from the cache, just for fun
if (cached) {
ds.removeResource(url, null);
// reload the resource into the cache, yes!
setMessage(msgSequence[i]);
setLoadingResource(jarSequence[i]);
DownloadServiceListener dsl = ds.getDefaultProgressWindow();
ds.loadResource(url, null, dsl);
} catch (Exception e) {
System.out.println("Loading Resource: " + e);
public static void main(String[] args) {
Splash splash1 = Splash.getInstance();
splash1.showUp(true);
splash1.run();
thank you again.
Edited by: feiyangdefei on Jan 28, 2008 6:14 AM
Edited by: feiyangdefei on Jan 28, 2008 6:15 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Cisco iron port feature activation code error how to resolve that?

    cisco iron port feature activation code error  how to resolve that?

    I have fixed this problem successfully.
    The problem was with the referral attribute of the cfldap tag.
    After adding this (referral="yes") attribute to my code I am able to login into my website.
    <cfldap action="QUERY" server="#application.LDAPServer#" port="#application.LDAPPort#" start="#application.LDAPBase#" name="search" attributes="alias, dn, uid, technicalCareerLevel, locationorgunit, givenName, sn" filter="#filter#" scope="SUBTREE" maxRows="2" referral="yes">
    Any way thanks for your assistance!!!!!

  • Collection error - How to resolve?

    The following code gives an error. Can anyone help me how to resolve this..
    Create package v_retpack as
    type t_tab is table of emp%rowtype index by binary_integer;
    end;
    create procedure v_retcol(v_ret OUT v_retpack.t_tab) as
    i number:=1;
    begin
    loop
    select * into v_ret(i) from emp;
    exit when SQL%notfound;
    i := i+1;
    end loop;
    end;
    declare
    t v_retpack.t_tab;
    begin
    v_retcol(t);
    end;
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "SCOTT.V_RETCOL", line 5
    ORA-06512: at line 4
    Message was edited by:
    vasantfreak

    This is wrong
    select * into v_ret(i) from emp;Change this to
    select * bulk collect into v_ret from emp;

  • Samba errors & how to resolve them on Solaris 10?

    Hi All,
    I found the following errors in a number of /var/samba/logs Samba 3.0.37 on our Solaris servers even though they are working fine:
    log.smbd
    [2011/03/11 14:25:56, 0] auth/auth_util.c:(844)
    create_builtin_administrators: Failed to create Administrators
    [2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
    getpeername failed. Error was Transport endpoint is not connected
    [2011/03/11 14:28:44, 0] lib/util_sock.c:(261)
    Failed to set socket option SO_KEEPALIVE (Error Invalid argument)
    [2011/03/11 14:28:44, 0] lib/util_sock.c:(261)
    Failed to set socket option TCP_NODELAY (Error Invalid argument)
    [2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
    getpeername failed. Error was Transport endpoint is not connected
    [2011/03/11 14:28:44, 1] lib/util_sock.c:(1183)
    Gethostbyaddr failed for 0.0.0.0
    [2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
    log.wb-testSERVER
    [2011/05/10 10:31:21, 0] nsswitch/winbindd_passdb.c:(126)
    Possible deadlock: Trying to lookup SID S-1-1-0 with passdb backend
    log.einbindd-idmap
    [2011/05/10 10:03:21, 0] nsswitch/idmap.c:(820)
    ERROR: Initialization failed for alloc backend, deferred!
    [2011/05/10 10:03:21, 1] nsswitch/idmap_tdb.c:(397)
    idmap uid range missing or invalid
    idmap will be unable to map foreign SIDs
    [2011/05/10 12:07:45, 0] nsswitch/idmap.c:(820)
    ERROR: Initialization failed for alloc backend, deferred!
    Any ideas on what is causing these and suggestion on resolving them?
    Also like to find out where to get the latest version of Samba that is packaged for Solaris 10 environment.
    Thanks a million,
    Crystal

    Hi 799713,
    The ideal solution would be to apply patches 119757-19 & 146363-01 to update Samba to 3.5.5 as advised by bobthesungeek76036. Unfortunately, this is not an option for us since one require a software contract with Oracle to get patches these days. As a result, below are some of the steps that I have attempted but still needing further advice to complete:
    ( i ) Neither do Windows XP / 2008 clients can connect after excluding port 445 with 139. Keeping port 445 would end up with “transport endpoint” errors but I will try to live with it for now.
    ( ii ) Downloaded Samba 3.4.2 (samba-3.4.2-sol10-sparc-local.gz) from Sunfreeware but having trouble installing it with “pkgadd –d /tmp/samba-3.4.2-sol10-sparc-local with the following output:
    # showrev
    Hostname: venus
    Hostid: 85wt6521
    Release: 5.10
    Kernel architecture: sun4v
    Application architecture: sparc
    Hardware provider: Sun_Microsystems
    Domain:
    Kernel version: SunOS 5.10 Generic_141444-09
    # ls -lt samba-3.4.2-sol10-sparc-local
    -rwxr-xr-x   1 root  bin  269462528 Mar  3 17:09 samba-3.4.2-sol10-sparc-local
    # pkgadd -d /tmp/samba-3.4.2-sol10-sparc-local
    ld.so.1: pkgadd: fatal: libdlpi.so.1: open failed: No such file or directory
    Killed
    # /tmp/samba-3.4.2-sol10-sparc-local
    /tmp/samba-3.4.2-sol10-sparc-local[2]: SMCsamba:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[4]: 07070100024738000081a40000000a0000000a000000
    014aceecfa000000af000000200000000000000000000000000000001100000000SMCsamba/pkgin
    foPKG=SMCsamba:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[9]: Samba:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[11]: Christensen:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[14]: 07070100024737000081a40000000a0000000a00000
    0014aceecfa0003a34d000000200000000000000000000000000000001000000000SMCsamba/pkgm
    ap::  not found
    /tmp/samba-3.4.2-sol10-sparc-local[15]: 1:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[16]: 1:  not found
    /tmp/samba-3.4.2-sol10-sparc-local[17]: 1:  not found
    ……..( iii ) Is it still necessary to install all these dependencies as stated on Sunfreeware even though samba-3.4.2-sol10-sparc-local.gz is already 257MB:
    popt,
    libiconv,
    libintl,
    readline,
    ncurses,
    kerberos,
    openssl-1.0.0d,
    openldap,
    sasl2,
    zlib,
    and either the libgcc-3.4.6 or the gcc-3.4.6 packages.
    ( iv ) How to turn off existing version 3.0.37 before replacing it with 3.4.2 once it is successfully installed? ? The current version install samba files in /usr/sfw, /etc/sfw and /var/samba. Where will the new installation files go to?
    ( v ) Couldn’t find anything on samba from Blastwave. Do you have an URL that I could try?
    It would be simpler to do a single bundled install as opposed to adding dependency libraries individually where possible.
    Many thanks again,
    Crystal

  • HP 3852A;ERROR 18: SYSTEM ERROR- how to resolve this error?

    from a vi, I enter a command to communicate with the unit hp3852A : "CONF MEAS TEMPK, 502"
    And the unit HP3852A show me an error: #18 internal processor is in an illegal state.
    Yesterday, I did not have this problem, and I never move the instrumentation for the lab I work.
    How can I resolve this error? Because that's the only command which doesn't work-> CONF MEAS ...(whenever the type of the measurement, DCV,OHM,TEMPK)
    here is a piece of code attached (look at the frame 0)
    thank you for response.
    Attachments:
    Écrire_Lecture_ds_vecteur_S1.vi ‏85 KB

    The first thing you should do is wire up the error in/error out connections of the gpib functions and check for any errors. At the same time, this will enable you to eliminate the sequence structure and all of those local variables. Since it is the instrument that is displaying the error, it would appear that you've incorrectly programmed it. It might be an illegal command or the write buffer is full. You might want to add a few error queries to the instrument to see when it happens or test your commands in the interactive enviroment of MAX. There is also a driver available for the instrument. Check your LabVIEW Instrument Driver CD or download it here.

  • How to resolve the z table activation error?

    I have a Z table.
    Added a couple of fields and activated it. it was fine.
    then changed one of the fields as a key field and activated it.
    it took a long time even though there is no data and terminated.
    I removed the key indicator and tried activating it. it showed errors.
    Then I deleted it using SE14 and recreated with the same name. Now I am getting the following error:
             See log E4911620080227134551:ACT                                                                               
    TABL ZPRICECONDN was not activated                                                     
          Check table ZPRICECONDN (E49116/02/27/08/13:45)                                        
          Enhancement category for table missing                                                    
    /     Table ZZPRICECONDN: Key length > 120 (Restricted functionality)                         
          A table called ZPRICECONDN exists in the database                                      
    /     No active nametab exists for ZPRICECONDN                                               
          Termination due to inconsistencies                                                        
    /     Table ZPRICECONDN (Statements could not be generated)                                  
    /     Error number in DD_DECIDE (9)                                                             
    /     Check on table ZPRICECONDN resulted in errors                                          
    How to resolve this?
    Do I have to do any database manipulations?
    I looked at 306296 but DROP command is not available in ABAP?
    Pl advise.
    Thanks
    Ven

    Hi,
      Whenever you make some changes to the database table, you need to activate it through the
    database utility function (SE14).
    Enhancement category for table missing: 
      to resolve this: SE11>>Table name>> Extras>>Enhancement category...and choose the option 'can be enhanced'.
    / Table ZZPRICECONDN: Key length > 120 (Restricted functionality)
       Reduce your key fields length to <120.
    After doing those changes activate it through the database utility.
    I hope, it will work for you.
    Regards,
    Jallu

  • HT5312 I forget my answer of two security questions, there is a typo error in rescue email address. How to resolve this so that I can use my Apple ID for online shopping?

    I forget my answer of two security questions, there is a typo error in rescue email address. How to resolve this so that I can use my Apple ID for online shopping?

    You won't be able to change your rescue email address until you can answer your questions, you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to correct your rescue email address for potential future use

  • How can I fix 2121 sandbox security error, local swf MP3 player test calls MP3's from website?

    1st Issue.  I am a new user and am fighting #2121, #2044 & #2048 Flash security errors in getting an MP3 player to work as I test the fla file in Flash CS4 on my local computer.  The fla in Flash and swf in Dreamweaver calls mp3 files from our host server on the internet.
    After reading various sparce posts and Adobe articles on this issue, I have added a crossdomain.xml file at our websites root (see file below) and added the code, flash.system.Security.allowDomain in line 1 of the action script of the flash fla to allow our site access (-see script below).  These efforts have helped get the player to work better on our test site.
    But, I am still getting the 2121 error within Flash CS4 as I debug the player or play the swf in live view within Dreamweaver.  Playing the fla or swf will lock-up the Flash 10 player and crash the program. I am having the mp3 player access the mp3 files from our web site as I test the fla.
    Here is the debug message I am getting:
    Attemping to launch and connect to Player using URL C:\Web Site Files\Plank Productions afc\Plank Productions 2010\site\MP3_List_Player_AS3.swf [SWF] C:\Web Site Files\Plank Productions afc\Plank Productions 2010\site\MP3_List_Player_AS3.swf - 209827 bytes after decompression SecurityError: Error #2121: Security sandbox violation: Sound.id3: file:///C/Web%20Site%20Files/Plank%20Productions%20afc/Plank%20Productions%202010/site/MP3%5FList %5FPlayer%5FAS3.swf cannot access . This may be worked around by calling Security.allowDomain.
    at flash.media::Sound/get id3()
    at com.afcomponents.mp3player::MP3Player/get id3()
    at com.afcomponents.mp3player::MP3Player/handleBuffe ring()
    Here is the crossdomain xml code:
    <?xml version="1.0" encoding="utf-8"?>
    <?xml version="1.0"?><!DOCTYPE cross-domain-policySYSTEM "http://www.macromedia.com/xml/dtds/cross-domain- policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="www.plankproductions.com" secure="false"/>
    <allow-access-from domain="plankproductions.com" secure="false"/>
    </cross-domain-policy>
    Here is the AS3 in line 1 of the Fla file that I added:
    flash.system.Security.allowDomain("www.plankproductions.com", "plankproductions.com");
    2nd Issue.  The online playback of the mp3 player will play about 4-7 mp3’s then lock-up in Internet Explorer 8 on a pc.  I think that is related to flash security, not sure, I do not know how to debug the mp3 player on the web site.
    http://plankproductions.com/pptemplate_afc_mp3.shtml
    Questions.
    -How can I resolve the error 2121?
    -What as3 code do I need to target the local c drive to have security clearance and work properly, is this the problem?
    -Why is the mp3 player locking up on the web page?
    Thank you in advance for any help.
    Operating System: Windows XP Professional, CS4 Web Premium

    Do you have the standard or debug player installed?  Such errors should not occur with the standard player.
    See http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main_Find_Flash_Play er_version_type_and_capabilities__Flash_developers_only_

  • HT4236 Syncing photos using iTunes in windows revealed this error message "iPad Jayvee cannot be synced because it cannot be read from or written to ." Please advise asap how to resolve the issue.  Thanks!

    Please advise how to resolve error message - cannot be synced because it cannot be read from or written to.

    Hello Janet,
    I would recommend this article named 'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod found here http://support.apple.com/kb/ht1207
    Outdated operating system software
    Make sure you have the latest updates for your operating system, which may include improvements for device connections. For example, many USB and FireWire improvements have been included in Windows Service Packs.Check for Mac OS X downloads. Check for Windows updates.
    Computer needs updates
    Make sure you have the latest updates available for your specific computer model (or components for home-built PCs). These are usually available for download on the support website for the maker of the PC (or component). Many USB updates are listed as "Intel chipset" or just "chipset" updates on PC manufacturer's support and download websites.
    Software interference
    Some software can interfere with iTunes, making it unable to write files to your iPod. Think about what software you have installed, and try disabling any add-ons that might be interfering with iTunes. Check your suspected software's documentation or contact the software maker if you need assistance with disabling the application. Out-of-date or incorrectly configured security software frequently causes this issue. See these steps for identifying and troubleshooting third-party security software.
    Damaged files
    If one of your music files or photos is damaged, iTunes may display one of these errors when transferring that file to the iPod. If you identify a file that is causing the error, try deleting that file and reimporting it from a backup file or from the original source. You may be able to repair files by repairing the disk (see the solutions in the next section).
    Unregistered .dll files (Windows)
    Malware or other software may cause an issue with the digital signing of Windows XP drivers. First try restoringthe iPod using the latest version of iTunes.. If you are unable to restore it or the symptom reappears, follow the steps in this document.
    Damaged disk structure
    These errors can also appear if the format of your computer's hard drive or your iPod disk is damaged.
    To repair your computer's hard disk—Mac OS X users, read this article for instructions. Windows users, search the Help system in Windows for chkdsk to get more information on checking and repairing the disk structure.
    To repair an iPod disk—Restore the iPod or iPod shuffle using the latest version of iTunes.
    Warning: Be sure to back up your data before restoring an iPod. The restore process cannot be undone. All of your songs and files will be deleted.
    Corrupt iPod photo Cache
    If you're getting the error when transferring photos to an iPod photo, try deleting the iPod photo Cache and then starting the photo sync again.
    Lost connection
    Make sure that the connections from your computer to the iPod are snug and do not wiggle or come loose during transfers. For example, if you use the wrong size dock for your iPod, it can put strain on the connectors and cause a bad connection. See these articles for more information:
    Learn about iPod Universal Dock
    iPod Dock: Specifications
    Conflict with third-party hardware
    Third-party USB or FireWire devices may also interfere with iTunes' ability to communicate with your iPod. Remove all USB and FireWire devices except the keyboard and mouse before reconnecting your iPod to the computer.
    Bad hardware
    Hardware failure or non-compliant hardware can cause these errors. This could be an issue with iPod hardware or with the cable or dock you're using, but more often it's an issue with the USB or FireWire card or interface in your computer. Some USB and FireWire interfaces just don't work very well. If you isolate the issue to the USB or FireWire interface in your computer, you may want to try a different port, get the computer serviced, or replace the card or interface with a better one.
    If you isolate the issue to an Apple-supplied cable or dock, or the iPod itself, you can get it serviced here.
    Take care,
    Sterling

  • How to resolve 401 error in HWC SMP2.3

    Hi All,
        I did a login Sample with username and password. till now it is working fine but suddenly it is throwing 401 error,
    Below are my logs.
    20140501T145911.752|3|zalyjwtjnccw Mydata:1 -- username: supAdmin|||||3296
    20140501T145911.752|3|zalyjwtjnccw Mydata:1 -- password: [xxxxxxxx]|||||3296
    20140501T145912.792|1|zalyjwtjnccw Mydata:1 -- Request failed|||||3296
    20140501T145912.809|1|zalyjwtjnccw Mydata:1 -- Request: <M><H></H><S>Start</S><A>submit</A><VS><V k="username_key" t="T">FATIMA</V><V k="password_key" t="T">welcome123456</V><V k="ErrorLogs" t="L" /></VS></M>|||||3296
    20140501T145912.809|1|zalyjwtjnccw Mydata:1 -- ResponseHeader: {"id":"72861383ff6f468ea87f780be40791b7","cid":"8#Mydata:1","pv":"4","sig":"06bf13bf8f834f9ebc2bb2129bd8a603","loginFailed":true,"method":"searchFailed","log":"[{\"level\":5,\"code\":401,\"timestamp\":\"2014-05-01 14:59:12.773\",\"message\":\"Login Failed: user 'supAdmin'\",\"component\":\"fnduser\",\"_op\":\"C\",\"requestId\":\"72861383ff6f468ea87f780be40791b7\",\"operation\":\"search\"}]","mbo":"fnduser","app":"Mydata:1","pkg":"sample:1.0"}|||||3296
    I did some r & d i got this link SyBooks Online
    my connections were correct, i am able to connect the database still it is showing the same exception.
    How to resolve this.
    Thanks & Regards,
    Sravanya.

    Jitendra & Midhun,
    1. I am able to login the SCC with supAdmin & 12345678 credentials.
    2. Yes, i am using the admin security.
    3. Yes, i am connecting the SUP server from my workspace.
    4.  No, i did not select the Dynamic credentials Option.
    1.  I created a MBO with a oracle function i.e.,
              select apps.fnd_web_sec.validate_login(:uname, :pwd) from Dual1
    2. Then for Uname & Pwd i created two personalization keys which are with storage type "Transient".
    3. I deployed the MBO in server, that is successful.
    4. Then I created a Hybrid App Designer, with two editboxes(Username & Password) and one button(Login).
    5. I gave the type of Login button is OnlineRequest, selected the MBO, and checked the radio button of ObjectQuery, selected ' findall '.
    6. Then i mapped the personalization keys to two editboxes(Username & Password).
    7. Then i gave success screen and generated error screen.
    8. Then i generated the hybrid app, it was also successful.
    9. Now i am able to access my application in my Simulator with the registered device of SCC.
    10. Then i gave the Username & Password, clicked on Login button, then it is throwing 401 error.
    Thanks & Regards,
    Sravanya.K

  • I am facing an issue " Denied connection per minute from one ip address" why this error occur and how to resolve it? is it really harmful for my TMG Server or not??

    I am facing an issue " Denied connection per minute from one ip address" why this error occur and how to resolve it? is it really harmful for my TMG Server or not??
    Error Description:
    The number of denied connections from the source IP address 10.0.0.X exceeded the configured limit. This may indicate that the host is infected or is attempting an attack on the Forefront TMG computer. 
    electrifying

    Hi,
    this may be a false/positive log record.
    First check the services and applications on the effecting machine (NETSTAT -ANO) to see which connections the machine has established or tries to establish.
    Check the machine against viruses and spyware.
    if you don't find any viruses / spyware or "mysterious" connections, create a connection exception limit in the flood mitigation settings on your TMG Server:
    http://www.isaserver.org/articles-tutorials/configuration-security/TMG-Firewall-Flood-Mitigation-Part1.html
    regards Marc Grote aka Jens Baier - www.it-training-grote.de - www.forefront-tmg.de - www.galileocomputing.de/3276?GPP=MarcGrote

  • HT201210 how to resolve error 21? my iphone 4 just showing apple logo... when i'm trying to restore it... it is showing error 21 n that's not letting me restore it :( pls help

    how to resolve error 21? my iphone 4 just showing apple logo... when i'm trying to restore it... it is showing error 21 n that's not letting me restore it pls help

    From the article that the question was posted from:
    Error 1611
    This error typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
    Try reading the solutions you find in the future and follow them.

  • TS1424 how to resolve error 3194

    how to resolve error 3194??

    Just the usual diagnostic steps. Reboot your computer. Use a USB port directly on the computer, not a hub, disable security software - antivirus and firewall - completely remove iTunes, then download and install a clean copy (current version if 10.2.2), create a new user on your computer and try updating as that user, try a different computer.

  • How to resolve #Multivalue Error

    HI All,
    I have a data like below, in this for inpatient data is NULL and as per business requirement  if data is null then "0". so i create a variable and drag into inpatient's total column
    statement for inpatient is
    =If IsNull([total]) Then 0 Else [total] Where ([items]="Inpatient")
    items                                    total
    Office
    4    
    Utilization
    70
    Inpatient
    it is working and showing as "0"
    but when inpatient has value it is showing #multivalue"
    Office Visits
    4
    Non-Emergency ED Utilization
    70
    Inpatient Stays
    40
    how to resolve is issue
    Please reply i am using SAP BO 3.1 INFOVIEW
    Thanks in advance
    Ranjeet

    Hi Ranjeet,
    First thing is you are getting this error because of the where clause used in the variable.
    Because in the 2nd case when it has value for Inpatient, it is actually taking the same value for all the 3 cases.
    How to remove null value with 0:
    1. Remove where clause from the variable and use that variable in place of Total in the table report.
    2. Use format number option to place 0 in place of undefined values.
    Hope it helps. Please ask if you have any queries.
    Regards,
    Subrat

  • When i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    when i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

Maybe you are looking for

  • PDF viewer doesn't work in FF 36.0.4 for Mac

    Macbook Pro with Yosemite and FF 36.0.4: Built in PDF viewer no longer works. Clicking on PDF links in search engines does not bring up the built in viewer. Restoring FF 35 restores the PDF viewer.

  • ADF Shuttle Select Items rendered as checkboxes

    So, we are using ADF 11.1.2.4 to develop our application.  We have a requirement to use the shuttle control.  However, when it is rendered, it contains checkboxes (inputItem type=checkbox).  I am pretty sure this wasn't happening with 11.1.2.3, but w

  • Expired acsm file

    Starting Friday, when attempting to download books from my local public library, I started receiving an Overdrive error message stating, "Expired ACSM file. Please refresh the web page you downloaded this title from and try again. (error code 1069)."

  • Help require ....QoS Issue

    policy-map test class ce_management police 8000 8000 16000 conform-action set-prec-transmit 6 exceed-action set-prec-transmit 2 bandwidth 8 random-detect random-detect exponential-weighting-constant 6 random-detect precedence 6 39 62 10 class voice p

  • NWDS NW 7.0 EHP2 with SAP JVM 4.1 == server0 crash exit code 666

    I recently installed developer workplace on windows 2003 server SP2, database MS SQL 2005. NWDS NW 7.0 EHP2. The installation has been done with SUN JAVA kit. The installed SAP AS JAVA was running OK. Several SAP notes indicate that from NW 7.0 custo