Jconsole tab debugging

Does anyone having any suggestions on how to try and debug a plugin tab for jconsole ?
I'd like to try and do this from eclipse if possible, the problem is due to having supply the jar file with jconsole instead of class files from eclipse .
any suggestions would be much appreciated.

Yup, I just did that myself. I wrote a main() method in our plugin class and connect to our JMX-enabled app. Here's a code fragment that might get you started:
-- david
private static String JMX_KEY = "com.sun.management.jmxremote.localConnectorAddress";
private static VirtualMachine findMonitorVM() throws AttachNotSupportedException, IOException {
// only local VM's supporting the attach api will respond here. This means JDK 1.6 and newer
for (VirtualMachineDescriptor vmd : VirtualMachine.list()) {
if (vmd.displayName().equals(MONITOR_CLASS)) {
return VirtualMachine.attach(vmd);
return null;
private static String agentAddress() throws Exception {
VirtualMachine vm = findMonitorVM();
if (vm == null) {
throw new RuntimeException("Saffron monitor agent not running");
String addr = vm.getAgentProperties().getProperty(JMX_KEY);
if (addr == null) {
throw new RuntimeException("Remote management agent not loaded");
vm.detach();
return addr;
private static MBeanServerConnection connect() throws Exception {
JMXServiceURL url = new JMXServiceURL(agentAddress());
JMXConnector conn = JMXConnectorFactory.connect(url);
return (conn.getMBeanServerConnection());
private static void startSwingWorker(final MonitorAgentTab agent) {
TimerTask task = new TimerTask() {
public void run() {
agent.makeEventHandler().execute();
Timer timer = new Timer("MonitorAgentTab Swing thread", true);
timer.schedule(task, 0, 2000);
public static void main(String args[]) throws Exception {
MonitorAgentTab agent = new MonitorAgentTab();
agent.setMBeanServerConnection(connect());
agent.startManagement();
JFrame frame = new JFrame("MonitorAgentTab");
frame.getContentPane().add(agent);
frame.setPreferredSize(new Dimension(900, 500));
frame.pack();
frame.setVisible(true);
startSwingWorker(agent);
}

Similar Messages

  • How can i debug a Form in 6i environment

    I want to debug a form in 6i environment. WIth trace utility can i do it?if yes pls help me in this

    Why not just use the "Run Form Debug" toolbar button or Program => Run Form => Debug? Just simply type "break;" in the trigger or Program Unit you want the Debugger to break in and step through the code to see what is happening. Running the Form in Diagnostics Mode as Draji suggests is an excellent option as well, but reading the output file can be a bit daunting and doesn't let you "See" what your code is doing. The Forms debugger is an excellent tool. It is well worth learning how to use.
    You can also turn Debug Messages on - which basically just displays an alert with the name of each trigger that executes. You can turn on the Debug Messages from: Tools => Preferences => Runtime tab => Debug Messages checkbox.
    Hope this helps.
    Craig...

  • Debugging jsp dynpage

    I wish to debug a JSP dynpage project.
    For that I selected Debug perspective and then Create Manage and Run Configuarations. There I selected Remote Java application.
    I get a message "Failed to connect to remote VM. Connection refused".
    I entered localhost and 5000 as port. Is there any problem with it?

    Hello Prem,
    You should start your J2EE-Server in Debug mode to be able to debug:
    Steps to follow to start J2EE-Server in Debug mode
    1. Run ConfigTool "configtool.bat" which is under path "C:\usr\sap\J2E\JC00\j2ee\configtool\configtool.bat"
    2. In ConfigTool goto -->
    cluster-data>instance_ID*****>server_ID******
    then on the right details-window, goto Tab "Debug".
    Select the check box "Debuggable" and Check box "Enable debug mode" and set a "Debug port" generally 50021.
    Now restart server and try connecting to the remote VM with your Debug port.
    Greetings,
    Praveen Gudapati

  • How to Debug Functional Module called via RFC?

    Hi Experts,
         Please, can someone explain to me how to debug functional module that is called via RFC? Thanks in advance.
      Best Regards,
    Aleksandar

    Hi Laxman,
       First of all thank you very much for giving attention to my post. Ok, I am trying to debug function module in RM-CA (FICA), function module is called by CRM system (via RFC) and in addition all this chain is triggered by WebClient.
         I have user that can login on the CRM as well as on RM-CA (ECC 6.0) system, but those users are different (unfortunately I do not have administration permission so I can’t change profiles of my users but I can ask for it). I can without any problem debug calls that come from WebClient, so setting an external break point in CRM system I can catch whatever I want but when process comes to point where actually call to back-end (RM-CA) takes place I simply can’t get into functional module, that resides on RM-CA side. Actually what happens is that processing continues as was chosen ‘NEXT STEP’ (F6).
         To resume, two systems and two different users. Where XCM user should be created? (on RM-CA system or CRM). Should I change something in Menu option Utilities -> Settings -> ABAP Editor tab -> Debugging tab, in field users?  If you need any additional info please tell me.
      Thanks again for your support.
    Aleksandar

  • How to debug using External Breakpoint

    Hello,
    I am using external breakpoint in system B.
    I am running a program in systemA which updates table in systemB through programB.
    I am using RFCuser to login to system B.
    Currently it is not going in debugging mode in program B.
    KIndly suggest what needs to be done?

    You need to do the following.
    1. Identify the userid you are using for the RFC session.
    2. While in the ABAP editor, go to Utilities->Settings
    3. Ensure that you are in the tab 'Abap Editor'
    4. Under the tab 'Abap Editor' go to the tab 'Debugging'
    5. Ensure that the user name entered there is the one identified in step 1.
    6. Set the external breakpoint
    7. Logon to the target system.
    At this stage, when you start the external transaction, it should stop where you set the breakpoint.

  • Enable the Debug mode for Dispatcher and Server0.

    Hello All,
            In our EP server 7.0(stand alone java) apart from SDM we need to enable the Debug mode for Dispatcher and Server0.I tried to do it from mmc but cannot do so.When I try to right click & enable from mmc the "Enable Process" is not highlited,it is disabled.How Can I enable the the Debug mode for Dispatcher and Server0?

    Hi
    Goto Configtool Select Instance_IDxxxxx on the right side you can see "Servers Debug" tab, select that and choose, enable debug and debuggable options.
    Save the settings.
    Then expand the above mentioned node and select Server_IDxxxxxxx , you will see a tab Debug select it and choose, enable debug and debuggable options.
    Save the settings.
    After it is done, take a restart of the instance. This should help you.
    Regards
    Rahul

  • Debugging the MODIFY_CLASS ABAP Class

    Hi, I created a class to modify the contents of a cell and I'm not too familiar with the methods.  So I overrode the methods and added a break point. 
    How do I get to debug this ABAP Class when the application is executed on the web?
    Thanks!

    You need to turn on External Debugging:
    Assuming you are in your class (SE24) > Utilities > Settings > ABAP Editor Tab > Debugging Sub-Tag > Check the box to activate External Debugging. Your user ID should be in the user box.
    Now when you execute the application on the web, it brings you to the debug mode when you hit the breakpoint.
    Hope this helps...

  • How to automatically switch on debugging ??

    Hi ,
    Whenever we restart the machine and debugging mode is switched off and we have to always switch it on manually from the NDS.
    Is there some configuration awailable so that when we restart the machine and start the server it always starts with debugging switched on ?
    Regards,
    Balaji

    Hi Balaji,
    open the Config Tool, select the desired instance_IDxxx->server_IDxxx. There's a tab "Debug", after selecting it set "Debuggable" and "Enabled debug mode" to checked.
    Restart the server.
    Regards
    Stefan

  • Sync does not show tabs from other devices

    I have two computers running Windows 8.1 and FF 26: at work, and at home. Both are synced, however, every time I want to see tabs on the other computer (History - Tabs from other devices) all I see is a blank tab. Sync settings on both are to sync everything (tabs option checked).
    Is this a bug, or is there anything else I need to do to see the remote tabs?

    Hi, yes, other items do sync (bookmarks from remote host show up instantly).
    Here's the log from the home computer (I'm trying to copy the tabs from this computer to my work computer):
    <pre><nowiki>1387934024952 Sync.Service INFO Loading Weave 1.28.0
    1387934024953 Sync.Engine.Clients DEBUG Engine initialized
    1387934024954 Sync.Engine.Clients DEBUG Resetting clients last sync time
    1387934024960 Sync.Engine.Bookmarks DEBUG Engine initialized
    1387934024963 Sync.Engine.Forms DEBUG Engine initialized
    1387934024965 Sync.Engine.History DEBUG Engine initialized
    1387934024968 Sync.Engine.Passwords DEBUG Engine initialized
    1387934024970 Sync.Engine.Prefs DEBUG Engine initialized
    1387934024973 Sync.Engine.Tabs DEBUG Engine initialized
    1387934024973 Sync.Engine.Tabs DEBUG Resetting tabs last sync time
    1387934024978 Sync.Engine.Addons DEBUG Engine initialized
    1387934024978 Sync.Service INFO Mozilla/5.0 (Windows NT 6.3; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0
    1387934024980 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1387934024981 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1387934024982 Sync.Service DEBUG Caching URLs under storage user base: https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/
    1387934024982 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1387934024982 Sync.AddonsReconciler INFO Registering as Add-on Manager listener.
    1387934024982 Sync.AddonsReconciler DEBUG Adding change listener.
    1387934025000 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1387934025002 Sync.Engine.AdblockPlus DEBUG Engine initialized
    1387934025002 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1387934026065 Sync.SyncScheduler DEBUG Next sync in 86400000 ms.
    1387934033549 Sync.Tracker.History DEBUG Saving changed IDs to history
    1387934112297 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1387934112297 Sync.SyncScheduler DEBUG Next sync in 86313703 ms.
    </nowiki></pre>
    And here's the log on the work computer:
    <pre><nowiki>1379558743354 Sync.Service INFO Loading Weave 1.25.0
    1379558743356 Sync.Engine.Clients DEBUG Engine initialized
    1379558743395 Sync.Engine.Clients DEBUG Resetting clients last sync time
    1379558743401 Sync.Engine.Bookmarks DEBUG Engine initialized
    1379558743404 Sync.Engine.Forms DEBUG Engine initialized
    1379558743491 Sync.Engine.History DEBUG Engine initialized
    1379558743497 Sync.Engine.Passwords DEBUG Engine initialized
    1379558743604 Sync.Engine.Prefs DEBUG Engine initialized
    1379558743610 Sync.Engine.Tabs DEBUG Engine initialized
    1379558743611 Sync.Engine.Tabs DEBUG Resetting tabs last sync time
    1379558743667 Sync.Engine.Addons DEBUG Engine initialized
    1379558743667 Sync.Service INFO Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0
    1379558743884 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1379558743885 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558743885 Sync.Service DEBUG Caching URLs under storage user base: https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/
    1379558743885 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558743885 Sync.AddonsReconciler INFO Registering as Add-on Manager listener.
    1379558743885 Sync.AddonsReconciler DEBUG Adding change listener.
    1379558753130 Sync.Engine.AdblockPlus DEBUG Engine initialized
    1379558759692 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558763718 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558763721 Sync.Service DEBUG User-Agent: Firefox/23.0.1 FxSync/1.25.0.20130814063812.
    1379558763721 Sync.Service INFO Starting sync at 2013-09-18 19:46:03
    1379558763721 Sync.Service DEBUG In sync: should login.
    1379558763721 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558763721 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558763721 Sync.Service INFO Logging in user flquys5cfbvsalyk3tiehzjre77bgph2
    1379558763721 Sync.Service DEBUG Caching URLs under storage user base: https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/
    1379558787300 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1379558843929 Sync.SyncScheduler DEBUG Next sync in 86400000 ms.
    1379558857661 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/info/collections
    1379558857661 Sync.Resource DEBUG GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/info/collections
    1379558857661 Sync.Service DEBUG Fetching global metadata record
    1379558863518 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/storage/meta/global
    1379558863518 Sync.Resource DEBUG GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/storage/meta/global
    1379558863518 Sync.Service DEBUG Weave Version: 1.25.0 Local Storage: 5 Remote Storage: 5
    1379558863518 Sync.Service INFO Sync key is up-to-date: no need to upgrade.
    1379558863518 Sync.Service DEBUG Fetching and verifying -- or generating -- symmetric keys.
    1379558894438 Sync.Tracker.History DEBUG Saving changed IDs to history
    1379558909190 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/info/collections
    1379558909190 Sync.Resource DEBUG GET success 200 https://phx-sync-1-3-0.services.mozilla.com/1.1/flquys5cfbvsalyk3tiehzjre77bgph2/info/collections
    1379558909523 Sync.Service INFO Testing info/collections: {"passwords":1379541660.29,"addons":1375980277.93,"tabs":1379541660.56,"clients":1379528737.81,"crypto":1375980218.18,"forms":1379541655.78,"meta":1375980278.94,"bookmarks":1378769210.15,"prefs":1375980277.24,"history":1379541659.17}
    1379558909524 Sync.CollectionKeyManager INFO Testing for updateNeeded. Last modified: 0
    1379558909524 Sync.Service INFO collection keys reports that a key update is needed.
    1379558909524 Sync.Tracker.History DEBUG Saving changed IDs to history
    1379559011304 Sync.Service WARN Got exception "Error: NS_ERROR_NET_RESET" fetching cryptoKeys.
    1379559011304 Sync.Status DEBUG Status.login: success.login => error.login.failed
    1379559011304 Sync.Status DEBUG Status.service: success.status_ok => error.login.failed
    1379559011304 Sync.Service WARN Failed to fetch symmetric keys. Failing remote setup.
    1379559011304 Sync.Service WARN Remote setup failed.
    1379559011304 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1379559011304 Sync.SyncScheduler DEBUG Next sync in 86400000 ms.
    </nowiki></pre>
    As you can see, there are some potential authentication issues, but I don't understand why would it only affect tabs sync, while bookmarks are fine. Note also that I merged all the stuff to the sync account by Sync - Manage Account - Reset Sync - Merge data from this device browser into your Sync account.
    Thanks for your help!

  • Inability to debug on Local WAS (SAP DB)

    I'm using the WAS (J2EE) locally with SAP DB, and I'd like to activate debugging, but the Dev studio (2.0.7), has the context menu for the server completely disabled.
    Anyone know how to activate debugging on the local install?
    Thanks in advance,
    Matt

    Hi Matt
    Go to
    C:\usr\sap\J2E\JC00\j2ee\configtool\configtool.bat
    Go to instance_ID<> -> Server_ID<>
    Click on tab Debug and click Debuggable
    Save and restart instance
    This should bring up the menus . I thought it was set to debuggable by default
    Regards
    Pran

  • Break points are not triggering in RFC from portal application

    Helllo,
    I am running Biller Direct application from portal, which is triggering a standard SAP RFC FM back end, am trying to debug my execution from portal, for this i put the External Break point, Session break-poiint at the beginning of this SAP RFC FM, but, its not stoppping at ll, here the user is a Web user, not dialog user.
    How can i stop my execution in this SAP RFC FM to check how the structures are populated?
    Thank you

    Hi Raju,
    Please try the below way and check if it works.
    Open the RFC in R/3 i.e.
    SE37 -> give FM NAME -> DISPLAY.
    Click on UTILITIES -> SETTINGS -> CLICK THE TAB debugging.
    In the screen against the field users : give the value 'WEBLOGIN'.
    Uncheck the FLAG 'IP MATCHING'.
    And at the bottom check the check box against the field
    'Session Break Point Activate Immediately'.
    Save these settings.
    Then go to the line at which you want to debug the code and put an external break point over there.
    But, please take care of one thing as we are giving it as a WEBLOGIN, when ever some logs in, it will reach the brteak point and stop there. We have to click F8 to continue. Or else, the portal will be hanged for them.
    Thanks & regards,
    Y Gautham

  • How to get into a breakpoint in a OData Webservice?

    Hi, I have the following Problem:
    I implemented a Webservice via the SEGW transaction. Then I implemented the Methods in the ..._DCP_EXT Class. Now I need to set a breakpoint in one of my methods in this class because I want to debug it. The problem is, that when I call the webservice via my browser, I dont reach the breakpoint and I dont know why.
    How to set a breakpoint for a method of a implemented OData webservice?

    Hi Michael,
    You need to check the user ID of web logon id and SAP gui logon id.
    if two ids are same. you need to check whether you use the External breakpoint.
    if two ids are different. you need to check the debug id.
    Utilities->Setting->ABAP Editor tab->Debugging tab-> changing the user id same as Web logon id.
    then set an external breakpoint by this id.
    You try again to test.
    Regards,
    Yawa

  • Sync stopped across all my PCs after updating to FF 20.0 on a Linux PC (mix of FF versions). Logs indicate err 503, so coincidence; will this resolve itself?

    I use Sync across a desktop PC and a laptop PC. The desktop runs Vista; the laptop dual-boots Linux and WinXP. Back in the day, I initiated Sync with the desktop, then paired both Firefox installations from each of the laptop's OSes. I sync all available objects. I haven't used Firefox on the laptop/WinXP since before the issue started, and I cannot recall what version I'm at there. I have not attempted to run Firefox from the laptop/WinXP side since the issue started.
    My experience has been unremarkable (good) until just a couple of days ago. On the desktop I was already at Firefox ver. 20, while on the laptop's Linux OS, I had been at FF 19.
    On the laptop/Linux, I had these recent experiences just before the trouble started:
    1) Operating under FF 19, Sync appeared normal. Autoupdate to ver. 20 offered but would never connect and start when selected. Abort and re-check Help->About presented a manual download link for ver. 20 instead.
    2) Updated via manual download/install of ver. 20 via suggested link. No issues noticed; Sync appeared normal.
    3) Unrelated activities caused me to boot Linux under a root filesystem (including /home) version from the day before I installed ver. 20, and I needed and did run FF ver. 19 again while on this filesystem. Sync _may_ have run and if so, I do not know if it was okay with going "back in time" this way. I was not paying close attention to it at the time, except to say I didn't notice anything unusual about my browsing experience.
    4) With the unrelated activities handled, I resumed booting from my normal and current root filesystem, containing FF ver. 20 and my /home and profile from after the upgrade. Again, I did not notice anything obviously wrong.
    Later, on the desktop system, the next sync caused all the graphics in my selected personas skin to vanish, leaving just the underlying color style. No other stored personas worked. All sync'ed items appeared to be untouched, but the problem with the personas skins alerted me to somthing being wrong. Attempts to re-sync failed.
    Still later, back on the laptop/Linux, the next sync produced the same effect with the personas skins. They remain listed by name, but their source graphics (including addons list icons and text descriptions) have vanished. No other issues are apparent, and no addons or settings, etc. appear to be missing.
    Re-sync attempts from either system now fail, but after retrying, indicate the problem is with the server being unavailable due to maintenance...suggesting the Sync service is having an issue, and when it comes back, this will resolve itself. Is that the case, making this just a big coincidence, or is there more going on?
    I can provide the saved log files from either the desktop FF ver. 20, or the laptop/Linux FF ver. 20. I cannot provide any logs from the backup root filesystem that contained laptop/Linux FF ver. 19, as that snapshot is now gone. Also, I've not run FF (ver. ?) from the laptop/WinXP side so far during this evolution...but I could provide data and logs from there if it would help.
    An excerpt from the most recent sync attempt from my desktop system appears below to illustrate the error:
    1366952880580 Sync.Service DEBUG Fetching global metadata record
    1366952891895 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/meta/global
    1366952891895 Sync.Resource DEBUG GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/meta/global
    1366952891895 Sync.Service DEBUG Weave Version: 1.22.0 Local Storage: 5 Remote Storage: 5
    1366952891896 Sync.Service INFO Sync key is up-to-date: no need to upgrade.
    1366952891896 Sync.Service DEBUG Fetching and verifying -- or generating -- symmetric keys.
    1366952891897 Sync.SyncKeyBundle INFO SyncKeyBundle being created.
    1366952903521 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections
    1366952903522 Sync.Resource DEBUG GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections
    1366952903522 Sync.Service INFO Testing info/collections: {"passwords":1365577320.11,"addons":1366750745.5,"tabs":1366950617.59,"clients":1366948047.1,"crypto":1365145328.28,"forms":1366860655.89,"meta":1365145380.12,"bookmarks":1366799244.25,"prefs":1366692754.54,"history":1366950593.58}
    1366952903522 Sync.CollectionKeyManager INFO Testing for updateNeeded. Last modified: 0
    1366952903522 Sync.Service INFO collection keys reports that a key update is needed.
    1366952909816 Sync.SyncScheduler DEBUG Next sync in 3600000 ms.
    1366952910712 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/crypto/keys
    1366952910712 Sync.Resource DEBUG GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/crypto/keys
    1366952910713 Sync.CollectionKeyManager INFO Updating collection keys...
    1366952910716 Sync.CollectionKeyManager INFO Setting collection keys contents. Our last modified: 0, input modified: 1365145328.28.
    1366952910716 Sync.BulkKeyBundle INFO BulkKeyBundle being created for [default]
    1366952910716 Sync.CollectionKeyManager INFO Processing downloaded per-collection keys.
    1366952910717 Sync.CollectionKeyManager INFO Clearing collection keys...
    1366952910717 Sync.CollectionKeyManager INFO Saving downloaded keys.
    1366952910717 Sync.CollectionKeyManager INFO Bumping last modified to 1365145328.28
    1366952910717 Sync.CollectionKeyManager INFO Collection keys updated.
    1366952910717 Sync.Status DEBUG Status.login: success.login => success.login
    1366952910717 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366952910731 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366952910732 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366952910733 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1366952910734 Sync.Status INFO Resetting Status.
    1366952910735 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366952911057 Sync.SyncScheduler DEBUG Next sync in 3600000 ms.
    1366952922945 Sync.Resource DEBUG mesg: GET fail 503 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections?v=1.22.0
    1366952922945 Sync.Resource DEBUG GET fail 503 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections?v=1.22.0
    1366952922946 Sync.ErrorHandler DEBUG Got Retry-After: 300
    1366952922946 Sync.Status DEBUG Status.sync: success.sync => error.sync.reason.serverMaintenance
    1366952922946 Sync.Status DEBUG Status.service: success.status_ok => error.sync.failed

    UPDATE 04260817z -- Suggestions?
    The latest Sync log for my desktop system indicates sync completed this time, but there appear to be problems with the personas skins addons. From what I can gather trying my best to interpret the log, something might have happened with one of my paired instances of FF when it transmitted or updated the list of these addons. This log indicates it cannot sync the personas skins because they're not available from the sync store (and they've been partially wiped out from my FF instances). So I guess my desktop's FF knows it has had a given personas skin installed, and when trying to reactivate it, discovers the data is missing, and tries to fetch it from Sync, but sync doesn't have it...stuck.
    Have a look at this log, confim my interpretation, and please offer suggestions for how to try to proceed without breaking anything else. Thanks!!
    <pre><nowiki>1366961420118 Sync.ErrorHandler DEBUG Flushing file log.
    1366961420120 Sync.Status DEBUG Status.service: error.sync.failed_partial => success.status_ok
    1366961420121 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366961420121 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366961420166 Sync.ErrorHandler DEBUG Log cleanup threshold time: 1366097420166
    1366961420229 Sync.ErrorHandler DEBUG No logs to clean up.
    1366961808086 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366963496275 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366963508078 Sync.AddonsReconciler DEBUG Add-on change: onDisabling to [email protected]
    1366963508078 Sync.AddonsReconciler DEBUG Ignoring onDisabling for restartless add-on.
    1366963508084 Sync.AddonsReconciler DEBUG Add-on change: onDisabled to [email protected]
    1366963508085 Sync.AddonsReconciler DEBUG Rectifying state for addon: [email protected]
    1366963508085 Sync.AddonsReconciler DEBUG Adding change because enabled state changed: [email protected]
    1366963508085 Sync.AddonsReconciler INFO Change recorded for [email protected]
    1366963508085 Sync.Tracker.Addons DEBUG changeListener invoked: 4 [email protected]
    1366963508085 Sync.Store.Addons DEBUG [email protected] not syncable: add-on not found in add-on repository.
    1366963508085 Sync.Tracker.Addons DEBUG Ignoring change because add-on isn't syncable: [email protected]
    1366963508088 Sync.AddonsReconciler INFO Saving reconciler state to file: addonsreconciler
    1366963508214 Sync.SyncScheduler DEBUG Global Score threshold hit, triggering sync.
    1366963508259 Sync.AddonsReconciler DEBUG Add-on change: onEnabling to [email protected]
    1366963508259 Sync.AddonsReconciler DEBUG Ignoring onEnabling for restartless add-on.
    1366963508294 Sync.AddonsReconciler DEBUG Add-on change: onEnabled to [email protected]
    1366963508295 Sync.AddonsReconciler DEBUG Rectifying state for addon: [email protected]
    1366963508295 Sync.AddonsReconciler DEBUG Adding change because enabled state changed: [email protected]
    1366963508295 Sync.AddonsReconciler INFO Change recorded for [email protected]
    1366963508295 Sync.Tracker.Addons DEBUG changeListener invoked: 3 [email protected]
    1366963508295 Sync.Store.Addons DEBUG [email protected] not syncable: add-on not found in add-on repository.
    1366963508295 Sync.Tracker.Addons DEBUG Ignoring change because add-on isn't syncable: [email protected]
    1366963508313 Sync.AddonsReconciler INFO Saving reconciler state to file: addonsreconciler
    1366963508317 Sync.Service DEBUG User-Agent: Firefox/20.0.1 FxSync/1.22.0.20130409194949.
    1366963508317 Sync.Service INFO Starting sync at 2013-04-26 08:05:08
    1366963508317 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1366963508318 Sync.Status INFO Resetting Status.
    1366963508318 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1366963508466 Sync.SyncScheduler DEBUG Global Score threshold hit, triggering sync.
    1366963508489 Sync.Service DEBUG User-Agent: Firefox/20.0.1 FxSync/1.22.0.20130409194949.
    1366963508489 Sync.Service INFO Starting sync at 2013-04-26 08:05:08
    1366963508489 Sync.Service DEBUG Exception: Could not acquire lock. Label: "service.js: sync". No traceback available
    1366963508489 Sync.Service INFO Cannot start sync: already syncing?
    1366963509587 Sync.Resource DEBUG mesg: GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections
    1366963509587 Sync.Resource DEBUG GET success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/info/collections
    1366963509588 Sync.Service DEBUG Fetching global metadata record
    1366963509588 Sync.Service DEBUG Weave Version: 1.22.0 Local Storage: 5 Remote Storage: 5
    1366963509588 Sync.Service INFO Sync key is up-to-date: no need to upgrade.
    1366963509588 Sync.Service DEBUG Fetching and verifying -- or generating -- symmetric keys.
    1366963509588 Sync.Service INFO Testing info/collections: {"passwords":1365577320.11,"tabs":1366960299.53,"clients":1366954606.81,"crypto":1365145328.28,"forms":1366860655.89,"meta":1365145380.12,"prefs":1366957189.91,"bookmarks":1366956848.81,"addons":1366750745.5,"history":1366961119.98}
    1366963509588 Sync.CollectionKeyManager INFO Testing for updateNeeded. Last modified: 1365145328.28
    1366963509588 Sync.Synchronizer DEBUG Refreshing client list.
    1366963509589 Sync.Engine.Clients INFO 0 outgoing items pre-reconciliation
    1366963509590 Sync.Engine.Clients INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963509591 Sync.Synchronizer INFO Updating enabled engines: 3 clients.
    1366963509593 Sync.Engine.Bookmarks INFO 0 outgoing items pre-reconciliation
    1366963509594 Sync.Engine.Bookmarks INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963509597 Sync.Engine.Forms INFO 2 outgoing items pre-reconciliation
    1366963509598 Sync.Engine.Forms INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963509611 Sync.Engine.Forms INFO Uploading all of 2 records
    1366963509612 Sync.Collection DEBUG POST Length: 785
    1366963510491 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/forms
    1366963510491 Sync.Collection DEBUG POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/forms
    1366963510493 Sync.Engine.History INFO 13 outgoing items pre-reconciliation
    1366963510494 Sync.Engine.History INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963510521 Sync.Engine.History INFO Uploading all of 13 records
    1366963510522 Sync.Collection DEBUG POST Length: 6875
    1366963510921 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/history
    1366963510921 Sync.Collection DEBUG POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/history
    1366963510923 Sync.Engine.Passwords INFO 0 outgoing items pre-reconciliation
    1366963510924 Sync.Engine.Passwords INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963510925 Sync.Engine.Prefs INFO 1 outgoing items pre-reconciliation
    1366963510926 Sync.Engine.Prefs INFO Records: 0 applied, 0 successfully, 0 failed to apply, 0 newly failed to apply, 0 reconciled.
    1366963510991 Sync.Engine.Prefs INFO Uploading all of 1 records
    1366963510992 Sync.Collection DEBUG POST Length: 21951
    1366963511249 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/prefs
    1366963511249 Sync.Collection DEBUG POST success 200 https://phx-sync299.services.mozilla.com/1.1/rj4aro36czb4apyh6zydowitfljhqed2/storage/prefs
    1366963511250 Sync.Engine.Tabs DEBUG First sync, uploading all items
    1366963511251 Sync.Engine.Tabs INFO 1 outgoing items pre-reconciliation
    1366963518535 Sync.AddonsReconciler DEBUG Add-on change: onEnabling to {972ce4c6-7e08-4474-a285-3208198ce6fd}
    1366963518535 Sync.AddonsReconciler DEBUG Ignoring onEnabling for restartless add-on.
    1366963518568 Sync.AddonsReconciler DEBUG Add-on change: onEnabled to {972ce4c6-7e08-4474-a285-3208198ce6fd}
    1366963518568 Sync.AddonsReconciler DEBUG Rectifying state for addon: {972ce4c6-7e08-4474-a285-3208198ce6fd}
    1366963518568 Sync.AddonsReconciler DEBUG Adding change because enabled state changed: {972ce4c6-7e08-4474-a285-3208198ce6fd}
    1366963518568 Sync.AddonsReconciler INFO Change recorded for {972ce4c6-7e08-4474-a285-3208198ce6fd}</nowiki></pre>
    --snip for 10k limit--

  • Firefox sync on F4B10 stopped working after first sync of Firefox mobile B3

    I run Firefox 4 beta 10 on a Mac OS X 64-bit system and Windows XP 32-bit. I installed Firefox 4 mobile beta 3 on my Nexus S and did my first sync. Since then I have received "Unknown error" from Sync 1.6.1 on both desktop systems, and bookmark sync is no longer working. On the WinXP system sync-log has the following (my username replaced with XXXXXX):
    2011-02-03 14:57:08 Service.Main INFO In sync().
    2011-02-03 14:57:08 Net.Resource DEBUG GET success 200 https://phx-sync238.services.mozilla.com/1.0/XXXXXX/info/collections
    2011-02-03 14:57:08 Service.Main DEBUG Fetching global metadata record
    2011-02-03 14:57:08 Service.Main DEBUG Weave Version: 1.6.1 Local Storage: 5 Remote Storage: 5
    2011-02-03 14:57:08 Service.Main INFO Sync key is up-to-date: no need to upgrade.
    2011-02-03 14:57:08 Service.Main DEBUG Fetching and verifying -- or generating -- symmetric keys.
    2011-02-03 14:57:08 Service.Main INFO Testing info/collections: {"clients":1296742957.64,"crypto":1296742970.37,"forms":1296762685.83,"history":1296762686.62,"keys":1291357753.67,"meta":1293019506.35,"bookmarks":1296608417.98,"passwords":1296762686.98,"tabs":1296762687.52}
    2011-02-03 14:57:08 CollectionKeys INFO Testing for updateNeeded. Last modified: 1296742970.37
    2011-02-03 14:57:08 Engine.Clients INFO 0 outgoing items pre-reconciliation
    2011-02-03 14:57:08 Engine.Clients INFO Records: 0 applied, 0 reconciled.
    2011-02-03 14:57:08 Engine.Clients DEBUG Total (ms): sync 0, processIncoming 0, uploadOutgoing 0, syncStartup 0, syncFinish 0, getChangedIDs 0, syncCleanup 0
    2011-02-03 14:57:08 Service.Main INFO Updating enabled engines: 8 clients.
    2011-02-03 14:57:08 Service.Engines DEBUG Could not get engine: clients
    2011-02-03 14:57:08 Service.Engines DEBUG Engines are: ["bookmarks","forms","history","passwords","prefs","tabs"]
    2011-02-03 14:57:08 Engine.Bookmarks INFO 0 outgoing items pre-reconciliation
    2011-02-03 14:57:12 Engine.Bookmarks DEBUG Total (ms): sync 4031, processIncoming 4027, syncStartup 1, createRecord 3297, getChangedIDs 0, isEqual 3297, reconcile 3298, syncCleanup 0
    2011-02-03 14:57:12 Service.Main DEBUG bookmarks failed: NS_ERROR_NOT_IMPLEMENTED JS Stack trace: Res_get()@resource.js:376 < SyncEngine__processIncoming()@engines.js:511 < _processIncoming()@bookmarks.js:212 < ()@engines.js:203 < SyncEngine__sync()@engines.js:768 < wrappedSync(null)@util.js:168 < batchedSync()@util.js:174 < ()@engines.js:203 < WrappedNotify()@util.js:147 < Engine_sync()@engines.js:213 < WeaveSvc__syncEngine([object Object])@service.js:1738 < ()@service.js:1624 < WrappedNotify()@util.js:147 < WrappedLock()@util.js:119 < WrappedCatch()@util.js:97 < sync(false)@service.js:1529 < ([object Object])@service.js:554 < notify([object XPCWrappedNative_NoHelper])@util.js:1126
    2011-02-03 14:57:12 Engine.Forms INFO 1 outgoing items pre-reconciliation
    2011-02-03 14:57:12 Engine.Forms INFO Records: 0 applied, 0 reconciled.
    2011-02-03 14:57:12 Engine.Forms INFO Uploading all of 1 records
    2011-02-03 14:57:12 Collection DEBUG POST Length: 347
    2011-02-03 14:57:13 Collection DEBUG POST success 200 https://phx-sync238.services.mozilla.com/1.0/XXXXXX/storage/forms
    2011-02-03 14:57:13 Engine.Forms DEBUG Total (ms): sync 379, processIncoming 0, uploadOutgoing 379, syncStartup 0, syncFinish 0, getChangedIDs 0, createRecord 33, syncCleanup 0
    2011-02-03 14:57:13 Engine.History INFO 6 outgoing items pre-reconciliation
    2011-02-03 14:57:13 Engine.History INFO Records: 0 applied, 0 reconciled.
    2011-02-03 14:57:13 Engine.History INFO Uploading all of 6 records
    2011-02-03 14:57:13 Collection DEBUG POST Length: 2961
    2011-02-03 14:57:13 Collection DEBUG POST success 200 https://phx-sync238.services.mozilla.com/1.0/XXXXXX/storage/history
    2011-02-03 14:57:13 Engine.History DEBUG Total (ms): sync 253, processIncoming 0, uploadOutgoing 250, syncStartup 1, syncFinish 0, getChangedIDs 0, createRecord 37, syncCleanup 0
    2011-02-03 14:57:13 Engine.Passwords INFO 0 outgoing items pre-reconciliation
    2011-02-03 14:57:13 Engine.Passwords INFO Records: 0 applied, 0 reconciled.
    2011-02-03 14:57:13 Engine.Passwords DEBUG Total (ms): sync 1, processIncoming 1, uploadOutgoing 0, syncStartup 0, syncFinish 0, getChangedIDs 0, syncCleanup 0
    2011-02-03 14:57:13 Engine.Tabs INFO 1 outgoing items pre-reconciliation
    2011-02-03 14:57:13 Engine.Tabs INFO Records: 0 applied, 0 reconciled.
    2011-02-03 14:57:13 Engine.Tabs INFO Uploading all of 1 records
    2011-02-03 14:57:13 Collection DEBUG POST Length: 4865
    2011-02-03 14:57:13 Collection DEBUG POST success 200 https://phx-sync238.services.mozilla.com/1.0/XXXXXX/storage/tabs
    2011-02-03 14:57:13 Engine.Tabs DEBUG Total (ms): sync 318, processIncoming 0, uploadOutgoing 317, syncStartup 1, syncFinish 0, getChangedIDs 0, createRecord 151, syncCleanup 0
    2011-02-03 14:57:13 Service.Main DEBUG Exception: Some engines did not sync corr

    OK, manually browsing addons.mozilla.org, I found out there's a Firefox Sync 1.6.2 update that won't automatically install with F4B10, but that seems to resolve this issue.

  • I have Firefox Sync, the new version, and it isn't working on my devices, is there a fix?

    I installed Firefox 32.0.2 on my laptop. It is new and this is the first version to install on this computer.
    I installed Firefox 32.0.2 on my desktop. It installed as an "update" since I already had Firefox installed.
    Previously, sync worked fine between my devices, to include a laptop, an Andriod smartphone and a desktop. When I installed this new Firefox, it no longer syncs.
    When I go to about:sync on my laptop it tells me that it is syncing and will begin momentarily. The desktop is my primary device with all my bookmarks and passwords. When I go to about:sync-log, I get the following error. This is the FIRST time I have gotten this error, having logged out and logged back in about ten times. Anyone know the solution??
    1411134934378 Sync.Service INFO Loading Weave 1.34.0
    1411134934380 Sync.Engine.Clients DEBUG Engine initialized
    1411134934381 Sync.Engine.Clients DEBUG Resetting clients last sync time
    1411134934385 Sync.Engine.Bookmarks DEBUG Engine initialized
    1411134934388 Sync.Engine.Forms DEBUG Engine initialized
    1411134934391 Sync.Engine.History DEBUG Engine initialized
    1411134934395 Sync.Engine.Passwords DEBUG Engine initialized
    1411134934397 Sync.Engine.Prefs DEBUG Engine initialized
    1411134934400 Sync.Engine.Tabs DEBUG Engine initialized
    1411134934400 Sync.Engine.Tabs DEBUG Resetting tabs last sync time
    1411134934406 Sync.Engine.Addons DEBUG Engine initialized
    1411134934407 Sync.Service INFO Mozilla/5.0 (Windows NT 6.3; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0
    1411134934409 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1411134934410 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1411134934410 Sync.Service DEBUG Caching URLs under storage user base: https://sync-87-us-west-2.sync.services.mozilla.com/1.5/5220585/
    1411134934410 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1411134934410 Sync.AddonsReconciler INFO Registering as Add-on Manager listener.
    1411134934410 Sync.AddonsReconciler DEBUG Adding change listener.
    1411134934411 Sync.Tracker.History INFO Adding Places observer.
    1411134934423 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1411134934423 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1411134934451 FirefoxAccounts DEBUG got keyPair
    1411134934452 FirefoxAccounts DEBUG getCertificateSigned: true true
    1411134934459 Sync.RESTResponse DEBUG Caught exception fetching HTTP status code:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.responseStatus]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.status :: line 620" data: no] Stack trace: RESTResponse.prototype.status()@resource://services-common/rest.js:620 < _onComplete()@resource://services-common/hawkclient.js:193 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934459 Sync.RESTResponse DEBUG Caught exception fetching HTTP status text:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.responseStatusText]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.statusText :: line 636" data: no] Stack trace: RESTResponse.prototype.statusText()@resource://services-common/rest.js:636 < _onComplete()@resource://services-common/hawkclient.js:196 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934459 Sync.RESTResponse DEBUG Caught exception processing response headers:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.visitResponseHeaders]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.headers :: line 670" data: no] Stack trace: RESTResponse.prototype.headers()@resource://services-common/rest.js:670 < this.HawkClient.prototype._maybeNotifyBackoff()@resource://services-common/hawkclient.js:284 < _onComplete()@resource://services-common/hawkclient.js:203 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934459 Sync.RESTResponse DEBUG Caught exception processing response headers:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.visitResponseHeaders]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.headers :: line 670" data: no] Stack trace: RESTResponse.prototype.headers()@resource://services-common/rest.js:670 < this.HawkClient.prototype._maybeNotifyBackoff()@resource://services-common/hawkclient.js:284 < _onComplete()@resource://services-common/hawkclient.js:204 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934460 Sync.RESTResponse DEBUG Caught exception fetching HTTP status text:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.responseStatusText]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.statusText :: line 636" data: no] Stack trace: RESTResponse.prototype.statusText()@resource://services-common/rest.js:636 < this.HawkClient.prototype._constructError()@resource://services-common/hawkclient.js:108 < _onComplete()@resource://services-common/hawkclient.js:209 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934460 Sync.RESTResponse DEBUG Caught exception fetching HTTP status code:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.responseStatus]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.status :: line 620" data: no] Stack trace: RESTResponse.prototype.status()@resource://services-common/rest.js:620 < this.HawkClient.prototype._constructError()@resource://services-common/hawkclient.js:109 < _onComplete()@resource://services-common/hawkclient.js:209 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934460 Sync.RESTResponse DEBUG Caught exception fetching HTTP status code:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.responseStatus]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.status :: line 620" data: no] Stack trace: RESTResponse.prototype.status()@resource://services-common/rest.js:620 < this.HawkClient.prototype._constructError()@resource://services-common/hawkclient.js:110 < _onComplete()@resource://services-common/hawkclient.js:209 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934460 Sync.RESTResponse DEBUG Caught exception processing response headers:[Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.visitResponseHeaders]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://services-common/rest.js :: RESTResponse.prototype.headers :: line 670" data: no] Stack trace: RESTResponse.prototype.headers()@resource://services-common/rest.js:670 < this.HawkClient.prototype._constructError()@resource://services-common/hawkclient.js:112 < _onComplete()@resource://services-common/hawkclient.js:209 < onComplete()@resource://services-common/hawkclient.js:250 < onStopRequest()@resource://services-common/rest.js:444 < <file:unknown>
    1411134934460 FirefoxAccounts ERROR error POSTing /certificate/sign: {"error":{},"message":null,"code":null,"errno":null}
    1411134934461 FirefoxAccounts ERROR HAWK.signCertificate error: {"error":{},"message":null,"code":null,"errno":null}
    1411134934461 Sync.BrowserIDManager ERROR Non-authentication error in _fetchTokenForUser: null
    1411134934461 Sync.Status DEBUG Status.login: success.login => error.login.reason.network
    1411134934461 Sync.Status DEBUG Status.service: success.status_ok => error.login.failed
    1411134934461 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1411134934462 Sync.SyncScheduler DEBUG Next sync in 3600000 ms.

    If it is an iPhone 5 try holding the left side of the button down very hard.  That Power Button Issue which can render the button totally unusable typically goes bad in an uneven way allowing some function in the way I described.  You can use Assistive Touch under Accessibility to power the phone down.

Maybe you are looking for

  • Dynamic structure creating based on the input parameter

    Hi all,              How to create a dynamic structure based on the input parameter given in the selection screen. I have a file path given and it contains three fields in common, but after that depending upon the input given the fields get changed.

  • Email app

    Ineed to acces my email on my android tablet. Do I have to download an app

  • Attachment  .PDF in Bid Invitation and Auction e-mail

    Hi experts, Anybody knows how can I take off the Attachment .pdf of my e-mail to vendors when I create a Bid Invitation or Auction? See this print scren to see what I talk about: [SOST Print|http://sapsrm.xpg.com.br/SAP/SOST_ATTACHMENT.jpg] I want to

  • How to code on button click increase cell height ?

    hi, Am new in development .Am creating app same like facebook.i have table view controller in that every cell having button .on perticular button click i want to add view to that cell .on same same when i click second time then it hide the addded vie

  • Load Balancing multiple web servers

    Hi All: I need to load balance 2 different web servers using sticky connections on a LocalDirector 416. I need to use cookie-passive mode, which of course relies on a cookie set by the web server. Problem: The name of the session cookie is different