Com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:

Hi,
I am trying to fetch data from SMP 2.3 Server through SMP 2.3 SDK. i have followed all steps which have been mentioned in SYBASE INFOCENTER for Native Android Platfom. i am getting the following error
com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:
if anybody has dea about this error. please respond

Hi viru,
No, i am not connecting via relay server. i am connecting to organisation's  SMP Cloud Server. We used the same RFC for creating MBO for iOS application and it worked.
This is my code:
import java.util.Hashtable;
import SampleTest.SampleTestDB;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
import com.sybase.collections.GenericList;
import com.sybase.collections.StringList;
import com.sybase.collections.StringProperties;
import com.sybase.mobile.Application;
import com.sybase.mobile.ApplicationCallback;
import com.sybase.mobile.ConnectionProperties;
import com.sybase.mobile.ConnectionStatus;
import com.sybase.mobile.RegistrationStatus;
import com.sybase.persistence.DefaultCallbackHandler;
import com.sybase.persistence.LoginCredentials;
import com.sybase.persistence.SynchronizationAction;
import com.sybase.persistence.SynchronizationContext;
import com.sybase.persistence.SynchronizationGroup;
import com.sybase.persistence.SynchronizationStatus;
public class ReadActivity extends Activity {
     private static final int REQUEST_DETAIL = 99;
     private static String USERNAME = "supAdmin";
     private static String PASSWORD = "pass";
     private static String HOST = "cloudsap1.ltisap.com";
     private static int PORT = 5001;
     private static int TIMEOUT = 600;
     private EmployeeAdapter adapter;
     private static volatile boolean initializationDone = false;
  ListView ltList;
  Button btnNext;
@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_read);
  initializeApplication();
protected void onActivityResult(int requestCode, int resultCode, Intent data)
        if (requestCode == REQUEST_DETAIL)
            if (resultCode == RESULT_OK)
                ReadActivity.this.adapter.refreshUI(true);
   private void initializeApplication()
    final ProgressDialog dialog = new ProgressDialog(this);
    dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    dialog.setTitle("on boarding ...");
    dialog.setMessage("Please wait while download initial data...");
    dialog.setIndeterminate(false);
    dialog.setProgress(100);
    dialog.setCancelable(true);
    dialog.show();
    new Thread()
        @Override
        public void run()
            try
                int count = 0;
                while (!initializationDone)
                    dialog.setProgress(++count);
                    Thread.sleep(100);
                    if (count == 100)
                        count = 0;
                dialog.cancel();
            catch (Exception e)
                dialog.cancel();
    }.start();
    Application app = Application.getInstance();
    app.setApplicationIdentifier("SampleTest");//== important!!!!!!!!!!!!!!!!!
    app.setApplicationContext(getApplicationContext());
    new Thread(new Runnable()
        public void run()
            try
                Application app = Application.getInstance();
                ApplicationCallback appCallback = new MyApplicationCallback();
                app.setApplicationCallback(appCallback);
                SampleTestDB.registerCallbackHandler(new CustomerDBCallback());
                SampleTestDB.setApplication(app);
                SampleTestDB.getSynchronizationProfile().setServerName(HOST); // Convenience only
                ConnectionProperties connProps = app.getConnectionProperties();
                LoginCredentials loginCredentials = new LoginCredentials(USERNAME, PASSWORD);
                connProps.setLoginCredentials(loginCredentials);
                connProps.setServerName(HOST);
                connProps.setPortNumber(PORT);
                if (app.getRegistrationStatus() != RegistrationStatus.REGISTERED)
                 try {
                  app.registerApplication(TIMEOUT);
                 catch (Exception e)
                  Log.e("Emp101","Cannot register " + e.getMessage());
                else
                    app.startConnection(TIMEOUT);
                Log.i("Emp101","Application REGISTERED");
                if (!SampleTestDB.isSynchronized("default"))//
                 Log.i("Emp101","Starting Initial Sync");
                    SampleTestDB.disableChangeLog();
                    SampleTestDB.synchronize(); // AFTER  THIS STATEMENT IT IS GIVING THAT ERROR
                    SynchronizationGroup sg = SampleTestDB.getSynchronizationGroup("default");
                    sg.setEnableSIS(true);
                    sg.save();
                  //  SampleTestDB.subscribe();
                    Log.i("Emp101","Subscribe");
                    SampleTestDB.synchronize();
                    Log.i("Emp101","Initial Sync COMPLETED");
                SampleTestDB.enableChangeLog();
            catch (Exception e)
                e.printStackTrace();
            finally
                initializationDone = true;
            ReadActivity.this.runOnUiThread(new Runnable()
                public void run()
                 btnNext = (Button) findViewById(R.id.btn_create);
                    adapter = new EmployeeAdapter(ReadActivity.this);
                  ltList = (ListView) findViewById(R.id.lvRead);
                  ltList.setAdapter(adapter);
    }).start();
   // Start of ApplicationCallback
   class MyApplicationCallback implements ApplicationCallback
      public void onApplicationSettingsChanged(StringList nameList)
        Log.i("Emp101","Application Settings Changed: "+ nameList);
      public void onConnectionStatusChanged(int connectionStatus, int errorCode, String errorMessage)
             switch (connectionStatus)
                 case ConnectionStatus.CONNECTED:
                  System.out.println("Device is Connected");
                  Log.i("ERROR1", "Device is Connected");
                     break;
                 case ConnectionStatus.CONNECTING:
                  System.out.println("Device is Connecting");
                  Log.i("ERROR2", "Device is Connecting");
                     break;
                 case ConnectionStatus.CONNECTION_ERROR:
                  System.out.println("Connection Error: " + errorMessage);
                  Log.i("ERROR3", errorMessage);
                     break;
                 case ConnectionStatus.DISCONNECTED:
                  System.out.println("Device is Disconnected");
                  Log.i("ERROR4", "Device is Disconnected");
                     break;
                 case ConnectionStatus.DISCONNECTING:
                  System.out.println("Device is Disconnecting");
                  Log.i("ERROR5", "Device is Disconnecting");
                     break;
      public void onRegistrationStatusChanged(int registrationStatus, int errorCode, String errorMessage)
             switch (registrationStatus)
                 case RegistrationStatus.REGISTERED:
                  System.out.println("Device is REGISTERED");
                  Log.i("ERROR6", "Device is REGISTERED");
                     break;
                 case RegistrationStatus.REGISTERING:
                  System.out.println("Device is REGISTERING");
                  Log.i("ERROR7", "Device is REGISTERING");
                     break;
                 case RegistrationStatus.REGISTRATION_ERROR:
                  System.out.println("Registration Error: " + errorMessage);
                  Log.i("ERROR8", errorMessage);
                     break;
                 case RegistrationStatus.UNREGISTERED:
                  System.out.println("Device is UNREGISTERED");
                  Log.i("ERROR9", "Device is UNREGISTERED");
                     break;
                 case RegistrationStatus.UNREGISTERING:
                  System.out.println("Device is UNREGISTERING");
                  Log.i("ERROR10", "Device is UNREGISTERING");
                     break;
      public void onHttpCommunicationError(int errorCode, String errorMessage, StringProperties httpHeaders)
       System.out.println("ERROR - HTTP Communication Error: "+ errorMessage);
      public void onDeviceConditionChanged(int condition)
       System.out.println("Device Condition Status: "+ condition);
   public void onCustomizationBundleDownloadComplete(String arg0,
     int arg1, String arg2) {
    // TODO Auto-generated method stub
   public int onPushNotification(Hashtable arg0) {
    // TODO Auto-generated method stub
    return 0;
   //....End of ApplicationCallback
    private class CustomerDBCallback extends DefaultCallbackHandler
         @Override
         public int onSynchronize(GenericList<SynchronizationGroup> groups, SynchronizationContext context)
             if (context.getStatus() == SynchronizationStatus.STARTING)
                 ReadActivity.this.runOnUiThread(new Runnable()
                     public void run()
                         Toast.makeText(ReadActivity.this, "Synchronizing ... ", Toast.LENGTH_LONG).show();
             else if (context.getStatus() == SynchronizationStatus.FINISHING || context.getStatus() == SynchronizationStatus.ASYNC_REPLAY_UPLOADED)
              ReadActivity.this.runOnUiThread(new Runnable()
                     public void run()
                         Toast.makeText(ReadActivity.this, "Synchronize done", Toast.LENGTH_SHORT).show();
                 if (ReadActivity.this.adapter != null)
                  ReadActivity.this.adapter.refreshUI(false);
             return SynchronizationAction.CONTINUE;
@Override
public boolean onCreateOptionsMenu(Menu menu) {
  // Inflate the menu; this adds items to the action bar if it is present.
  getMenuInflater().inflate(R.menu.read, menu);
  return true;

Similar Messages

  • There was a recent upadate on my PC, however it does not work. A error code comes up which says, min version is not compatible with max version. And I caanot open my browser. Please help.

    I do a system restore which allows me to open my browser. Without this I cannot open my browser - the error code comes up every time.

    Do a clean (re)install
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data when uninstalling.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    From https://support.mozilla.com/en-US/questions/764376

  • Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CR...

    Post Author: lkamesam
    CA Forum: Integrated Solutions
    Hi,
            I am running Crystal Reports version 10 from IBM Rational 6.0.1  build 20050725_1800 XML data source. When I try to run the report under WAS 6.0.1 I get the following error:
    Does any body have any clue how to resolve my problem? Thanks
    Error 500: Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CRDB_XMLImpl This is often caused by having the class at a higher point in the classloader hierarchy Dumping the current context classloader hierarchy: ==> indicates defining classloader *** indicates classloader where the missing class could have been found ==>&#91;0&#93; com.ibm.ws.classloader.CompoundClassLoader@163dd786 Local ClassPath: C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\classes;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\bobj_platform_jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cecore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\celib.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ceplugins.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cereports.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cesession.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\clientlogic.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\Concurrent.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CorbaIDL.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLExternal.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLServer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCharting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalContentModels.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExporters.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExportingBase.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalFormulas.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalQueryEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportingCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ebus405.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\icu4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jrcerom.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jsf_common.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\keycodeDecoder.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\log4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\MetafileRenderer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rasapp.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rascore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rpoifs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\serialization.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\URIUtil.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting-jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xercesImpl.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xmlParserAPIs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent; Delegation Mode: PARENT_FIRST &#91;1&#93; com.ibm.ws.classloader.JarClassLoader@338761606 Local Classpath: Delegation mode: PARENT_FIRST &#91;2&#93; com.ibm.ws.classloader.ProtectionClassLoader@38e75786 &#91;3&#93; com.ibm.ws.bootstrap.ExtClassLoader@7e475784 &#91;4&#93; sun.misc.Launcher$AppClassLoader@7e5a5784 &#91;5&#93; sun.misc.Launcher$ExtClassLoader@7e565784 -Original exception- java.lang.NoClassDefFoundError: OCA/OCAdbdll/DbDLLOperations at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java(Compiled Code)) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader._defineClass(CompoundClassLoader.java:576) at com.ibm.ws.classloader.CompoundClassLoader.findClass(CompoundClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java(Compiled Code)) at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code)) at com.crystaldecisions.reports.queryengine.driver.i.<init>(Unknown Source) at com.crystaldecisions.reports.queryengine.driver.i.case(Unknown Source) at com.crystaldecisions.reports.queryengine.av.ak(Unknown Source) at com.crystaldecisions.reports.queryengine.av.else(Unknown Source) at com.crystaldecisions.reports.queryengine.av.byte(Unknown Source) at com.crystaldecisions.reports.queryengine.av.do(Unknown Source) at com.crystaldecisions.reports.queryengine.as.new(Unknown Source) at com.crystaldecisions.reports.queryengine.at.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.b(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.a(Unknown Source) at com.crystaldecisions.reports.common.ab.a(Unknown Source) at com.crystaldecisions.reports.common.ab.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.a.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source) at com.crystaldecisions.report.web.a.a.K(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.bx.a(Unknown Source) at com.crystaldecisions.report.web.event.b1.broadcast(Unknown Source) at com.crystaldecisions.report.web.event.as.a(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.if(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source) at com.crystaldecisions.report.web.ServerControl.a(Unknown Source) at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ServerControlTag.doEndTag(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.doEndTag(Unknown Source) at com.ibm._jsp._sample._jspx_meth_crviewer_viewer_0(_sample.java:135) at com.ibm._jsp._sample._jspService(_sample.java:77) at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117) at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171) at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220) at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681) at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934) at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021) at

    For those who would have the same problem, here is how I could eventually fix it.
    Since the Flex Test Drive is sometimes out of sync with flash builder 4, I recreated a project using other help pages on Adobe site :
    Entry point :
    http://help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08- 7ffd.html
    As suggested, I used the New Project wizard to create a new project, with :
    Application server type : J2EE
    Check the radio button "Use remote object access service : BlazeDS"
    Then, as indicated in following pages (section "Accessing BlazeDS")... :
    file:///C:/Mes%20documents%20C/Commun/Developpement/Documentation/HT-Tracks/AccessingData/ help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08-7ffe.ht ml#WSbde04e3d3e6474c4-19a3f0e0122be55e1b7-8000
    ...I selected the "Data / Connect to Data/Services..." menu option, which started the Data/service connection wizard.
    There, I selected a BlazeDS (and not Web Services) service type, and everything went fine.
    Suggestion to adobe staff : maybe it would be useful to update the Flex Test Drive to reflect Flash Builder 4 ?
    Very nice product anyway, so far, congratulations...
    Rgds
    Marc.

  • TS3694 Just took my 1st gen iPod out of it's original box, never used before.  Plugged it into my new Mac book Pro and it recognizes that the iPod is in recovery mode but when I click to restore, error 1611 comes up - but that error code doesn't say what

    I had an 8GB 1st gen iPod in it's original box in storage and just took it out to hook it up.  Charged it overnight, plugged it into new Mac Book Pro and it was recognized as being an iPod in recovery but other identifying information was all indicated as "n/a" (so, unknown OS, etc).  Error code 1604 came up so I downloaded iTunes on the Mac Book and it is currently showing version 10.  But now when I try to restore the iPod, error code 1611 comes up and the troubleshooting doesn't tell me what else to try.  The USB connector that came with the iPod was also never used before - brand new also from the box so that should be fine.  I also tried a different USB port on the Mac Book.  Any ideas?

    Error 1611
    This error typically occur when security software interferes with the restore and update process. FollowTroubleshooting 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.

  • I am trying to burn a dvd on my mac book pro but it comes up with an error code 0x80020022. How do I fix it? Thanks

    I am trying to burn a dvd on my mac book pro but it comes up with an error code 0x80020022. How do I fix it? I have tried rebooting through PRAM and various other options that I found online, but nothing has helped.
    Thanks

    Try using a different brand of DVD's.

  • HT1414 my iphone 4 running on IOS 5 will not come out of recovery mode and gives the error code -1. Can any one help me please because i've been without a phone for 2 weeks and still not getting anywhere.

    Hi there could someone out there please help i've got a Iphone 4 running on IOS 5 and it will not come out of recovery mode> It comes up with the error code -1 which i've looked everywhere on the web but no one seams to have the same issue.
    This is a reconditioned replacement phone from the apple genius guys which i paid £130 for and only got 3 months warranty with and as soon as the warranty run out it crashed on me and never been able to get it back out of recovery mode. I've been back to the apple genius guys and they have told me there's nothing they can do other than charge me £130 to take the phone off me and give me another reconditioned phone with a 3 month warranty. Which as you can properly tell i dont want to.
    PLEASE PLEASE HELP ME thanks for your time

    This is a bad hardware error, Baseband Error. Some have reported getting through this error by Restoring iPhone with the SIM Card removed. Try that. Try restoring with different computer. Search Web some more for other thoughts.

  • TS3694 I cant get my ipad 2 out of recovery. The apple icon stays on and nothing happens. I tried restoring it through Itunes but it comes up with a 3194 error code. I have the latest Itunes being 10.6.1.7 and the latest windows update.Can someone please

    I cant get my ipad 2 out of recovery. The apple icon stays on and nothing happens. I tried restoring it through Itunes but it comes up with a 3194 error code. I have the latest Itunes being 10.6.1.7 and the latest windows update.Can someone please help?

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • Error code: ssl_error_no_cypher_overlap comes up when I try to veiw the log in screen on tumblr, how to fix this in FireFox 26.0?

    I can browse through tumblr just fine, but whenever I go to the login page it said:
    Secure Connection Failed. An error occurred during a connection to www.tumblr.com. Cannot communicate securely with peer: no common encryption algorithm(s). (Error code: ssl_error_no_cypher_overlap)
    I understand that tumblr has certification errors but that never happened to me before I until I upgraded to Firefox 26.0. I like FF and I don't want to use any other browser.
    How to fix this?

    Does it help if you either disable SSL3 or disable TLS as a test?
    security.tls.version.min = 1 and security.tls.version.max = 1 disables SSL3 and enables TLS 1.0
    security.tls.version.max = 0 and security.tls.version.max = 0 enables SSL3 and disables TLS 1.0
    Type <b>about:config</b> in the location (address) bar and press the <i>Enter</i> key to open the <i>about:config</i> page like you open a website by typing the URL in the location bar.
    *If you see a warning message then you can confirm that you want to access the about:config page.
    *http://kb.mozillazine.org/about:config
    See:
    *http://kb.mozillazine.org/security.tls.version.*
    0 means SSL 3.0, 1 means TLS 1.0, 2 means TLS 1.1, etc.
    You can try to rename the cert8.db file in the Firefox profile folder to cert8.db.old or delete the cert8.db file to remove intermediate certificates that Firefox has stored.
    If that helped to solve the problem then you can remove the renamed cert8.db.old file.
    Otherwise you can rename (or copy) the cert8.db.old file to cert8.db to restore the previous intermediate certificates.
    Firefox will automatically store intermediate certificates when you visit websites that send such a certificate.
    If that didn't help then remove or rename secmod.db (secmod.db.old) as well.

  • When I try to install adobe photoshop 13 on my computer it comes up with the following error message " This installer does not support installation on a 64bit windows operating system" error code 6. How to I recify this? TIA

    When I try to install adobe photoshop 13 on my computer it comes up with the following error message " This installer does not support installation on a 64bit windows operating system" error code 6. How to I recify this? TIA

    You can try downloading the 64 bit version.  You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. W

    Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. What shall I do?

    Alauda_positos I would recommend reviewing your installation log files to determine the exact directory which the installer is unable to access.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors discovered to this discussion.
    For information on how to adjust file permissions please see Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.

  • I cannot open photo's stored in my i photo library to edit in Photoshop Elements.  Adobe comes up with the message program error. I use a Macbook Air.

    I cannot open photo's stored in my i photo library to edit in Photoshop Elements.  Adobe comes up with the message program error. I use a Macbook Air.

    No, that is done deliberately, since letting other programs poke around in the iphoto library is the fastest known way to corrupt it and make it wither up and die, along with your photos. If you want to use PSE with iphoto you have two choices:
    1. Set PSE as your external editor and send the photos from iphoto. Edit them, then save without changing the name or format and iphoto will remember your last saved edits + original, although you have to lose the edits to see the original again. You may need to set the editor prefs>saving files>on first save to save over existing to make this work.
    2. Export the photos from iphoto, use file>open in PSE, make all the changes of any sort that you like, save the file, and import it to iphoto as a new file.

  • I KEEP GETTING ERROR MESSAGES 403 AND 404 WHEN TRYING TO SEARCH FROM FIREFOX..HOW COME

    when I bring up firefox it is usually to get into my mail...if I try to search for something thru google /yahoo I get error messages 403 or 404 ...

    ''SusanR62 [[#answer-722913|said]]''
    <blockquote>
    The only system I can get the video to work is Chrome.
    </blockquote>
    This is because Chrome does not use Adobe Flash Player. Chrome uses something called Pepper Flash, maintained by Google (not Adobe). The issues you are experiencing are Adobe Flash Player issues. You should be able to get assistance with these issues [https://forums.adobe.com/community/flashplayer/using_flashplayer on the Adobe forums].

  • Com.sap.connectivity.cs.extended.connectionserver error in webi

    Hi
    I am getting the below error in webi.
    com.sap.connectivity.cs.extended.connectionserver error in webi while running the report.
    Please let us know ASAP.

    We have raised SAP note for this and we got the solution.
    Create new APS server and
    add the following required services to the APS
    "DSL Bridge Service"
    "Adaptive Connectivity Service"
    SAP Note for this
    0001775372   Error csEx WIS 00000 when trying to create a web intelligence document
    Regards
    Gaurav Mang.

  • Itune error code 3 come  at the end of restoring process

    help!! my iphone 5 is stuck in recovery mode and when I try to restore it,my iphone start restoring (ios7.1)but in middle of restoring I get itune error code 3,so pls help and the error come  at the end of restoring process

    aparsethi wrote:
    but in middle of restoring I get itune error code 3,
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    Also, confirm your security software and settings are allowing communication between your device and update servers.
    If you still see the error message when you update or restore, contact Apple support.

  • Every time i empty my recycle bin it comes up with error code -50. What can i do

    every time i empty my recycle bin it comes up with error code -50.

    Some trash tips:
    http://support.apple.com/kb/HT1526?viewlocale=en_US&locale=en_US
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use/
    http://www.thexlab.com/faqs/trash.html
    http://fairerplatform.com/2013/10/force-empty-trash-os-x-mavericks/
    You can also download TrashIt, it can be helpful in stubborn situations:
    http://www.nonamescriptware.com/

Maybe you are looking for

  • NQSError: 47051 error on Windows cluster

    I'm getting nQSError: 47051 while installing OBIEE cluster on windows. Here's the situation. We are installing OBIEE (10.1.3.4) on a two node (Windows 2003, SP2) cluster. The shared file system is built on a SAN using windows clustering. This windows

  • Right Click Pop up Menu in internet Explorer

    i want to add my own options in the default context menu of the internet explorer which appear when we right clik the mouse. i want to show the customized right click pop up menu in my web application not just on my own machine by editing the registr

  • Master detail form ... EXTREMELY URGENT

    gurus, here is my situation - i have 2 tables ... master ---> base_rate_type detail ---> base_rates the detail table has base rates for the base rate type in master. the detail can have multiple records but, only one active base rate. when the form i

  • ZipException

    I have written code to zip files onto multiple floppies. While unzipping these files the user gets the following exception. java.util.zip.ZipException: invalid stored block lengths. The user of this code got a new laptop and was trying to unzip files

  • Setting The Default Route in a Jumpstart Install with Multiple Interfaces

    Greetings, I'm performing a Jumpstart install on a SPARC v240 server, which has multiple network interfaces. I'm trying to configure all of the interfaces as part of the Jumpstart setup. However, Jumpstart doesn't like the default route that I'm supp