Annoying error 2:  ViewController may not respond to -enableBBI

Developers,
This is my second annoying error. The code works fine, but i get the following error message when i run the app "viewcontroller may not respond to -enableBBI".
The code i am using is below and i have placed ///Error/// next to parts of the code that trigger the error. The part of the code that shows an error is used to enable a Bar Button item.
Is there anything i can do to prevent this? or does it not really matter?
Ray, i am hoping you will have a quick glance over this. The code is something you gave me in the past. Perhaps you have a solution?
james
-(IBAction)NextItem {
int count = [flashCards count];
if (counter < count - 1) {
NSDictionary *nextItem = [self.flashCards objectAtIndex:++counter];
Label1.text = [nextItem objectForKey:Question_KEY];
[self enableBBI]; ////Error//////
-(IBAction)PreviousItem {
if (counter > 0) {
NSDictionary *nextItem = [self.flashCards objectAtIndex:--counter];
Label1.text = [nextItem objectForKey:Question_KEY];
[self enableBBI]; ////Error//////
- (void)enableBBI {
int count = [flashCards count];
next.enabled = counter < count - 1 ? YES : NO;
prev.enabled = counter > 0 ? YES : NO;
flip.enabled = count > 0 ? YES : NO;
Message was edited by: james_coleman01

See xnav's suggestion, then add the following at the end of the file and move enableBBI inside:
@implementation YourViewControllerName (PrivateMethods)
- (void)enableBBI
@end
Using categories in this way is just a trick to simulate private methods in Objective-C. That way, you can define your methods where you want in the file without having to put them into the header file for all the world to see.
You can create new categories for any class, including Cocoa classes like NSString, etc.
Message was edited by: etresoft

Similar Messages

  • RW-50015: Error: - HTTP Listener is not responding -- on resh installation

    Hi
    I am trying to install R12.0 version on RHEL4 (VMWARE on windows).
    While installation i am getting error while validating system configuration (for HTTP, Virtual Directory, Login Page,JSP and Help page)
    Error is
    HTTP checking url http://r12.loclhost:8000
    RW-50015: Error: - HTTP Listener is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    when i try to $INST_TOP/admin/scripts/adstrtal.sh apps/apps am getting error for opmn,form service.
    opmn log file says.
    getaddrinfo(localhost, NULL, 1) failed (Temporary failure in name resolution): Connection refused
    when i try to check $INST_TOP/logs/ora/10.1.3/Apache/ for error log and access log , i could not find any file in this location.
    bash-3.00$ cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    192.168.3.1 R12.localhost R12
    I hope some issue with http service, kindly help me.
    Thanks
    Krishna

    bash-3.00$ adopmnctl.sh start
    You are running adopmnctl.sh version 120.4
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 2
    adopmnctl.sh: check the logfile /mnt/ext/applvis/inst/apps/VIS_r12/logs/appl/admin/log/adopmnctl.txt for more information ...
    bash-3.00$ adopmnctl.sh status
    You are running adopmnctl.sh version 120.4
    Checking status of OPMN managed processes...
    Unable to connect to opmn.
    Opmn may not be up.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /mnt/ext/applvis/inst/apps/VIS_r12/logs/appl/adm in/log/adopmnctl.txt for more information ...
    03/05/11-23:25:28 :: adopmnctl.sh version 120.4
    bash : vi mnt/ext/applvis/inst/apps/VIS_r12/logs/appl/adm in/log/adopmnctl.txt
    03/05/11-23:25:28 :: adopmnctl.sh: Starting Oracle Process Manager (OPMN)
    getaddrinfo(localhost, NULL, 1) failed (Temporary failure in name resolution): Connection refused
    getaddrinfo(localhost, NULL, 1) failed (Temporary failure in name resolution): Connection refused
    getaddrinfo(localhost, NULL, 1) failed (Temporary failure in name resolution): Connection refused
    opmnctl: opmn start failed.
    03/05/11-23:25:35 :: adopmnctl.sh: exiting with status 2
    Kindly help me to resolve this issue.
    Thanks
    Krishna

  • Warning: (Insert object here) may not respond to '+alloc' ?

    I'm just getting started with Objective C development, and the following example that I am working with results in the following error:
    fraction.m:6: warning: ‘Fraction’ may not respond to ‘+alloc’
    fraction.m:6: warning: (Messages without a matching method signature
    fraction.m:6: warning: will be assumed to return ‘id’ and accept
    fraction.m:6: warning: ‘...’ as arguments.)
    fraction.m:6: warning: no ‘-init’ method found
    fraction.m:8: warning: ‘Fraction’ may not respond to ‘-free’
    I am running Snow Leopard, and I have downloaded the most recent XCode and iPhone dev libraries.
    I would very much appreciate your input. Thank you.
    ==========
    #import <stdio.h>
    #import <objc/Object.h>
    /* Interface */
    @interface Fraction: Object
    int numerator;
    int denominator;
    -(void) print;
    -(void) setNumerator: (int) n;
    -(void) setDenominator: (int) d;
    -(int) numerator;
    -(int) denominator;
    @end
    /* Implementation */
    @implementation Fraction;
    -(void) print
    printf ("%i,%i", numerator, denominator);
    -(void) setNumerator: (int) n {
    numerator = n;
    -(void) setDenominator: (int) d {
    denominator = d;
    -(int) numerator {
    return numerator;
    -(int) denominator {
    return denominator;
    @end
    int main (int argc, char *argv[])
    Fraction* myFraction = [[Fraction alloc] init];
    [myFraction free];
    return 0;
    }

    tkambler wrote:
    I've determined that this script compiles just fine on my iMac running 10.5.8. My other iMac, which I just installed Snow Leopard on, is the one that is giving me the errors. Any thoughts?
    Fraction.m compiled and ran under Xcode without any problems on my OS X 10.5.5 system. I don't have a Snow Leopard system, so can't reproduce the errors you reported.
    My first guess would be that the difference in your two systems is a difference in the included Object.h file. On my system the included file lives in /Developer/SDKs/MacOSX10.5.sdk/usr/include/objc. That @interface does indeed declare alloc, init, free, etc.
    From the compiler warnings you posted (which don't include "Can't find Object.h"), I would assume that either the Object.h file at the above path has changed, or that the wrong Object.h file is being included. The latter needs to be ruled out because (at least on my system) there are several Object.h files intended for different purposes. So for example, if your Snow Leopard Xcode isn't searching in the same folders, or if the correct Object.h has been relocated, it's entirely possible the wrong file is being included during the build.
    Determining which possibility applies in your case may require some familiarity with OS X and Xcode, and I don't know if +just getting started with Objective C+ means just that, or whether OS X and all of the developer tools are also new for you. If the code you posted is part of an isolated exercise and you won't be using Object.h much in the future (since it's not used in Cocoa), my advice would be to stay on the system that works until you're done with the current exercise.
    If you have a requirement to program in Obj-C without using Cocoa for an extended period of time, I'm sure someone here can help you find out what happened to Object.h on your Snow Leopard system. Of course things will be a lot easier if that help comes from someone who already has Snow Leopard.
    You can get started by looking at the Object.h file Xcode is including. You can do this by selecting Object.h in a text editor window, then selecting File->Open Quickly from the top menu (see Opening Files by Filename or Symbol Name in the Xcode Workspace Guide). Is your Active SDK set to 10.6? If your Snow Leopard Xcode has the option to set the Active SDK to 10.5, see which Object.h file gets included in that case.
    Hope that helps!
    \- Ray

  • My first Objectice-C code: Warning "may not respond to +alloc"

    I just finished my first steps into Objective-C and was thwart by the following warning in my very first exercise example: "Bruch may not respond to +alloc "
    Any hints are appreciated. Many Thanks in advance.
    Juergen
    #import <stdio.h>
    #import <objc/Object.h>
    // ------- @interface Abschnitt ----------
    @interface Bruch: Object
    int zaehler;
    int nenner;
    - (void) ausdrucken;
    - (void) setzeZaehler: (int) z;
    - (void) setzeNenner: (int) n;
    @end
    // ---------------- @implementation Abschnitt ----------------
    @implementation Bruch;
    -(void) ausdrucken
    printf (" %i/%i ", zaehler, nenner);
    -(void) setzeZaehler: (int) z
    zaehler = z;
    -(void) setzeNenner: (int) n
    nenner = n;
    @end
    // ----Programm Abschnitt------
    int main (int argc, char *argv[])
    Bruch *meinBruch;
    // Bildung einer Instanz
    meinBruch = [Bruch alloc];
    meinBruch = [meinBruch init];
    // Setzen von Zähler und Nenner
    [meinBruch setzeZaehler: 1];
    [meinBruch setzeNenner: 2];
    // Anzeigen des Bruchs via printf
    printf ("Der Wert von meinBruch ist:");
    [meinBruch ausdrucken];
    printf ("\n");
    [meinBruch free];
    return 0;
    -------------------------------------------------------------------------------

    It would be best to start with the various templates that come with Xcode. There are some books that use low-level Objective-C include files instead of Cocoa include files. What's the point? The only Objective-C you are ever going to use is on a Mac or similar, so just use what Xcode gives you.

  • I get an error code of firefox not responding on my pc

    I have windows vista ultimate 64bit installed on both my pc and my laptop. I recently went through an upgrade for firefox and kaspersky on both of my computers. My laptop is functioning as always, however, everytime I go into firefox on my pc I get an error code "firefox is not responding". I do not get this code with internet explorer and have neve had this problem before. I have uninstalled both firefox and kaspersky and then reinstalled both to no avail. If you know of a fix for this please let me know as I really like firefox.

    Although possibly not related to your problem, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    As for your problem, hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    In any case, it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • The device PCI 6036E: Analog Input error:"the device is not responding to the base address",Output :No signal

    I am using PCI 6036E DAQ card, DAQ 6.9.2. , I have not connected to any external device.
    When I tested card(in Test Panel of MAX2.2,DAQ 6.9.2) an error appearing �the device is not responding to the base address� � then I pressed Yes, Then TestPanel window appearing�
    In analog Input Tag, there is an error �-10805�. This error also appearing when I run the standard analog input samples (use Delphi 6.0).
    I tested analog output functions in TestPanel, Delphi Examples, LabView 6.1. There are not error appearing but there is not output signal (using Oscilloscope to see).
    Output, Input digital functions are working correctly.
    Next I try to foll
    ow all the instruntions as recommended:
    -Changing TO another slots PCI
    -Reinstall Os WinXP,98SE�
    -Use another Computer�
    But all of the cases are still not working.(the above error still appeared, no output signal)

    Nvd,
    I'm sorry to hear about the problems that you are running into with your DAQCard. I can understand your frustration with the errors that you are seeing. You mention that you have tried to do some troubleshooting, I was wondering if you have tried all the troubleshooting techniques listed in this KnowledgeBase:
    http://digital.ni.com/public.nsf/websearch/DCFCDB240788F8D486256D6A00834D80?OpenDocument
    If you have tried all of those things, I would suggest one additional thing to try. I would suggest updating your NI-DAQ drivers to version 7.0. These drivers are the newest versions of our Data Acquisition Drivers, and can be downloaded from our website here:
    http://digital.ni.com/softlib.nsf/webcategories/85256410006C055586256BBB002C128D?OpenDocument&
    node=132060_US
    If you have tried all of the above troubleshooting options, please post a detailed description of what you have tried. This may help to clarify what is going wrong.
    Jed R.
    Applications Engineer
    National Instruments

  • Imessage internal error on start up/not responding - mac

    Hi,
    Unfortunately I'm having another problem, this time with the imessage application.
    When I open the app, the imessage window does not open up. When I double click the application it says "application not responding" I then force quit. One forcing the quit I try reopening the app, the same thing happens again!
    I changed the preferences for the app to open at login, so when I shut it down and reopen it 'has to' open. But this does not happen and a message appears 'internal error' or something like that and then it quits on me and suggests I reopen the app. I did reopen it the same issue still occurs.
    The only time the app opens is when i get a notification of a message from the notification centre, I click to open. It only opens up normally after like 15 minutes of waiting and works fine. But when i quit the app the same original problem occurs.
    Looking forward to any suggesting
    Thanks
    Katherine

    Please read this whole message before doing anything.
    Back up all data.
    Quit Messages if it’s running.
    Step 1
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash (either may not exist):
    Caches/com.apple.Messages
    Caches/com.apple.imfoundation.IMRemoteURLConnectionAgent
    Leave the Library folder open. Log out and log back in. Try Messages again. If it works now, stop here. Close the Library folder.
    Step 2
    If you still have problems, quit Messages again. Go back to the Finder and move the following item from the open Library folder to the Desktop:
    Messages
    Note: you are not moving the Messages application. You’re moving a folder named “Messages.”
    Test. If Messages now works, delete the Messages folder on the Desktop. Otherwise, quit Messages again. Put back the folder you moved, overwriting the newer one that may have been created in its place, and continue.
    Step 3
    In the Preferences subfolder, there may be several files having names that begin with any of the following strings:
    com.apple.iChat
    com.apple.imdsmsrecordstore
    com.apple.imessage
    com.apple.imservice
    Move them all to the Desktop. There may also be a file with the name "com.apple.imagent.plist". Move that to the Trash.
    Also in the Preferences folder, there's a subfolder named "ByHost". Open it and do the same thing.
    Log out and log back in. Test again. This time Messages should perform normally, but your settings will be lost. You may be able to put back some of the files you moved to the Desktop in this step. Relaunch and test after each one. Eventually you should find one or more that causes Messages to malfunction. Delete those files and recreate whatever settings they contained.
    If the issue is still not resolved, quit Messages again and put all the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash. Stop here and post again.
    If you later decide that you don’t like the results of steps 2 and 3, you can undo them completely by quitting Messages and restoring the items you deleted in those steps from your backup.

  • Error "web pages are not responding"

    What is the cause of this Safari error?  What needs to be done to prevent it?
    "Web pages are not responding. To reload this webpage, all pages in other tabs and windows must also be force reloaded. Do you want to reload this page?
    Force reloading might cause you to loose information you have entered"
    Several threads reference it when it occurs after performing various kinds of actions, and the author's ascribe it to their particular operation, but obviously it is a more general error.

    > look under "User Diagnostic Reports"
    No entrys exist in that area.  Looks like the system cleaned itself up earlier today:
    11/11/11 1:06:49 PM          SubmitDiagInfo[3887]          Cleaning up expired diagnostic messages database at path: /var/log/DiagnosticMessages/2011.10.12.asl
    Using OSX 10.6.8 and Safari 5.1.1
    After posting my message I performed the latest Software Update.
    But my question is also general -- what are the causes of this error?  I have read assertions that it relates to the newest Flash Plugin, or Java, etc. but I would like an authoritative explanation.  How can something cause ALL tabs to need to be reloaded?  Is it caused by something on a web page, or by something internal like the cache getting too large or corrupted or what?
    This error is associated with extremely high % of CPU time being taken up by Safari Web Content.

  • Payroll Error:  Retirement earnings may not exceed Gross Remuneration

    Hi guys,
    I get the following error message when i run my payroll...Retirement earnings may not exceed Gross Remuneration. Any suggestions as to how i can solve this problem? Would be appreciated.
    thanks.
    Lynnette

    Hello Lynnette,
    There are certain wage types in your payroll not cumulated to /101 (Gross cumulation) but /102 (401K Gross which is retirement gross).
    As Howard said, go to RPDLGA20 and look for those wage types and their cumulation class.
    Arti

  • Runtime Error (My VC++ program not responding)

    I wrote a VC++ program to send out voltage output to controller. The call function is like shown below:
    volt(double Vx, double Vy);
    I am using SingleAO in my VI and not DAQmx because the controller doesnt support it.
    When my program runs, it is okay but after awhile it doesnt respond. My program calling the function is a loop.
    My questions are:
    1) Is there a max number of function can be called?
    2) Any possible reason why my program hangs?
    Thanks

    Hi jw81,
    Without seeing all of your code, it is difficult to say why you are getting the error.
    My first question would be why wouldn't your controller support NI-DAQmx? Since you are programming in C, all you would need to do is download NI-DAQ 7.3 and install it. With NI-DAQ 7.3, you will be given a C API to program NI-DAQmx. You can get NI-DAT 7.3 here:
    http://digital.ni.com/softlib.nsf/websearch/BEC182021CEB566C86256EEE00696562?opendocument&node=132060_US
    If you still wish to program in Traditional NI-DAQ I would suggest you start with one of the shipping examples. See if you can get them to work. If not, let me know which example you are using and what error you are getting.
    Traditional C examples: C:\Program Files\National Instruments\NI-DAQ\Examples\VisualC
    -Sal

  • TextEdit Error Code - 1712  TextEdit not responding

    TextEdit Error Code 1712
    TextEdit doesn't respond
    Can someone help me Fix TextEdit? In my Administrator account? I can't open old files in TextEdit; I can't save new files; nor copy old files. Nor can I open saved Sticky files; files saved as either as rtf files, nor as txt files.
    This started when I opened a new user account for someone. I dragged documents and files from my Administrator account into my Shared file, but I don't think I did anything with them. I dragged documents and files into the other user account drop file. And, in an effort to put back something that I might have dragged out of my Administrator account, I dragged some back into my Admin drop box.
    At some point I had to authenticate my actions by typing in my Administrator account password. I may have taken away my Administrator account privileges from TextEdit. Everything else works. And TextEdit works in all my other User accounts. I'm in an account that I set up for myself, so I don't further damage my Administrator account. And I intend to move every working file and Image over here when I fix this problem. I'll only use the Administrator account to Administrate.
    Can anyone help me fix my TextEdit? Or reinstall it from my OS X 3.9 Panther Disc? I don't know which disc.
    Or, help me retrieve my Administrator privlideges over my Administrator Account? And then tell me how I can use my Administrator password carefully over all my User accounts?
    Thanks,
    speakinsteps

    speakinsteps:
    Let's start with you admin account. I suggest you create a new admin account which will be strictly admin and used for little else. You current admin account and all other accounts will be standard or restricted.
    Here's how:
    Most likely you have already set up your account, and just as likely it's an admin account. What do you do? In Mac OS X, changing this is relatively easy. Let’s assume you have one account on your computer and it's an admin account. Here’s how you change it:
    •Go to the Apple Menu > System Preferences> Accounts. Click on Accounts.
    •Click the under Login Options to add an account.
    •Check the box to let that user "Allow User to administer this computer." You are temporarily creating a second admin account. Be sure you give it a good password and that you remember it! (More about passwords later, but just choose one now, you can change it later.)
    •Log out by going to the Apple Menu and select Logout whoever at the very bottom of the list.
    •Go back to System Preferences > Accounts, and find your original user.
    •Uncheck the box for that account that allows it to administer the computer. You've now changed your regular account into a Standard user account and you've created a new admin account that you'll hardly ever use. That's the point: only use the admin account when you absolutely need to.
    The next step will be to try to restore privileges to your files.
    Good luck.
    cornelius
    PismoG4 550, 100GB 5400 Toshiba internal, 1 GB RAM; Pismo 500 OS X (10.4.5)   Mac OS X (10.4.5)   Beige G3 OS 8.6

  • Blackberry Desktop 6.1 won't work with Windows 7-Error message each time "Not responding"

    I've tried uninstalling and reinstalling the desktop software several time but it starts to open and then stops responding each time.  I haven't been able to sync my new 9810 Torch yet.  

    No, I was not able to solve the problem.
    Today I tried to running SFC /scanall to check and repair all system files, but the problem is not solved.
    I tried to install in a XP Virtual machine, hosted in another machine's Win7, and was able to run the DTM 3.1 without problems. But I need to run it on the XP on the poriginal machine ...
    As a last resource, I will reinstall XP, + ALL programs again, but that is too much work and trouble so I will keep looking fo simpler solutions for a while.
    If you find out any way out of this, please let me know.
    Does anybody from RIM reads this forum? I would surely like to get in touch with them before I get bored with this problem and get rid of the BB altogether and move to a more reliable provider.

  • AdobeApplicationManager error Remote server is not responding

    Have tried to download the aplication manager several times now, but get same error mesage eache time.
    So cannot download anythin....

    05/29/12 01:11:00:284 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:11:00:380 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:11:00:585 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:11:00:585 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:11:00:585 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:11:00:585 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:11:00:595 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:11:00:605 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:11:02:116 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:11:02:326 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:11:02:336 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:11:04:121 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:13:40:044 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:13:48:575 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:13:48:622 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:13:48:804 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:13:48:804 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:13:48:804 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:13:48:804 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:13:48:815 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:13:48:825 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:13:50:335 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:13:50:346 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:13:50:356 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:13:51:736 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:14:23:169 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:14:23:207 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:14:23:380 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:14:23:380 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:14:23:380 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:14:31:403 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:14:31:404 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:14:31:414 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:14:32:925 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:14:32:935 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:14:32:945 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:14:34:468 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:33:52:293 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:34:07:444 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:34:07:485 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:34:07:669 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:34:07:669 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:34:07:669 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:34:07:669 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:34:07:679 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:34:07:689 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:34:09:199 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:34:09:209 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:34:09:219 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:34:10:878 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:34:15:232 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:34:50:680 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:34:50:720 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:34:50:882 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:34:50:882 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:34:50:882 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:34:50:882 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:34:50:892 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:34:50:902 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:34:52:412 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:34:52:422 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:34:52:432 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:34:53:989 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:34:58:456 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:39:07:536 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:39:08:254 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:39:09:159 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:39:09:159 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:39:09:159 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:39:09:159 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:39:09:174 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:39:09:190 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:39:10:719 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:39:11:280 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:39:11:296 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:39:13:293 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 01:46:15:955 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/29/12 01:47:10:407 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/29/12 01:47:10:457 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/29/12 01:47:10:824 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/29/12 01:47:10:824 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/29/12 01:47:10:824 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/29/12 01:47:10:824 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/29/12 01:47:10:834 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/29/12 01:47:10:844 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/29/12 01:47:12:354 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/29/12 01:47:12:364 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/29/12 01:47:12:374 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/29/12 01:47:13:778 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/29/12 02:15:18:432 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/30/12 00:25:08:967 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/30/12 00:25:11:934 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/30/12 00:25:18:518 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/30/12 00:25:18:518 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/30/12 00:25:18:518 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/30/12 00:25:18:518 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/30/12 00:25:18:528 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/30/12 00:25:18:538 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/30/12 00:25:20:049 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/30/12 00:25:20:629 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/30/12 00:25:20:639 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/30/12 00:25:23:710 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/30/12 00:29:35:243 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/30/12 00:29:35:288 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/30/12 00:29:35:491 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/30/12 00:29:35:491 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/30/12 00:29:35:491 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/30/12 00:29:35:491 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/30/12 00:29:43:499 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/30/12 00:29:43:503 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/30/12 00:29:43:514 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/30/12 00:29:45:025 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/30/12 00:29:45:035 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/30/12 00:29:45:046 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/30/12 00:29:46:500 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/30/12 00:29:50:889 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/30/12 00:30:42:962 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/30/12 00:30:43:102 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/30/12 00:30:43:295 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/30/12 00:30:43:295 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/30/12 00:30:43:295 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/30/12 00:30:43:295 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/30/12 00:30:43:306 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/30/12 00:30:43:316 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/30/12 00:30:44:828 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/30/12 00:30:44:840 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/30/12 00:30:44:850 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/30/12 00:30:46:535 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403
    05/30/12 00:30:51:496 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Closing LBS workflow*******************
    05/30/12 00:37:12:508 | [INFO] |  | Download | LBS | LBSApplicationFacade |  |  | ****************Starting LBS workflow*******************
    05/30/12 00:37:12:695 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | initializing screen
    05/30/12 00:37:12:961 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product Sap Code not specified in the product information file
    05/30/12 00:37:12:961 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product locale not specified in the product information file
    05/30/12 00:37:12:962 | [INFO] |  | Download | LBS | ProductInfo |  |  | Product name not specified in the product information file
    05/30/12 00:37:12:962 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Bootstraping Passed
    05/30/12 00:37:12:975 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | LBS lock acquired
    05/30/12 00:37:12:986 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | System requirements check passed
    05/30/12 00:37:14:497 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | deployment lock check passed
    05/30/12 00:37:14:511 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | AAM not present so downloading is initiatied
    05/30/12 00:37:14:521 | [INFO] |  | Download | LBS | LBSWorkflowManager |  |  | Downloading Adobe Application Manager
    05/30/12 00:37:16:081 | [WARN] |  | Download | LBS | DownloadManifest |  |  | Download of the asset number 1 could not be started. Error type is -40, error code is 403

  • Windows Service Error 1053 - Service did not respond to start or control request

    I'm presuming it's logging on as a domain user.  Has that user got "Logon as a Service" rights?

    I've been working on this issue with our developers for the past week, and so far we're stumped. We have a Windows Service that was created in-house to process our customers imaging requests with assured delivery that are past the start date. We currently have this service, and a few others like it, running on 12 different bus servers. The servers all run .NET Framework 4.5, and all the other servers run it with no problem. This particular service bus gives us the "Error 1053" as so on as we try to start the service. I've increased the timeout to 60 seconds, but it was set at 30 before and it times out IMMEDIATELY after pressing start. I've uploaded the .config file we use. I modified the IP addresses for security reasons. The service logs on with an administrator password that has domain access rights. We've tested the connectivity...
    This topic first appeared in the Spiceworks Community

  • Error "remote server is not responding in proper manner"

    Hello,
    Please help me,
    Im getting the error while installing the CC,

    Anything is possible in a corporate network environemnt, but without exact info nobody can know. as a start, refer to this:
    Sign in or activation errors
    Mylenium

Maybe you are looking for

  • My Shape tool, which used to be in the left toolbar has disappeared. How do I get it back?

    I have PSE9 and have used PSE to edit screen shots. Some screenshots have required that I place an arrow to point to a specific location. I have used the shape tool for this purpose. For some reason, the shape tool has disappeared and I cannot figure

  • Upload file in KM using webdynpro without portal.

    Hi Experts, Can we upload files in KM using webdynpro without portal ? If  it is possible then please give the whole step by step process? Please reply....its urgent... I am very new in webDynpro... Thanks Regards Nutan Champia

  • I can't connect/sync my iphone5 to my laptop!!!

    I can't connect my iphone5 to my computer!! my charger isn't broken, itunes is up to date, I un/reinstalled the program sooo many times, went to my windows management thing and I restarted my phone! what other option do I have? I have the windows 8 a

  • Please help omg I need music.

    When I plug my iphone into my computer to download music, the device doesn't show up on my itunes. How can I get it to show up? I really wanna download music and it's not working and i'm not a happy camper help

  • Retrieving the first tag of the document

    We are storing different types of XML documents within a field. The type of document can be identified by the first tag. Is there a way to retrieve the first tag of a given XML document. Currently I am having to run EXISTSNODE for each document type