Map integration - message GAC: Method/property does not exist

Hi
In TM when using the Map function we get the message: GAC: Method/property does not exist
Does anyone know what to do?

Hi
Yes i´m sorry you are right, but actually it´s more or less what i got... I have set up the Customizing and all i get when i use the Map function in the Transportation Cockpit is this:

Similar Messages

  • Error in Message Mapping "Target message IDOC: ORDRSP.ORDERS02 does not exi

    Hi,
    I have joined newly to the team.
    When I tried to open one message mapping it throwinf follwing error...
    "Target message IDOC: ORDRSP.ORDERS02 does not exist in software component version ID: 44423362454456485465..
    Check whether the software component version ID: 44423362454456485465 is in Enterprise Service Repository. Import this version if necessary"
    Is there any impact because of which in the message flow?
    In my case some of the messages are failing with mapping error "runtime exception occured during application mapping com/sap/xi/tf/_SUS2MMOrderResponse_; java.lang.NullPointerException: while trying to invoke the method java.util.Map.get(java.lang.Object) of an object loaded from field com.sap.aii.map`"
    And some of the messages are processed sucessfully and they also using the same mapping program 'SUS2MMOrderResponse'.
    Could someone tell me is there any relation for the above error in XML messages and to the message mapping?
    Regards
    Baskaran K

    Could someone tell me is there any relation for the above error in XML messages and to the message mapping?
    The error mentions that you have used an IDOC in your mapping program which is not found in the ESR....you need to check if the IDOC is present in the ESR and is present under the correct SWCV.
    Once you have done the check do some dummy change to the mapping and activate it (if in DEV) and then check the CACHE.

  • Getting "Method 'sign_in' does not exist" Error (using Charles)

    This may be a bit off the FLEX field, and have to do with Zend Framework's ZEND_AMF class. Unfortunately I haven't been able to dig anything up, and comments posted on Wade Arnolds site have not received any responses, so I thought I'd give it a go here.
    My ServiceController Class:
    public function loginAction()
         $this->_helper->viewRenderer->setNoRender();
         $server = new Zend_Amf_Server();
         $server->setClass('LoginAmfService', 'LoginService');
         $server->setClassMap('CurrentUserVO', 'CurrentUserVO');
         $server->setProduction(false);
         print($server->handle());
    My LoginAmfService class:
    class LoginAmfService
          * Main login function.
          * @param  string        $name
          * @param  string        $password
          * @return CurrentUserVO
         public function sign_in($name, $password)
              $authAdapter     = new Zend_Auth_Adapter_DbTable(Zend_Registry::get('db'), 'users', 'user_name', 'password', 'PASSWORD(?) AND active = 1');
              $returnValue     = new CurrentUserVO();
              $authAdapter->setIdentity(htmlspecialchars($name))
                   ->setCredential(htmlspecialchars($password));
              $authResult = $authAdapter->authenticate();
              if ($authResult->isValid())
                   $userArray                          = $authAdapter->getResultRowObject(array('id', 'first_name', 'last_name', 'title', 'photo'));
                   $returnValue->first_name     = $userArray->first_name;
                   $returnValue->last_name          = $userArray->last_name;
                   $returnValue->title               = $userArray->title;
                   $returnValue->photo               = $userArray->photo;
                   $returnValue->token               = $userArray->id;
              return $returnValue;
          * Function used to log people off.
         public function sign_out()
              $authAdapter = Zend_Auth::getInstance();
              $authAdapter->clearIdentity();
    My SignIn FLEX module (the relevant portions):
         <mx:RemoteObject
              id="LoginRemote"
              destination="login"
              source="SignIn"
              showBusyCursor="true"
              fault="parentDocument.handleFault(event)"
         >
               <mx:method name="sign_in" result="signin_handle(event)" />
               <mx:method name="sign_out" result="signout_handle(event)" />
         </mx:RemoteObject>
         <mx:Script>
              <![CDATA[
                   import mx.rpc.events.FaultEvent;
                   import mx.utils.ArrayUtil;
                   import mx.rpc.events.ResultEvent;
                   import mx.controls.Alert;
                   import com.brassworks.ValueObjects.CurrentUserVO;
                   import mx.events.VideoEvent;
                   [Bindable]
                   private var this_user:CurrentUserVO = new CurrentUserVO();
                   private function mdl_init():void
                        focusManager.setFocus(txt_username);
                   private function signin_handle(event:ResultEvent):void
                             this_user = event.result as CurrentUserVO;
                             if (this_user.token == null) {Alert.show("Supplied login credentials are not valid. Please try again.");}
                             else
                                  this.parentApplication.setUser(this.this_user);
                   private function signout_handle(event:ResultEvent):void
                   private function sign_in(event:Event):void
                        try
                             //Alert.show(txt_name.text + "|" + txt_password.text);
                             LoginRemote.sign_in(txt_username.text, txt_password.text);
                        catch (error:Error)
                             this.parentDocument.handleFault(error);
                   private function sign_out(event:Event):void
                   private function show_error(error:Error, s_function:String):void
                        Alert.show("Method:" + s_function + "\nName: " + error.name + "\nID: " + error.errorID + "\nMessage: " + error.message + "\nStack Trace: " + error.getStackTrace() + "\nError: " + error.toString());
                   private function handleFault(event:FaultEvent):void
                        Alert.show(event.fault.faultDetail, event.fault.faultString);
              ]]>
         </mx:Script>
    Now, all this is great and good, as it works with Zend Framework 1.7.6. However, when I try to upgrade to 1.7.8 (to take advantage of session management and other bug-fixes), I get the following error (using Charles):
    #1 /var/web/htdocs/core/library/Zend/Amf/Server.php(390): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
    #2 /var/web/htdocs/core/application/default/controllers/ServicesController.php(73): Zend_Amf_Server->handle()
    #3 /var/web/htdocs/core/library/Zend/Controller/Action.php(503): ServicesController->loginAction()
    #4 /var/web/htdocs/core/library/Zend/Controller/Dispatcher/Standard.php(285): Zend_Controller_Action->dispatch('loginAction')
    #5 /var/web/htdocs/core/library/Zend/Controller/Front.php(934): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
    #6 /var/web/htdocs/core/application/bootstrap.php(39): Zend_Controller_Front->dispatch()
    #7 /var/web/htdocs/core/public/index.php(5): Bootstrap->runApp()
    #8 {main} ?Method "sign_in" does not exist
    I have no idea why this would not work anymore. My assumption is that I am not correctly setting up Zend_Amf (but then again, my counter-argument is that it worked before, so ..... ????)
    Thanks for any help!
    -Mike

    For those that are also fighting this issue:
    The problem appears to be that the RemoteObject needs to specify the class containing the methods as a source parameter. According to this bug report (http://framework.zend.com/issues/browse/ZF-5168) it is supposed to have been addressed, but apparently has re-emerged in Zend_Amf since version 1.7.7.
    Using my example above, I would have to specify the RO as:
    <mx:RemoteObject
              id="LoginRemote"
              destination="login"
              source="LoginAmfService"
              showBusyCursor="true"
              fault="parentDocument.handleFault(event)"
         >
               <mx:method name="sign_in" result="signin_handle(event)" />
               <mx:method name="sign_out" result="signout_handle(event)" />
         </mx:RemoteObjecct>

  • Error message FI 759: Fund does not exist in FM area

    Hill!
    I have to make a distribution in CO-OM (tr KSV5) according to fund
    But if I customize fund as sender, choose fund from the fund catalog  and make a formal chek of cycle I see an error message FI 759: Fund does not exist in FM area. How can I make it go away?

    Hi Irina,
    As per the note 489315, you must choose a layout that contains the exact data for the active objects.
    When planning for non-FM company codes you will have to change the profile/layout that only contain the elements that are active in the company code.
    If you encounter error: KAFF002 while doing the above then please can you see if point 3 of note 555134 will help to by-pass the message.
    Once you add the field Fund and set it to optional you should be able to use planning.
    Note 555134:
    3.  The fields of the Funds Management are defined as 'Required entry
        fields' in the standard layouts, in other words depending on the
        permissibility of the initial value for a field an entry is always
        demanded. To prevent this there are two options:
        a) Copy the desired standard layout into an own (transaction KP65,
           KPG5, OPO1) and via "Extras -> Variables -> Variables definition'
           set the corresponding field to 'Optional". Then, add this layout
           to your planner profile with transaction KP34.
        b) Implement the attached program ZK555134 (correction instruction
           461025). After the entry of planning area and layout all fields
           of the Funds Management are set depending on your selection of
           'Optional' or 'Not optional' (standard system). Like this you can
           also change standard layouts. The check for the fields for which
           'initial' is not a valid value is still carried out.
    If you want to use FUND Accounting, I suggest you to read note 518610 for your reference. This note contains information about FUND Accounting and its effect.
    If you only want to use 'Fund' in Funds Management, you do not have to activate the 'Fund' account assignment element.
    If you activated the FUND account assignment element, which is at CLIENT level activation, the fund would always have to be filled as a required  entry field in CO, FI-AA and HR for all company codes in the client concern.
    Please also refer to notes 625262 and 659086.
    or re-import the standard planning layout from the client 000. In the note 320197 is descriped how to do this.
    I believe this will resolve your issue.
    Best Regards,
    Vanessa.

  • 8i Error Message: Shared Memory Realm does Not exist

    After I installed Oracle 8i Server on my PC. I could not logged in. I get this error message: Shared Memory Realm does Not exist.
    Does anyone have this same problem before? Please Help!!
    Thanks

    I have the same problem on Oracle 817 installed on a dual processor PC on W2K
    Again ! Do anyone know the prob ? ... thank's
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by [email protected]:
    After I installed Oracle 8i Server on my PC. I could not logged in. I get this error message: Shared Memory Realm does Not exist.
    Does anyone have this same problem before? Please Help!!
    Thanks<HR></BLOCKQUOTE>
    null

  • Error in Integration Repository: ..SecStore.properties does not exist

    Hi Guys!
    I'm getting this error when I try to tick and save the values "Objects Are Original Objects" and "Objects Are Modifiable" in a software component version in the Integration Repository:
    "ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    <hostname>\sapmnt\XIP\SYS\global\security\data\SecStore.properties" does not exist although it should.."
    Would any of you know what might be wrong?
    I'm using PI 7.0.
    Warm Regards,
    Glenn

    Is your XI installed on SQL Server? Seems like there is a db connection error woth XI to the underlying database.
    Check if the DB instance is running.
    VJ

  • Method Implementation does not exist in the SWO1.

    Hi,
    If the definition of the method in the business object does not exist in the Business Object, where all the places the system will try to find & execute the code. For ex: we have a method(custom method) in the YBUSXXXX business object. But when we double click the method , we get the screen where we have 3 tabs, General/Result Type/ABAP tabs. In the ABAP tab, the radio button 'Other' was selected. I did not find the code for this method. If the code does not fins here, where system will find dynamically & excute that code. & how can I see that code? Pls help.
    Thanks,
    Pandu
    Moderator message : Duplicate post locked.
    Edited by: Vinod Kumar on Oct 5, 2011 9:43 AM

    See the below link
    The work book does not exist in the document store
    Regs
    Gopi
    Assign points if it is useful

  • Error message: local root folder does not exist

    Greetings,
    I'm working on a MacPro 2x2.66Ghz, running DW from CS2 and
    through a strange combination of keyboard keystrokes while cleaning
    my keyboard yesterday I inadvertantly renamed my hard drive "-OX"
    from it's default. I can't seem to remember what the default name
    of my hard drive was, but i think it was simply "Macintosh". I've
    renamed it that, but on launching DW for the first time today I got
    an error message saying that "The local root folder, web_content,
    does not exist" and it gave me the option to manage sites and set
    my local root folder again. Is there a way to re-establish my local
    root folder for every site that I currently manage in one swipe, or
    do I have to go in and manually do this for each and every Site
    within my Files panel?
    Thanks for your ideas,
    Pedro

    Actually, it solved one issue but seems to have created
    another! So, at least now my Sites are all working okay with
    respect to a local root folder. But let's say I open an .html file
    by double-clicking it in the Files panel. With that file active if
    I choose Preview in Browser I get a "File Not Found" error message
    from Firefox.... even though it looks like the path to that file is
    correct.
    One thing I notice about the path in the address bar of
    Firefox is that there are 3 forward-slashes after the file: bit at
    the beginning of the line.
    For example, the page generating the error has this address:
    file:///Macintosh%20HD/Users/peter/Sites/MySite/web_content/index_vertical.html
    If you notice carefully there are 3 slashes at the beginning
    of the line. If I go to "Manage Sites" I have the settings set to
    "links relative to document" and my root folder and images folder
    show the proper locations. What have I done?
    The error message also says the following in the details
    section: Firefox can't find the file at /Macintosh
    HD/Users/peter/Sites/MySite/web_content/index_vertical.html.
    so there's a forward-slash before the hard drive.... is that
    okay?
    Thanks for your ideas!
    Pedro

  • Error while deploy mapping ora-06550 table or view does not exist

    Hi everyone,
    i have a target source 'U_BCK' that cointains some Oracle table.
    I have also created a target schema 'BCK_OWNER' where i create some dimensions and cubes with mappings.
    My mappings connect some table from U_BCK with dimension or cube from BCK_OWNER.
    My repository owner is called 'rep_owner' and i used this user to create every metadata.
    Now i'm trying to deploy, and i don't have any problem until deploying mappings. When i try to deploy mappings i get some errors like ora-06550,ora-00942 table or view does not exist and statement ignored.
    Please help me and sorry for my english...
    Thanks,
    Alex.

    The mapping, that drives the data from one table to another is deployed to the database as a PL/SQL package. When deploying your mapping fails, it most often means that the resulting PL/SQL package doesn't compile in the database.
    Using Oracle SQL Developer (or Toad, SQL Navigator or any other tool) connect to the schema on the database where you have deployed the mapping. Open the pl/sql package and compile it. That should show you the place where the compilation fails, and give you an idea as to what table it can not find. Otherwise, in SQLPLUS, you can simply give the following command:
    ALTER PACKAGE THE_PACKAGE_NAME_GOES_HERE compile body;
    show errors;
    As the database user who owns the source tables, make sure to issue a GRANT command for each of the source tables, granting SELECT access to the database user who owns the mapping:
    grant select on TABLENAME to TARGETSCHEMA.
    hope this helps
    Borkur

  • Error while deploying map: ORA-00942 Table or view does not exist

    Hi OWB experts,
    I'm having yet another problem with OWB, this time when I try to deploy a mapping I get this error:
    ORA-06550: line 59, column 3:
    PL/SQL: ORA-00942: table or view does not exist
    DIM_01_ESTCON_MAP
    ORA-06550: line 93, column 3:
    PL/SQL: SQL Statement ignored
    If I open the package that OWB created I see the errors:
    CURSOR "DEDUP_SRC_0_IN2_c" IS
    SELECT
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_ID" "ESTADOCONEXION_ID",
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_COD_ESTCON" "ESTADOCONEXION_COD_ESTCON",
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_DESC_ESTCON" "ESTADOCONEXION_DESC_ESTCON",
    "DEDUP_INPUT_SUBQUERY2$1"."STANDARD_TOTAL_COD_TTL" "STANDARD_TOTAL_COD_TTL"
    FROM
    (SELECT
    DISTINCT
    "DIM_01_ESTCON_MAP"."GET_CONST_CA_0_ESTADOCO" "ESTADOCONEXION_ID",
    "ESTADOS"."ESTADO" "ESTADOCONEXION_COD_ESTCON",
    "ESTADOS"."DESC_EST" "ESTADOCONEXION_DESC_ESTCON",
    "DIM_01_ESTCON_MAP"."GET_TOTAL_C_0_TTLID" "STANDARD_TOTAL_COD_TTL"
    FROM
    "CONSULTA"."ESTADOS"@"PROD@AYADEV_LOCATION" "ESTADOS"
    WHERE
    ( estado LIKE 'EC%' )) "DEDUP_INPUT_SUBQUERY2$1";
    Where AYADEV_LOCATION points to the module/schema/location where my source data is.
    Now, I have defined three modules:
    SOURCE, where I defined the tables and other objects from the original database (source data)
    STAGE, where I am performing all the transformations; here I defined all the maps
    TARGET, this holds the dimensions and fact tables.
    Now all three modules point to different databases. The dblink for AYADEV_LOCATION has been created and shouldn't present any problems. The username that I'm using to log on to the source database is current and I can connect to it through SQL+ or any other program (TOAD, SQLDeveloper).
    What could be happening here? I'm using OWB 10g R2, with Oracle DB 10g R2.
    I'd really appreciate any help you could provide.
    Best Regards,
    --Osvaldo
    [osantos]

    Hi,
    I'm still having problems but I found out why these tables are returning errors. The username I've been given by the DBA to connect to the database is CONSULTA, but this user is only for querying purposes, the actual objects reside on a differente schema, of course, which is PROD. So the line:
    "CONSULTA"."ESTADOS"@"PROD@AYADEV_LOCATION" "ESTADOS"
    raises an exception because the table ESTADOS is not located on that schema, but on PROD. If I query the table from SQL Plus with:
    SELECT *
    FROM [email protected]@AYADEV_LOCATION
    then there's no problem at all.
    Why is this? How do I instruct OWB to point to the correct schema or to avoind fully qualifying the table name?
    Please help me, I'm kind of confused here.
    Best Regards,
    --oswaldo.
    [osantos]

  • Graphical mapping issue with useOneAsMany if segment does not exist

    Hi all
    I have an issue with graphical mapping in an IDoc to file scenario. I need to have header level fields mapped to line item fields. Whether or not and how many source header segments of the same type exist depends on a qualifier (QUALF). This is generally working if I use the following graphical mapping:
    if QUALF = 001 then <source>  ->  removeContext  ->  useOneAsMany  ->  splitByValue  ->  <target>
    ... with setting QUALF, <source>, and the second input for the useOneAsMany to the highest possible context node.
    Nevertheless, if the segment with the qualifier 001 does not exist in the source then the mapping throws the error "Too few values in first queue in fuction useOneAsMany". Whatever I've tried, the mapping wants to execute the useOneAsMany statement anyway and I haven't found a way to omit this. Whether the target would be created with an empty value or not created at all would be secondary. Would eventually somebody have a solution to this problem?
    Thanks in advance,
    Daniel

    Daniel,
    try using mapWithDefault function before useAsmany
    if QUALF = 001 then <source> -> removeContext -> <b>MapwithDefault</b>->useOneAsMany -> splitByValue -> <target>
    I think it takes care even if the value occur in the contaxt or.
    Babu

  • CR XI Error message "package package name does not exist"

    I am trying to use the Java API that is available for Crystal reports XI. I am using NetBeans v.5.5.1 for developing my Java code.
    The application does not seem to find the Crystal reports Java libraries, I cannot compile it successfully. For instance, the statement
    import com.crystaldecisions.reports.sdk;
    shows an error message "package com.crystaldecisions.reports.sdk does not exist"
    I have installed the Java SDK under the web/web-lib directory in my NetBeans project folder, i.e. I copied all the jar files from c:\Program Files\Common Files\Business Objects\3.0\java\lib into the web-lib directory because this is the directory where I have all the other library files that I am using in my NetBeans project.
    I am creating instances of the classes ReportAppSession and ReportClientDocument in my java code.
    Thanks in advance for any help on this.
    Adriana

    Hi Adriana
    Do you have the jrcerom.jar file in your lib folder.
    This is the jar file which includes the package com.crystaldecisions.reports.sdk .
    Thanks
    Soni

  • VL01N - Message VL200 -The batch does not exist in plant

    Hi all,
    I try to create a delivery for a sales order via VA03 by displaying the order, select Sales document and then Delivery from the menu bar. On the Dilvery overview screen, when I enter an invalid Batch number for the item, I receive a warming messge VL 200 (The batch does not exist in plant &) and I can save the delivery. My problem is I want to put a hard stop instead of a warning message so the delivery cannot be saved. Is there any solution for this or it is impossible to put a hard stop. I was thinking of config ... but I am not familiar with this. Please help!
    Thank you very much in advance,
    Chuong

    Hi Seshu,
    In include FV50PF0L, there is a logic to either display a Warning or Abend message, so i guess something can be set to do this. Please help, thansk!
          if v50agl-sammelgang = space and "46A BEY
          ( ( sy-dynnr ne gc_dyn_batchsplit and
              t185v-panel ne gc_panel_chsp ) or
            tvlk-vbtyp ca vbtyp_lire ) .
            perform message_handling in program (programmname)
                                               using cvbap-posnr
                                                     '200'
                                                     'W'
                                                     'VL'
                                                     lc_werks
                                                     space
                                                     space
                                                     space.
          elseif ( sy-dynnr eq gc_dyn_batchsplit or          "46A BEY
                   t185v-panel eq gc_panel_chsp ).
           if sy-binpt = charx.                                  "v_n_481983
               message id 'VL' type 'A' number '200' with lc_werks.
           else.                                                 "^_n_481983
            perform message_handling in program (programmname)
                                                  using cvbap-posnr
                                                        '200'
                                                        'E'
                                                        'VL'
                                                        lc_werks
                                                        space
                                                        space
                                                        space.
           endif.                                                  "n_481983

  • Please help: Two-Sided One-to-One Mapping issues warning when owned instance does not exist

    Hello,
    Is it expected behavior? I have two classes A and B, B references A and its
    foreign key column is its PK
    A owns B (marked as inverse-owner in JDO metadata) when I access A.getB() if
    B does not exist I get a warning.
    Is it to be expected? Does two sided relation always require presence of
    both sides of the relation and does nto fit my need?
    Is there any way to have bi-directional association in my case with owned
    record being optional?
    Should I use two simple one sided one-to-one or may be simple one sided from
    child to owner and One-to-One with Inverse Columns from owner to child
    What are disadvantages of using two one sided (simple and inverse) vs.
    two-sided?
    Thank you
    Alex

    Here is what I had to do to solve this issue:
    Basically I had to add the MSSQL TCP/IP port as an end-point in Azure. After I did that, then I was able to create the data-source. However, I was only able to authenticate with a SQL account, as any domain account would return me an error saying that the
    domain isn't trusted.
    What puzzles me here is how come the Data Source Manager would inform me that an account username/password was invalid, but it would fail/timeout if I provided valid credentials (!?!?!!?)

  • [BUG] 'parameters' property does not exist on LoaderContext in AIR 2.6

    Hi there,
    The 'parameters' property was added to the Flash Player 10.2 and AIR 2.6 runtimes (reference: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/LoaderCont ext.html#parameters)
    However, any attempt to set the parameters property has been throwing a ReferenceError (ReferenceError: Error #1056: Cannot create property parameters on flash.system.LoaderContext) in Flash CS5.5 with the FLA set to AIR 2.6. If I sent the FLA to 10.2, it does not throw the ReferenceError.
    This is a bug that must have cropped up in the last four months, as I just compiled this code in December when this worked fine, but now throws the ReferenceError.
    Any assistance would be greatly appreciated.
    Cheers,
    M

    You might want to post on this over at the Flash Pro forum.  The current AIR SDK is up to 3.2 (this thread gives details on how some users have updated their copies of CS 5.5 with AIR 3.2), however given that this worked 4 months ago for you I don't believe updating to 3.2 will solve your problem.
    The next step, if you believe this is an AIR problem would be to create a new bug report and provide us with some sample code or project that will allow us to easily reproduce the issue.  You can do that over at bugbase.adobe.com.
    Thanks,
    Chris

Maybe you are looking for

  • Grayed Out Wi-Fi On iPod Touch That Says "No Wi-Fi"

    Okay my iPod Touch has been doing this for awhile now. It's been off and on. . .It's like a terrible relationship ._. that you just can't get out of!!! I have restored my iPod SO many times, I've lost count. I was on my Facebook app messaging one of

  • ADF UIX JAAS

    Have any one out there came accross a good example on how to set up authentication for Oracle ADF Business Components UIX Clients

  • Weblogic 10.0.1.0 -  Server shows in console as RUNNING, but unreachable.

    It seems the admin server loses contact with some (not all) managed servers, all of these are responsive and work correctly, but you can't use the admin console for monitoring or everything else. In the server list view you can see they show as RUNNI

  • Image array applet freezes

    I'm using a modified version of Romain Guy's music shelf (http://www.curious-creature.org/2005/07/09/a-music-shelf-in-java2d/), using it as an applet in an extension for a mozilla based media player. In order to allow decent performance I'm using a p

  • Mac Mini does not power on

    This has happened to me twice over the past two days. The shiny new Intel Mini that I just bought two weeks ago won't wake up from a sleep. Both times the power light comes on, but nothing else happens. I am suspecting the SMC as I had to follow the