JavaHelp initialization problem

In my project, I used JavaHelp to create project help function. The following is party of HelpVolumeC.java source code.
Here I used main thread to initialize main gui, at that time used another thread to invoke HelpVolumeC.getHvcInstance().
at first time java help gui cannot be displayed. However when reinitialize main gui, then java help gui is ok.
Somebody has meet this kind of issue? Could give me some advise? thanks!
Here DefaultHelpBroker.initPresentation() is invoked in the second thread.
I think it maybe when you use helpbroker, if it is not initialized completly, it will not be used correctly.
that mean when you use helpbroker, it must be initialized completly. I dont know am I right.
party of initializing of main gui in main thread
// Set the plugin
MjmController.setPlugin(this);
// Create the controller
mjm = MjmController.getPluginInstance();
if (mjm != null) {
_hvc = HelpVolumeC.getHvcInstance();
// have to put this here, so we make sure it queued after the panel
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
running = mjm.isRunning();
if (mjm.getFrameParent() != null) {
mjm.getFrameParent().toFront();
party of HelpVolumeC.java
private static synchronized void loadLibrary() {
if(!isLibraryLoaded() && !isLibraryLoading() && !libraryLoadFailed)
try {
URL hsURL = null;
ClassLoader libraryClassLoader;
if (HelpPropertiesC.getLibraryURL() == "") {
report("loadLibrary(): Location of help system not defined.");
libraryClassLoader = com/ops/inmP/commonuiP/helpP/HelpVolumeC.getClassLoader();
} else {
report((new StringBuilder()).append("loadLibrary(): Attempting to load help system from: ").append(HelpPropertiesC.getLibraryURL()).toString());
libraryClassLoader = new URLClassLoader(new URL[] {new URL(HelpPropertiesC.getLibraryURL())}, null);
hsURL = HelpSet.findHelpSet(libraryClassLoader, "master.hs");
if (hsURL == null) {
report("loadLibrary(): Failed to load helpset. Help unavailable.");
libraryLoadFailed = true;
} else {
report("loadLibrary(): Found helpset - master.hs");
theHelpSet = new HelpSet(null, hsURL);
theHelpBroker = new DefaultHelpBroker();
theHelpBroker.setHelpSet(theHelpSet);
Runnable initHelp = new Runnable() {
public void run() {
try {
HelpVolumeC.theHelpBroker.initPresentation();
WindowPresentation pres = ((DefaultHelpBroker)HelpVolumeC.theHelpBroker).getWindowPresentation();
java.awt.Window win = pres.getHelpWindow();
JFrame helpWindow = (JFrame)win;
ImageIcon nortelLogo = new ImageIcon(com/ops/inmP/commonuiP/helpP/HelpVolumeC.getResource("globemark.gif"));
if(nortelLogo != null)
helpWindow.setIconImage(nortelLogo.getImage());
else
HelpVolumeC.report("loadLibrary(): Failed to display Nortel Logo icon in Help window.");
HelpVolumeC.libraryLoaded = true;
HelpVolumeC.libraryLoading = false;
} catch(Throwable t) {
HelpVolumeC.report((new StringBuilder()).append("loadLibrary(): initHelp thread - initPresentation() failed. Help unavailable.Caught the throwable ").append(HelpVolumeC.getStackTrace(t)).toString());
HelpVolumeC.libraryLoadFailed = true;
HelpVolumeC.libraryLoading = false;
Thread initHelpThread = new Thread(initHelp);
initHelpThread.start();
libraryLoading = true;
HelpTriggerC.setHelpBroker(theHelpBroker);
} catch(Throwable t) {
report((new StringBuilder()).append("loadLibrary() - Library load failed. Help unavailable.Caught the throwable ").append(getStackTrace(t)).toString());
libraryLoadFailed = true;
private void initialize(String volumeName) {
loadLibrary();
if (isLibraryLoaded() || isLibraryLoading()) {
triggers = new LinkedList();
this.volumeName = volumeName;
volumeExists = true;
* @deprecated Method HelpVolumeC is deprecated
public HelpVolumeC() {
volumeExists = false;
volumeName = "";
triggers = null;
initialize("");
public static HelpVolumeC getHvcInstance() {
if(theInstance == null)
theInstance = new HelpVolumeC();
return theInstance;
}

Yes u cannot do a Init after a Full.
Make the Full Load a Repair Full.
Se 38 - Source Code - RSSM_SET_REPAIR_FULL_FLAG
Give the ODS name , Datasource & Source System n Make it Reparir Full
Have a look at this note : Note 689964 - ODS object: Switching from a full to delta upload
If this has to be done before loading - U can jst flag the Repair Full feature in Infopackage - Scheduler - Repair Full.
Message was edited by:
        Jr Roberto

Similar Messages

  • GenericServiceFactory initialization problem when trying to load Web servic

    Hi,
    I am making a Guided procedure that calls a webservice. I have created a new Destination Template and was able to load the webservice definition successfully, but when I test the callable object I created for that same webservice y get the error:
    GenericServiceFactory initialization problem when trying to load Web service model for WSDL.
    Somehow I think there is something wrong with the user authentication. The Destination template has a user and password but somehow I think the callable object test is not using this information at all.
    Can anyone help ?
    Thanks in advance

    Hi Hans,
    Have you verified if you can call any external web service calls from your J2EE engine?  Go into the SOA Management / Global settings (if you are on CE - if you're on 7.0 it's in manage WS desintations).
    Look at your proxy settings and set them like your web browser that enables external calls.  For example, in the SAP network I set my global proxy settings on my local J2EE engine to be:
    Proxy host:  proxy
    Proxy port: 8080
    Exclude list:  *.sap.corp
    Does that make sense - have you verified if your settings are correct for your company?
    Regards
    Ginger

  • Unavailable or Initialization problem when viewing the servlets from admin console

    Hi
    I am on Weblogic 5.1.0. I connect to myServer which comes configured by
    default. When i see the
    registered servlets inside HTTP, on the console i see Unavailable or
    Initialization problem on every
    servlet that i select. Also when i try to load the servlet, it gives me the
    following error :--
    Property Change error for property "Load". Unable to load servlet.
    This is happening for all the servlets which are inside the General
    application inside HTTP tab.
    But when i executing the servlet examples that comes along with Weblogic,
    those examples are
    working fine.
    Also, i started my console and started the "myServer" instance and attached
    it to the console. But due to
    some reason my console hung. So i closed down the console window by pressing
    the browser close button.
    The weblogic server instance of "myServer" was still running. Then i started
    the console again and attached the
    running weblogic server instance of "myServer" to the console and went to
    servlets. This time all the servlets
    show "Previous Class Load Problem".
    Why all this is happening. Has this any where documented how to use the
    Weblogic console and Weblogic server
    instances. I have gone thru the Installation documentation of Weblogic but
    nothing like this has been mentioned over
    there.
    Thanks for ur help
    Niranjan

    Hi,
    Try to find which object causing high cpu usage following Oracle Doc ID 779349.1.
    by looking into the files then we can find what would be exact cause of this issue.
    Regards,
    Kalyan

  • Why "Export Error Codec Initialization Problem!" when I export using Adobe Media Encorder for FLV?

    I get "Export Error - Codec Initialization Problem!" when I try to export a project using Adobe Media Encoder as a Macromeida Flash Video.  Premiere Pro 2.0 goes through the rendering process but no file is created; just the Export Error message.  What does this mean, and what do I need to do to export a project as a FLV file?
    Thanks.

    Sounds weird...  You could try the standard fix for general unexplained behaviour in a document; export it to idml, open that, save as an Indesign file and try exporting again.  If that doesn't work try a few different presets, like smallest file size.  If that doesn't work try opening your image in Photoshop, resaving as a psd, placing that (delete your old one) and see if that helps.  Obviously do this on a copy....

  • Early Chipset Initialization Problem

    Hello all,
    After reading around this board I havn't found a very good answer for the Early Chipset Initialization problem.  (which is the code that D-bracket gives me)  Everything is entirely new, Including the new PSU that I bought to try to fix the problem.  Any ideas?  I know it's not the PSU so don't try telling me that.  
    The funny thing about this problem...the computer locks up and gives me the Neo Platinum screen, gives one beep to say the POST finished, and then locks up and I can't use the keyboard or get into the BIOS.  Oddly enough, if I hit the reset button it boots up just fine.  I'm thinking perhaps a faultly reset switch but has anybody else had this problem?

    Quote
    Originally posted by naedaneth
    Hello all,
    The funny thing about this problem...the computer locks up and gives me the Neo Platinum screen, gives one beep to say the POST finished, and then locks up and I can't use the keyboard or get into the BIOS.  Oddly enough, if I hit the reset button it boots up just fine.  I'm thinking perhaps a faultly reset switch but has anybody else had this problem?
    Yeah try using a USB keyboard instead if you are using a PS2 keyboard..

  • Codec Initialization Problem!

    Hi,
    I'm trying to use Adobe Media Encoder CS6 to convert a mov file of size 3072 by 768 resolution to f4v of the same attributes.
    However, I get the error Codec Initialization Problem!.
    I can convert it to f4v at 1920x1080 or other lower resolutions.
    Please help.
    Thank you

    Thank you!!!!

  • JSPServlet Initialization problem

    Sorry for asking such a simple question.
              I'm just a notice in WebLogic Server.
              When I tried to run JSP pages, I have this problem
              "weblogic.servlet.JSPServlet<unavailable or initialization problem>"
              I'm using WebLogic 5.1.
              weblogic.properties files JSP configuration is as follows
              # WEBLOGIC JSP PROPERTIES
              # Sets up automatic page compilation for JSP. Adjust init args for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jsp=\
              weblogic.servlet.JSPServlet
              weblogic.httpd.initArgs.*.jsp=\
              pageCheckSeconds=0,\
              compileCommand=c:/jdk1.3/bin/javac.exe,\
              workingDir=d:/data/program/weblogic/myserver/classfiles,\
              verbose=true
              I have JDK1.3 installed under C: (Windows NT4.0 w/ Service Pack 4)
              Could anyone help me out?
              Thanks in advance.
              Billy Park
              

    Sorry for asking such a simple question.
              I'm just a notice in WebLogic Server.
              When I tried to run JSP pages, I have this problem
              "weblogic.servlet.JSPServlet<unavailable or initialization problem>"
              I'm using WebLogic 5.1.
              weblogic.properties files JSP configuration is as follows
              # WEBLOGIC JSP PROPERTIES
              # Sets up automatic page compilation for JSP. Adjust init args for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jsp=\
              weblogic.servlet.JSPServlet
              weblogic.httpd.initArgs.*.jsp=\
              pageCheckSeconds=0,\
              compileCommand=c:/jdk1.3/bin/javac.exe,\
              workingDir=d:/data/program/weblogic/myserver/classfiles,\
              verbose=true
              I have JDK1.3 installed under C: (Windows NT4.0 w/ Service Pack 4)
              Could anyone help me out?
              Thanks in advance.
              Billy Park
              

  • ConnectionServer cannot started - NT Service Initialization Problem

    When I startup a "Connection Server" for "Business Object Enterprise 12.0" under Windows XP Professional machine, following error raised.
    Could you tell me what is the problem. Thanks.
    Timestamp     ProcessID     ThreadID     Message
    [Wed May 20 09:30:21 2009]     6712     8100     Log: level=3 cat=1 msg=35100 p=ConnectionServer started
    [Wed May 20 09:30:21 2009]     6712     8100     trace message: Creating controller thread
    [Wed May 20 09:30:21 2009]     6712     8100     trace message: Waiting on monitor to initialize
    [Wed May 20 09:30:21 2009]     6712     2412     trace message: In service controller thread's run!
    [Wed May 20 09:30:21 2009]     6712     8100     trace message: SIServerController::waitingToInitialize
    [Wed May 20 09:30:21 2009]     6712     2412     trace message: SINTService::run enter
    [Wed May 20 09:30:36 2009]     6712     2412     trace message: SIServerController::initialize
    [Wed May 20 09:30:36 2009]     6712     2412     assert failure: (.\siservice.cpp:839). (false : StartServiceCtrlDispatcher: The operation completed successfully.
    [Wed May 20 09:30:36 2009]     6712     2412     Log: level=0 cat=14 msg=35500 p=NT Service Initialization Problem
    [Wed May 20 09:30:36 2009]     6712     2412     trace message: SINTService::run: Cannot start service control dispatcher

    Hi Thomas,
    I am having the same issue...I couldn't able to start CMS (Content Management services ) .
    Reducing the tomcat heap size doesn't help in my case....
    Regards, Anil

  • Early Chipset Initialization problem with K8T Neo 2 - FIS2R

    This one has me stumped.
    I went to install a new CPU fan earlier today and while I was installing the fan I had to remove my sound card and AGP card so I could screw the fan to the side of the heat sink.
    I got all that done and went to start the computer back up and now I get a contineous high pitched sound while at the same time 3 beeps. The D bracket shows a green LED on 1 so this is the "early chipset initialization" problem.
    What is causing this and why would this happen after a fan installation?
    Specs
    A64 3200+ Winchester
    1.5 GB RAM (2x 512, 2x 256) DDR 400
    MSI K8T Neo 2 - FIS2R
    PNY GF 6800
    Audigy 2 ZS Gamer
    200GB IDE HDD
    80 GB IDE HDD
    DVD - R/RW
    Win XP Pro w/ SP2

    Okay after a bit of messing around with the problem I discovered what the problem was....
    I didn't plug in the power to the video card 
    Yeah the 6800 uses needs more power from the PSU and I left that little rail unplugged. Maybe some other soul will find this useful in a time of need.

  • Web service model initialization problem

    Hello, every one
    I have some trouble in the initialization of web service model.
    I tested the web service through web service navigator and it was ok.
    My context structure is:
    Request_ZBAPIWCALIST_zbapiWcalist(0..n)
    --parameters(0..1)
    rBdate(0..n)
    high(string)
    low(string)
    option(string)
    sign(string)
    --Response(0..1)
    Result(0..1)
    tWca(0..n)
    estat(string)
    istat(string)
    Following is my codes:
    Request_ZBAPIWCALIST_zbapiWcalist model = new Request_ZBAPIWCALIST_zbapiWcalist();
    ComplexType_ZbapiWcalist parameter = new ComplexType_ZbapiWcalist();
    model.setParameters(parameter);          
    ComplexType_ZbapiRBdate rBdate = new ComplexType_ZbapiRBdate();
    ComplexType_ZbapiRResp rResp = new ComplexType_ZbapiRResp();
    ComplexType_ZbapiRTplnr rTplnr = new ComplexType_ZbapiRTplnr();
    ComplexType_ZbapiRWapinr rWapinr = new ComplexType_ZbapiRWapinr();
    ComplexType_ZbapiRWapius rWapius = new ComplexType_ZbapiRWapius();
    ComplexType_ZbapiWcalistImport wcaImport = new ComplexType_ZbapiWcalistImport();
    rBdate.setLow("2007-7-1");
    rBdate.setHigh("2007-7-2");
    rBdate.setOption("EQ");
    rBdate.setSign("I");          
    rResp.setLow("");
    rResp.setHigh("");
    rResp.setOption("");
    rResp.setSign("");
    rTplnr.setLow("");
    rTplnr.setHigh("");
    rTplnr.setOption("");
    rTplnr.setSign("");
    rWapinr.setLow("");
    rWapinr.setHigh("");
    rWapinr.setOption("");
    rWapinr.setSign("");
    rWapius.setLow("");
    rWapius.setHigh("");
    rWapius.setOption("");
    rWapius.setSign("");
    wcaImport.setAnye("");
    wcaImport.setAnyi("");
    wcaImport.setSpd("");
    wcaImport.setStatu("");
    wcaImport.setWerks("");          
    ZbapiRBdate rBdateBean = rBdate.getOriginalBean();
    ZbapiRResp rRespBean = rResp.getOriginalBean();
    ZbapiRTplnr rTplnrBean = rTplnr.getOriginalBean();
    ZbapiRWapinr rWapinrBean = rWapinr.getOriginalBean();
    ZbapiRWapius rWapiusBean = rWapius.getOriginalBean();
    ZbapiWcalistImport wcaImportBean = wcaImport.getOriginalBean();
    ZbapiRBdate[] rBdateArray = new ZbapiRBdate[1];
    rBdateArray[0] = rBdateBean;
    ZbapiRResp[] rRespArray = new ZbapiRResp[1];
    rRespArray[0] = rRespBean;
    ZbapiRTplnr[] rTplnrArray = new ZbapiRTplnr[1];
    rTplnrArray[0] = rTplnrBean;          
    ZbapiRWapinr[] rWapinrArray = new ZbapiRWapinr[1];
    rWapinrArray[0] = rWapinrBean;          
    ZbapiRWapius[] rWapiusArray = new ZbapiRWapius[1];
    rWapiusArray[0] = rWapiusBean;
    wcalistBean.setRBdate(rBdateArray);
    wcalistBean.setRResp(rRespArray);
    wcalistBean.setRTplnr(rTplnrArray);
    wcalistBean.setRWapinr(rWapinrArray);
    wcalistBean.setRWapius(rWapiusArray);
    wcalistBean.setWaImport(wcaImportBean);
    wdContext.nodeRequest_ZBAPIWCALIST_zbapiWcalist().bind(model);
    The exception is:
    LocalizedMessage: Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.XmlMarshalException: XML Serialization Error. Property [Low] of class [com.pjs.wcalist.model.wsmodel.proxies.types.p1.ZbapiRWapius] must exist and can not be null. This is required by schema description.
    In the test of the web service the Low of the ZbapiRWapius is not needed.
    And after setting the value, the exception told me that I must set the tWca, ie the subnode of the result.
    The problem is: I do not know why the setter method of the original bean of the "parameters" only accept the parameter of array type .
    I think the parameter I set may be wrong.
    When I deal with another web service model(the level of the structure is not deep), it is ok.
    Could someone give me some suggestion or explanation?
    Thanks a lot.
    Referring to the link:
    Re: HELP for WebDynpro web service model with complex structure

    Hi,
    I ahbe set the proxy in webcontainer in configtool,Is there any other thing i need to do?But please tell me what does the error means,<b>GenericServiceFactory error</b>?
    waiting for your reply,
    Regards,
    Ameya

  • LDAP Context Initialization Problem in a Servlet's Init method

    Hi
    I have a servlet where I am using the InitialDirContext to Initialize context to a LDAP Server. I have created the context as a static variable. I am initializing the context in the init method and am using the same reference in the service method of the servlet. But if the context fails (due to naming exception and time out) in the init method all my requests in the service method will fail. Is there any way to validate the reference before using the same in the service method.
    Also what is the best approach to initialize the context in a servlet. Whether to initialize in the service method or the init method.
    I would appreciate if anyone can answer the above 2 queries.
    Thanks in advace,
    Ashish

    If you want to use threadsafe objects in doPost/doGet there are two common ways to do this.
    First, create the object in doPost/doGet. This may get expensive depending on the object, but it is 'easy' code and works.
    The second option is to create a pool of objects in the servlet's init() method and to just have doPost/doGet get an object from the pool, use it and return it when done. This take a little more work to code, but the overhead of creating objects is almost eliminated. Look at jakarta/apache commons pool for a quick way to do this.
    If you create on object in init() and use it in doPost/doGet, any time you get two request for the same servlet at the same time you will have synchronization issues that will usually cause problems. There is one instance of each Servlet, so all request for that servlet go through the single instance. Anything in doPost/doGet must be threadsafe.

  • Initialization Problem in PRODUCTION

    Hi SAPeans,
    I am having an unusual problem like: I have enhanced a Generic Data Source by adding a field into it. I have written some code for it and i have uploaded data from DSO to Cube subsequently. I checked in DEV and Quality with Delta Initialization it is working fine and records are showing nicely.
    But the problem is the same objects has been transported to PRD but here the Initialization is not working I am working with BI 7.0 When I am triggering the InfoPackage it is taking more time and showing yellow status. Why it is happening cud anyone please put some light on this issue.
    Regards,
    Phani.

    Hi,
      I think this is due to large volume of data which usually load in the production system.
    This can happen either lacking of optimised code and if it is a further update make sure that psa should be there in between.
    before doing the load check db statistics and system statistics.
    hope it helps.

  • Installer Failed to Initialize problem

    Hello,
    I recently purchased a new MacBook Pro after years of using PC's. Previously I was using PS7 on my pc and I decided it was probably time to try out a newer version of PS on my new Mac. I am running Lion and I attempted to download and run PSC5 but I get the error "Installer Failed to Initialize". I downloaded the Adobe Advisor and it couldn't find anything wrong. I tried restarting my machine and that didn't help.
    I realize that this might just be user error because I am not very familiar with Macs yet, but does anyone have any suggestions for me?

    For people who go searching in the future to resolve this issue, I was able to resolve it by taking my computer into a Genuis Bar after trying to resolve the issue over the phone with Adobe support (they had no clue what the problem was).
    I had an anti-virus program that I had removed from my computer but wasn't completely gone. This was causing a conflict with Adobe Installer. Despite having restarted the computer, ended all programs running, etc, the program was still running in the background. Be sure to check your running system programs - duh - for hidden programs that the Adobe Advisor doesn't catch. In my cast it was Avast! anti-virus.
    For such a pricey program, I have to say that support is severely lacking.

  • Dsccsetup initialization problem

    Hello,
    I am facing problem in initialization of dsccsetup.
    I have DSEE 6.3 zip distribution on Solaris 10 x86 machines.
    Please see below execution followed:
    root@dr1 # ./dsccsetup status
    Sun Java (TM) Web Console is not installed
    DSCC Agent is not registered in Cacao
    DSCC Registry has not been created yet
    root@dr1 # ./dsccsetup initialize -v
    DSCC Application cannot be registered because it is not installed
    Registering DSCC Agent in Cacao...
    ## Running /opt/SUNWdsee/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm register-module /var/tmp/-632480837/com.sun.directory.nquick.xml
    Checking Cacao status...
    ## Running /opt/SUNWdsee/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm status
    ## Running /opt/SUNWdsee/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm get-param network-bind-address
    ## Running /opt/SUNWdsee/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm list-modules
    Deploying DSCC agent in Cacao...
    ## Running /opt/SUNWdsee/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm deploy /var/tmp/-632480837/com.sun.directory.nquick.xml
    DSCC agent has been successfully registered in Cacao.
    Choose password for Directory Service Manager:
    Confirm password for Directory Service Manager:
    Creating DSCC registry...
    /opt/SUNWdsee/var/dscc6/dcc already exists
    DSCC Registry has been created successfully
    root@dr1 # smcwebserver enable
    root@dr1 # ./dsccsetup initialize -v
    DSCC Application cannot be registered because it is not installed
    DSCC Agent is already registered
    DSCC Registry has already been created
    root@dr1 # smcwebserver status
    Sun Java(TM) Web Console is stopped
    root@dr1 # smcwebserver start
    Console service cannot be started.
    Run "svcadm clear system/webconsole:console" to repair.
    root@dr1 # svcadm clear system/webconsole:console
    root@dr1 # smcwebserver start
    Starting Sun Java(TM) Web Console Version 3.1 ...
    Check log file: /var/svc/log/system-webconsole:console.log
    Run "svcs system/webconsole:console" to determine its status.
    root@d1 # tail -f  /var/svc/log/system-webconsole:console.log
    [date : time] executing start method ("/lib/svc/method/svc-webconsole start") ]
    Starting Sun Java(TM) Web Console Version 3.1 ...
    Cannot determine if console started successfully
    [ date: time] Method "start" exited with status 0 ]
    [ date : time  Stopping because all processes in service exited. ]
    [ date: time Executing stop method ("/lib/svc/method/svc-webconsole stop") ]
    The console is stopped.
    [ date:time Method "stop" exited with status 0 ]
    [ date:tim Executing start method ("/lib/svc/method/svc-webconsole start") ]
    Starting Sun Java(TM) Web Console Version 3.1 ...
    and these messages are repeating automatically.whats wrong? how come console is not installed.
    regards,
    sumant

    Hello,
    root@dr1 # pkginfo | grep "Solaris Management Console"
    application SUNWcsmc                         Simplified Chinese Solaris Management Console 2.1
    application SUNWessmc                        Spanish Solaris Management Console 2.1
    application SUNWfrsmc                        French Solaris Management Console 2.1
    application SUNWhksmc                        Traditional Chinese (Hong Kong) Solaris Management Console 2.1
    application SUNWhsmc                         Traditional Chinese Solaris Management Console 2.1
    application SUNWjsmc                         Japanese Solaris Management Console 2.1
    application SUNWksmc                         Korean Solaris Management Console 2.1
    application SUNWmc                           Solaris Management Console 2.1 (Server Components)
    application SUNWmcc                          Solaris Management Console 2.1 (Client Components)
    application SUNWmccom                        Solaris Management Console 2.1 (Common Components)
    application SUNWmcdev                        Solaris Management Console 2.1 (Development Kit)
    application SUNWmcex                         Solaris Management Console 2.1 (Examples)
    application SUNWwbmc                         Solaris Management Console 2.1 (WBEM Components)what are you looking for?
    regards,
    sumant.

  • BB Pearl Flip initialization problems

    Hi everybody,
    I am new here and I would like to get some answers to my BB Pearl Flip problems.
    I bought one back in March 2010. It worked well for 6 weeks, then problems started.
    It either said 'initialization failed' or 'SIM card error'
    I contacted my provider E-Plus and they gave me a new SIM card. Didn't help.
    Another card from T-mobile works, but then it has not the Blackberry option.
    Then I bought a new phone (now I have two). This phone does not work properly either.
    It has four options after turning it on.
    - it works fine for a while
    - initialization failed
    - SIM card error
    - Code error (4 digit PIN code was correct)
    It takes sometimes many attempts to get it working.
    But when it started it does not mean it works well.
    It does for a while, then suddenly it fails. Sometimes just a few seconds after it received connection and downloaded messages, somethimes while messenging, or during a call, also mostly after I hang up, or also on closing the handheld. Again 'initialization failed' or 'SIM card error' appears on the screen. So I turn it off and on again, same game again. Also after pulling out the card it is not guaranteed that it works.
    I have to do that >10 times a day and it is just frustrating. Mostly because this happens when I actually use the phone. It does not fail when it is just waiting for something to happen.
    I love my Pearl Flip, but this bug is annoying. I can not rely on my phone.
    Can anybody help me?
    Thank you and kind regards,
    Very sad S.

    Try resetting the device by pulling the battery while the device is powered on.  Leave the battery out for about 30 seconds and then put it all back together.  Once the phone resets, try to zoom or ALT-digit again and it should work.  Pulling the battery usually fixes most problems with a BB.

Maybe you are looking for