Context issue

Hi All,
I having 1 segment A, structure is like below
A  0.. 4
  DIR  0..1
  VAR 0..1
</A>
now the segment may occur in following way
<A >
  S
VAR1
</A>
<A >
B
</A>
<A> 
D
  VAR2
</A>
<A> 
  C
</A>
i need to check if DIR = D then send the corresponding VAR i.e here i need output <b>VAR2</b>
but here i am facing problem.... due to VAR missing in 2nd segment....its taking the value VAR1.....
can anyone help
Edited by: sam kumar on Dec 10, 2008 5:16 AM
Edited by: sam kumar on Dec 10, 2008 5:16 AM

Hi Sam,
I think you have an input xml as:
<ns0:A_MT xmlns:ns0="http://NodeFunctions">
   <AA>
      <DIR>D</DIR>
      <VAR>Value1</VAR>
   </AA>
   <AA>
      <DIR>S</DIR>
      <VAR>Value2</VAR>
   </AA>
   <AA>
      <DIR>D</DIR>
      <VAR>Value3</VAR>
   </AA>
</ns0:A_MT>
Out put Xml as:
<ns0:A_MT xmlns:ns0="http://NodeFunctions">
   <AA>
      <DIR>D</DIR>
      <VAR>Value1</VAR>
   </AA>
   <AA>
      <DIR>D</DIR>
      <VAR>Value3</VAR>
   </AA>
</ns0:A_MT>
Please Follow the mapping as mentioned below...
source feild DIR --(move the context to node A_MT)
                  'D'  --   equals --- >create if ----> target node AA
source feild DIR --
                  'D'  -- equals --- > if without else ---> splitByValue(eachvalue)---> target node DIR.
                                         source feild DIR -- 
source feild DIR --
                  'D'  -- equals --- > if without else ---> splitByValue(eachvalue)---> target node DIR.
                                         source feild VAR--
this is work..

Similar Messages

  • Graphical Message Mapping - context issue

    Hi experts,
    This is the source structure I have http://www.flickr.com/photos/45449397@N03/4273866518/
    Now, for the target segment, I need to do the following:
    For every block of EAN, I need to check the CHECK fields.
    So for EAN 1111, I see 4 X's. But I need to check the distinct values.
    So, 1 x for CHECK_1, 1 x for CHECK_2 and 1 X for CHECK_5.
    As soon as there is an X, I need to create a target. Even if there are several X values in the same column, I only need it once.
    --> target will be 3 different segment groups.
    For EAN 2222, I only need 1 target segment group.
    Please advice.
    Thanks a lot!
    Dimitri

    I was about to write this that you will face this blank issue.
    You have to remove those blank vaues. We have to choices to do that either we modify the current UDF or we write one more very samll advanced UDF of type "queue".
    If we go for option 2 then the new UDF2 code will be like this..
    while creating the udf just select the type as queue (you will see 3 options: single value, context & queue)
    I guess the default argument will be "var1", if yes you can leave it as it is and the just copy and paset the code.
    for (int i = 0; i < var1.length; i++ )
    if (! var1<i>.equals(""))
    result.addValue( var1<i> );
    Now the mapping will be something like this..
    Source --> old UDF--->RemoveContext--->new UDF --->Target.
    But if you like to go for option 1 then first change the type of UDF to Queue and then in the code modify the "return" statement e.g.
    if (RegTH.equals('X'))
    result.addValue( ExpTH );
    else if (RegHI.equals('X'))
    result.addValue( ExpHI );
    else if (RegLO.equals('X'))
    result.addValue( ExpLO );
    else if (RegPE.equals('X' ))
    result.addValue( ExpPE );
    else if (RegLOW.equals('X'))
    result.addValue( ExpLOW );
    result.addValue( ResultList.SUPPRESS );
    Note: for option 1 you have to set context of source value to their heighest level, so that there shouldn't be a context change. Or you can use RemoveContext.

  • Context issue in Jboss WAR

    I have Jb0ss 4.0.
    I have a folder structure like
    D:\jboss-4.0\server\strong_server\deploy\strong_ctx
    I have a war file named strong_ctx.war in the above directory
    Now i want to place one more war named stront_1.war in the same directory. But i am not able to find the context for the same
    Please throw some light on the context in JBoss and let me know how i can resolve the issue
    regards
    Aman

    Hi Bhargava,
    That measure would be "delegate measure". change that to SUM.
    For delegate measure we have to SUM function in WEBi variable. Otherwise multiple values cant be summed up.
    Muralidhar Reddy.

  • Security context issue when executing a SQL command in SQLCMD

    Simplified core issue below:
    I have myscript.sql that has:
    SELECT name FROM Sys.Databases
    GO
    USE mydatabase
    GO
    EXEC mystoredprocedure 'myparameter'
    GO
    When I open cmd.exe and use:
    SQLCMD -S localhost\myinstance -i script.sql
    It executes fine.
    When I open cmd.exe in C# using the Process class and execute the same command I get the following error:
    name
    master
    tempdb
    model
    msdb
    mydatabase
    (5 rows affected)
    Msg 916, Level 14, State 1, Server localhost\myinstance, Line 1
    The server principal "NT AUTHORITY\SYSTEM" is not able to access the database "mydatabase" under the current security context.
    Msg 2812, Level 16, State 62, Server localhost\myinstance, Line 1
    Could not find stored procedure 'mystoredprocedure'.
    And now the detailed explaination:
    I created an MSI which installs my custom application.
    During the bootstrap process, SQL Server 2012 Express is installed using the following parameters:
    /INSTANCEID="SQLEXPRESS"
    /ACTION="Install"
    /FEATURES=SQLEngine,Replication
    /HELP="False"
    /INDICATEPROGRESS="False"
    /Q="True"
    /QS="False"
    /ROLE="AllFeatures_WithDefaults"
    /ENU="True"
    /ERRORREPORTING="False"
    /SQMREPORTING=0
    /INSTANCENAME="SQLEXPRESS"
    /AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /AGTSVCSTARTUPTYPE="Disabled"
    /ISSVCSTARTUPTYPE="Automatic"
    /ISSVCACCOUNT="NT AUTHORITY\NetworkService"
    /ASSVCSTARTUPTYPE="Automatic"
    /ASCOLLATION="Latin1_General_CI_AS"
    /ASDATADIR="Data"
    /ASBACKUPDIR="Backup"
    /ASTEMPDIR="Temp"
    /ASCONFIGDIR="Config"
    /ASPROVIDERMSOLAP="1"
    /SQLSVCSTARTUPTYPE="Automatic"
    /FILESTREAMLEVEL="0"
    /ENABLERANU="True"
    /SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
    /SQLSVCACCOUNT="NT Authority\Network Service"
    /SECURITYMODE="SQL"
    /ADDCURRENTUSERASSQLADMIN="True"
    /RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /RSSVCSTARTUPTYPE="Automatic"
    /RSINSTALLMODE="FilesOnlyMode"
    /HIDECONSOLE
    /IACCEPTSQLSERVERLICENSETERMS
    /SAPWD="***************"
    The MSI then executes an Installer class DLL written in C# which restores a database to the SqlExpress instance.
    When the restore is completed, the Installer class then uses the Process class to launch CMD.exe and execute the SQL script using SQLCMD.
    Process vProcess = new Process();
    ProcessStartInfo vStartInfo = new ProcessStartInfo("cmd.exe");
    vStartInfo.Arguments = "/c set path=%path%;" + Context.Parameters["TargetDir"] + "\\; && sqlcmd -S LocalHost\\myinstance -i myscript.sql";
    vProcess.StartInfo = vStartInfo;
    vProcess.Start();
    vProcess.WaitForExit(30000);
    This is where I get the error mentioned above.
    However if I execute the same command manually by opening CMD.exe from the RUN command, it executes perfectly.
    I can not use -U or -P to supply a user / password, I MUST use integrated security.
    Additional info:
    Previously SQL Server 2008 Express has been in use for the bootstrapper, and this issue did not occur.
    The database the MSI restores is also built from SQL Server 2008. (Will be built from 2012 in the future.)
    Installation is performed on an account with administrative rights.
    Running the installer AS Administrator does not fix the issue.
    Any help would be greatly appreciated, as well please let me know if additional info is required.
    Thank you

    I'm having a similar issue where I'm using a batch file to execute commands to a group of servers. I can use the batch commands when updating MyDatabase but get the security context error when I try to update MyDatabase with a join to TheirDatabase except
    on servers where I am sysadmin.   Like I said, I can update MyDatabase as long as I don't join to TheirDatabase.
    Update A
    Set A.CCMCoderStaffSID = IsNull(B.StaffSID, -1)
    From MyDatabase.[R_Encounter].[VejdPfcsLinkageDataF19610x5] A
    Left Join ThierDatabase.Staff.Staff B on
    A.Sta3n = B.Sta3n and A.[CCMCoderF200IEN]= B.StaffIEN
    Error:
    Msg 916, Level 14, State 1, Server R04PHIDWH58, Line 1
    The server principal "MyDomain\ME" is not able to access the database "TheirDatabase" under the current security context.
    Line from batch:
    sqlcmd -S Server54 -d MyDatabase -i D:\ETLDevelopment\R04\Me\querytools\%RAWTablesScript%  -o D:\ETLDevelopment\R04\Me\UpdateSIDV1.txt

  • Xi4.1 Context Issue

    I have created a new universe using Information Design Tool 4.1 Build: 14.1.5.1568, this is my first full blown universe against an Oracle 11g database.
    It contains 69 tables, 119 joins and 12 contexts.  There are no issues in the DFX.  I have the customer table joined to 10 fact tables.  So the customer table is in 10 contexts plus an additional context just for the customer group of tables.
    When I try to pull just customer number into a webi report with nothing else, the query is joining customer to a fact table instead of just pulling the customer table.
    I am not getting prompted to select context.
    COMPARE_CONTEXTS_WITH_JOINS set to YES.
    Why aren't I just getting a select from customer in my webi report?
    Thank you,
    Roger

    We pulled in Decision First.  They took a look at my universe and found the issue.
    When creating filters, you have to go to the Properties tab and only select the options you want.  In my case, the filters are for use in reports, not the universe, so I had to uncheck "Use filter as mandatory in query"
    This solved my problem.

  • BPM Process Context Issue

    Hi Experts,
                   Can i use WDJ context as process context in BPM(Once i assigned WDJ component to a Task, i can able to see the WD context in Data types ) or we have to create a separate xsd in BPM. i came to know about this functionality so only asked.
                   Also i want to pass more values during starting of the process. I know it can be done through WS. Any other option is available?
    Regards,
    Arun

    Hi Arun,
    You are triggering the Process in WDJ with a webservice. so the values you assigned to the WS attributes in WD will be available in Start event of the Process.(not in the process context)
    Now you can have mapping between your start event and process context to get the data in process context and use it further steps.
    Hope it helps.
    Thanks.
    Priya

  • Context Issue in mapping

    Dear Experts,
    I have a source structure as follows:
    <Header>
              <Header1>first </Header1>
              <Header2>second</Header2>
              <Header3>third</Header3>        
              <LineItem>
                           <Item1>one</Item1>
                           <Item2>two</Item2>
                           <Item3>three</Item3>
                           <Item4>four</Item4>
              </LineItem>
              <LineItem>
                           <Item1>onea</Item1>
                           <Item2>twob</Item2>
                           <Item3>threec</Item3>
                           <Item4>fourd</Item4>
              </LineItem>
    </Header>
    <Header>
              <Header1>firstfirst </Header1>
              <Header2>secondsecond</Header2>
              <Header3>thirdthird</Header3>         
              <LineItem>
                           <Item1>oneone</Item1>
                           <Item2>twotwo</Item2>
                           <Item3>threethree</Item3>
                           <Item4>fourfour</Item4>
              </LineItem>
              <LineItem>
                           <Item1>oneoneaa</Item1>
                           <Item2>twotwobb</Item2>
                           <Item3>threethreecc</Item3>
                           <Item4>fourfourdd</Item4>
              </LineItem>
    </Header>
    My target structure is an ORDERS IDOC. I have to map the Header3 to the second instance of the segment E1EDP01->E1EDP02->BELNR.
    For each occurrance of the Header and IDOC has to be created. and for each occurrance of LINEITEM the E1EDP01 segement has to be populated.
    Now when i test the mapping, i get different values of the Header3 in one single IDOC instead of it being the same.Thats is in the first IDOC, the BELNR field of E1EDP02 of the all LineItems should be "third" only. But i get both "third" and "thirdthird". Whereas "thirdthird" should be occuring in the BELNR of the second IDOC. I tried using copyvalue function. But if i use that the same value gets replicated for all the IDOCs which should not be the case. I have tried all possibilities, changing the context, remove context, split by value. But the result is the same as described without the use of copy value.
    How should i resolve this probelm?
    Thanks and Regards,
    Merrilly

    Hi,
    First check with the display queue function for each and every step in mapping of Belnr, what are you getting there.
    Thanks!

  • More "Refnum not valid in this context" issues

    I read through the recent related thread here and I'm getting the same error with a different use case.  (LV8.6)
    In Ben's case it appears he was typecasting the queue refnum.  I'm not doing anything with the queue refnum yet I'm seeing the out of context error and frequent crashes.  I can start Labview, open and run this vi before doing anything else and it still shows up as invalid.  I even went so far as to replace the queue data type with a Labview Object--no dice.  Invalid.
    Any ideas?

    Daklu wrote:
    I read through the recent related thread here and I'm getting the same error with a different use case.  (LV8.6)
    Any ideas?
    No GOOD ideas.
    Have you tried an "always copy" node in the wire after the branch where the type splits from the data being queue?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • IDoc Context issue

    Hi all,
    I am facing problem with IDoc contexts... IDoc(CLFMAS01) has 3 fields ATNAM,ATWRT and ATFVL in same segment.
    if no value found during the IDoc creation, the fields creating in Segments, hence PI is not receiving the fields within the IDoc.
    Ex:if there is no value for ATWRT, the field is not present in the IDoc segment.
    sample IDoc segment values:
    ATNAM       -
      ATWRT       -
      ATFVL
    NAMVal1    -
      WRTVal1     -
      FVLVal1
    NAMVal2    -
      WRTVal2     -
      FVLVal2
    NAMVal3    -
      FVLVal3
    NAMVal4    -
      WRTVal4     -
    NAMVal5    -
      WRTVal5     -
      FVLVal5
    NAMVal6    -
      FVLVal6
    When I use context at Segment level, the values are showing like these:
    ATNAM       -
      ATWRT       -
      ATFVL
    NAMVal1    -
      WRTVal1     -
      FVLVal1
    NAMVal2    -
      WRTVal2     -
      FVLVal2
    NAMVal3    -
      WRTVal4     -
      FVLVal3
    NAMVal4    -
      WRTVal5     -
      FVLVal5
    NAMVal5    -
    FVLVal6
    NAMVal6   
    in the above case, If the loop is in 5 iteration, I am getting the ATFVL value as "FVLVal6". But I am supposed to get the values  "WRTVal5" and "FVLVal5"
    While I am looping the values with in the UDF, I am not getting in proper order.
    How can I get the proper order using the context? I tried RemContext and CollapseContext functions.
    Any inputs? Thanks for your time...

    Thanks mark,
    My problem is:
    If the values are not maintained in Classification master, then IDoc fields are not filling. The empty fields are not passing to PI. Means, I can not have the Fields in IDoc segments.
    Comming to technical fields...
    The IDoc (CLFMAS) segment (E1AUSPM) has 3 fields:
    1) ATNAM
    2) AWTRT
    3) ATFLV
    Some times the AWTRT will not be maintained in SAP ECC. When IDoc is created, the field AWTRT is not present in segment E1AUSPM.
    Example:
    ATNAMAWTRTATFLV
    -a1w1--
    f1
    -a2novaluef2
    -a3w3--
    f3
    -a4novaluef4
    -a5novaluef5
    -a6w6--
    f6
    Note: "novalue" means the field AWTRT is not present in segment.
    In my PI Mapping, I am using context at segment level E1AUSPM.
    Now I am getting the context as like this:
    ATNAMAWTRTATFLV
    -a1w1--
    f1
    -a2w3--
    f2
    -a3w6--
    f3
    -a4--
    f4
    -a5--
    f5
    -a6--
    f6
    I want the context to be keep as it is, eventhough the field is not present in IDoc-Segment.
    If its possible in PI, can you suggest the code change in SAP ECC? I don't know how to sent empty fields to PI from SAP.
    Thanks in Adv...

  • 11.1.3 workspace web context issues

    Hi all,
    I am running an apparently successfully configured version of 11.1.1.3. Everything was working fine, until I stopped all the services so that I could take a backup, and then restarted them manually in the order recommended by Oracle. Now the following things happen:
    When I try to access workspace it won't let me login. When I close the page and launch it again, it lets me log in, but I get a 404 error.
    I can't access the webcontext for any other applications such as say Planning. http://servername:19000/HyperionPlanning or http://servername:8300/HyperionPlanning or http://servername:8300/HyperionPlanning/logon.jsp or http://servername:8300/HyperionPlanning/appwizard.jsp - none of these work, "Page cannot be displayed".
    What I can access funnilly is http://servername:8300/HyperionPlanning/AddDimension.jsp. I had worked with my dimensions intially right after configuration when things were working, and so this link happened to be in my address bar selection. Through this link, I am able to access planning, edit dimensions, data forms etc.
    oh and the EPM Diagnostic says all the web contexts are available.
    My workspace logs from C:/Hyperion/logs are as below. Main error that I see is highlighted in bold:
    29 Nov 2010 10:10:51,649 ALWAYS [main] tools.config.RegistryConfig - RegistryConfig: starts logging at 1291047051649 (Mon Nov 29 10:10:51 CST 2010)
    29 Nov 2010 10:10:51,665 ALWAYS [main] tools.config.RegistryConfig - Parsing products file: /conf/WSProducts.xml
    29 Nov 2010 10:10:53,368 ALWAYS [main] tools.config.RegistryConfig - Products file parsed without errors.
    29 Nov 2010 10:10:53,368 ALWAYS [main] tools.config.RegistryConfig - Attempting registry connection using hyperion.home=C:\Hyperion
    29 Nov 2010 10:10:53,368 ALWAYS [main] tools.config.RegistryConfig - Got Registry handle: com.hyperion.hit.registry.Registry@c8ebd6
    29 Nov 2010 10:10:53,368 ALWAYS [main] tools.config.RegistryConfig - Looking for the Workspace Product node (type: WORKSPACE)
    29 Nov 2010 10:10:56,227 ALWAYS [main] tools.config.RegistryConfig - Found node: com.hyperion.hit.registry.ProductComponentImpl@b22bb4d9
    29 Nov 2010 10:10:56,227 ALWAYS [main] tools.config.RegistryConfig - Looking for Workspace Logical Webapp (child of Workspace Product, type: LOGICAL_WEB_APP)
    29 Nov 2010 10:10:57,868 ALWAYS [main] tools.config.RegistryConfig - Found node: com.hyperion.hit.registry.LogicalWebAppComponentImpl@b22ba6b4
    29 Nov 2010 10:10:57,883 ALWAYS [main] tools.config.RegistryConfig - Looking for Workspace Web Server (child of Workspace product, type: WEB_SERVER)
    29 Nov 2010 10:10:58,243 ALWAYS [main] tools.config.RegistryConfig - Found 6 webapps integrated into Workspace.
    29 Nov 2010 10:10:58,243 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,243 ALWAYS [main] tools.config.RegistryConfig - WebAppType: WORKSPACE_WEBAPP
    29 Nov 2010 10:10:58,243 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    29 Nov 2010 10:10:58,243 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - WebAppType: CALC_WEBAPP
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product not in static configuration file, initializing.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - WebAppType: PLANNING_WEBAPP
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product file configuration is for version(s): 9.2,9.3 but registered product version is 9.5.0.0
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Discarding old configuration.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Setting product to use external configuration.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - WebAppType: ADMIN_SERVICES_WEB_APP
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - WebAppType: PROVIDER_SERVICES_WEB_APP
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - WebAppType: SHARED_SERVICES_WEBAPP
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product HPS-9.3 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product Analyzer-9.5 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product Reports-9.5 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product BPMA-9.3 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product biee-9.5 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product HFM-9.2,9.3 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Product HMB-9.2,9.3 was not registered. Deactivating.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Loading configurations from Shared Services as needed.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Missing product context CALC
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Checking HSS for context under product code CALC-9.5.0
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Attempting Workspace Services connection for HSS.
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - GSM count: 1
    29 Nov 2010 10:10:58,258 ALWAYS [main] tools.config.RegistryConfig - Client factory instance: com.brio.one.client.ClientFactory@bd5df
    29 Nov 2010 10:10:59,024 ALWAYS [main] tools.config.RegistryConfig - Recovered 1502 bytes from HSS.
    29 Nov 2010 10:10:59,024 ALWAYS [main] tools.config.RegistryConfig - Product file parsed without errors.
    29 Nov 2010 10:10:59,024 ALWAYS [main] tools.config.RegistryConfig - Found and loaded context for CALC
    29 Nov 2010 10:10:59,024 ALWAYS [main] tools.config.RegistryConfig - Missing product context HP
    29 Nov 2010 10:10:59,024 ALWAYS [main] tools.config.RegistryConfig - Checking HSS for context under product code HP-9.5.0
    29 Nov 2010 10:10:59,524 ALWAYS [main] tools.config.RegistryConfig - Recovered 37129 bytes from HSS.
    29 Nov 2010 10:10:59,540 ALWAYS [main] tools.config.RegistryConfig - Product file parsed without errors.
    29 Nov 2010 10:10:59,540 ALWAYS [main] tools.config.RegistryConfig - Found and loaded context for HP
    29 Nov 2010 10:10:59,540 ALWAYS [main] tools.config.RegistryConfig - Finished loading needed Shared Services configurations.
    *29 Nov 2010 10:18:06,055 ERROR [TP-Processor3] servlet.command.OpenWorkspacePageCommand - Internal error: Attempt to access nonexistent file*
    in the repository: C:\Hyperion\products\Foundation\workspace\data\RM1_MachineX\root\CorporateWorkspacePages\HomePage.wsp
    Nov 29 10:18:06.055
    Internal error: Attempt to access nonexistent file
    in the repository: C:\Hyperion\products\Foundation\workspace\data\RM1_MachineX\root\CorporateWorkspacePages\HomePage.wsp
    com.sqribe.transformer.RepositoryFileNotFoundException: Internal error: Attempt to access nonexistent file
    in the repository: C:\Hyperion\products\Foundation\workspace\data\RM1_MachineX\root\CorporateWorkspacePages\HomePage.wsp
         at sun.reflect.GeneratedConstructorAccessor21.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sqribe.transformer.TRCP.receiveException(Unknown Source)
         at com.sqribe.transformer.TransException.unmarshal(Unknown Source)
         at com.sqribe.transformer.TRCP.receiveTransferable(Unknown Source)
         at com.sqribe.transformer.TRCPClient.transactionReceive(Unknown Source)
         at com.sqribe.transformer.ServiceAgent.sendCommand(Unknown Source)
         at com.sqribe.transformer.ServiceAgent.sendCommand(Unknown Source)
         at com.sqribe.transformer.ServiceAgent.sendCommand(Unknown Source)
         at com.sqribe.transformer.ServiceBroker.submit(Unknown Source)
         at com.brio.one.services.portal.proxy.TRCPServiceProxy.submit(Unknown Source)
         at com.sqribe.WS.WebClientService.submit(Unknown Source)
         at com.sqribe.WS.BaseSessionInfo.tapiSubmit(Unknown Source)
         at com.brio.one.web.datasource.adapter.Repository.getDocumentContent(Unknown Source)
         at com.hyperion.tools.workspacepages.servlet.command.ResourceManager.getDocument(Unknown Source)
         at com.hyperion.tools.workspacepages.servlet.command.OpenWorkspacePageCommand.getReport(Unknown Source)
         at com.hyperion.tools.workspacepages.servlet.command.OpenWorkspacePageTemplateCommand.execute(Unknown Source)
         at com.hyperion.tools.workspacepages.servlet.WorkspacePagesServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at com.hyperion.i18n.filter.ForwardHelper.forward(Unknown Source)
         at com.brio.one.web.util.requestdispatcher.RequestDispatcherUtil.forward(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.dispatchRequest(Unknown Source)
         at com.brio.one.web.command.CmdRequestDispatch.execute(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.invokeCommand(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.run(Unknown Source)
         at com.sqribe.WS.WSBaseServlet.executeRequest(Unknown Source)
         at com.sqribe.WS.WSBaseServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.hyperion.bpm.LocalizationServletFilter.doFilter(LocalizationServletFilter.java:69)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.hyperion.i18n.filter.Utf8Filter.doFilter(Unknown Source)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)
         at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)
         at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)
         at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)
         at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    29 Nov 2010 10:18:06,133 ERROR [TP-Processor3] workspacepages.servlet.WorkspacePagesServlet -
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at com.hyperion.tools.workspacepages.servlet.WorkspacePagesServlet.forwardRequest(Unknown Source)
         at com.hyperion.tools.workspacepages.servlet.WorkspacePagesServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at com.hyperion.i18n.filter.ForwardHelper.forward(Unknown Source)
         at com.brio.one.web.util.requestdispatcher.RequestDispatcherUtil.forward(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.dispatchRequest(Unknown Source)
         at com.brio.one.web.command.CmdRequestDispatch.execute(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.invokeCommand(Unknown Source)
         at com.sqribe.WS.WebSQRIBE.run(Unknown Source)
         at com.sqribe.WS.WSBaseServlet.executeRequest(Unknown Source)
         at com.sqribe.WS.WSBaseServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.hyperion.bpm.LocalizationServletFilter.doFilter(LocalizationServletFilter.java:69)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.hyperion.i18n.filter.Utf8Filter.doFilter(Unknown Source)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)
         at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)
         at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)
         at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)
         at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)

    Contents of HyS9Planning-sysout.log are as follows. Don't tell me much I'm afraid:
    Nov 29, 2010 10:09:51 AM org.apache.coyote.http11.Http11BaseProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8300
    Nov 29, 2010 10:09:51 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 938 ms
    Nov 29, 2010 10:09:51 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Nov 29, 2010 10:09:51 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Hyperion Embedded Java Container/1.0.0
    Nov 29, 2010 10:09:51 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    [ERROR] ManagerBase - IOException while loading persisted sessions: java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.hyperion.planning.HspImages <java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.hyperion.planning.HspImages>java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.hyperion.planning.HspImages
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1309)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1908)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1832)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
         at org.apache.catalina.session.StandardSession.readObject(StandardSession.java:1386)
         at org.apache.catalina.session.StandardSession.readObjectData(StandardSession.java:921)
         at org.apache.catalina.session.StandardManager.doLoad(StandardManager.java:393)
         at org.apache.catalina.session.StandardManager.load(StandardManager.java:320)
         at org.apache.catalina.session.StandardManager.start(StandardManager.java:636)
         at org.apache.catalina.core.ContainerBase.setManager(ContainerBase.java:431)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4131)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
         at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:904)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:867)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Caused by: java.io.NotSerializableException: com.hyperion.planning.HspImages
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1081)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1347)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
         at org.apache.catalina.session.StandardSession.writeObject(StandardSession.java:1462)
         at org.apache.catalina.session.StandardSession.writeObjectData(StandardSession.java:938)
         at org.apache.catalina.session.StandardManager.doUnload(StandardManager.java:516)
         at org.apache.catalina.session.StandardManager.unload(StandardManager.java:462)
         at org.apache.catalina.session.StandardManager.stop(StandardManager.java:666)
         at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4345)
         at org.apache.catalina.core.ContainerBase.removeChild(ContainerBase.java:892)
         at org.apache.catalina.startup.HostConfig.undeployApps(HostConfig.java:1164)
         at org.apache.catalina.startup.HostConfig.stop(HostConfig.java:1135)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:312)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1054)
         at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1066)
         at org.apache.catalina.core.StandardEngine.stop(StandardEngine.java:447)
         at org.apache.catalina.core.StandardService.stop(StandardService.java:512)
         at org.apache.catalina.core.StandardServer.stop(StandardServer.java:743)
         at org.apache.catalina.startup.Catalina.stop(Catalina.java:601)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:576)
         ... 6 more
    [ERROR] ManagerBase - Exception loading sessions from persistent storage <java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.hyperion.planning.HspImages>java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.hyperion.planning.HspImages
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1309)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1908)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1832)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
         at org.apache.catalina.session.StandardSession.readObject(StandardSession.java:1386)
         at org.apache.catalina.session.StandardSession.readObjectData(StandardSession.java:921)
         at org.apache.catalina.session.StandardManager.doLoad(StandardManager.java:393)
         at org.apache.catalina.session.StandardManager.load(StandardManager.java:320)
         at org.apache.catalina.session.StandardManager.start(StandardManager.java:636)
         at org.apache.catalina.core.ContainerBase.setManager(ContainerBase.java:431)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4131)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
         at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:904)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:867)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Caused by: java.io.NotSerializableException: com.hyperion.planning.HspImages
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1081)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1347)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
         at org.apache.catalina.session.StandardSession.writeObject(StandardSession.java:1462)
         at org.apache.catalina.session.StandardSession.writeObjectData(StandardSession.java:938)
         at org.apache.catalina.session.StandardManager.doUnload(StandardManager.java:516)
         at org.apache.catalina.session.StandardManager.unload(StandardManager.java:462)
         at org.apache.catalina.session.StandardManager.stop(StandardManager.java:666)
         at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4345)
         at org.apache.catalina.core.ContainerBase.removeChild(ContainerBase.java:892)
         at org.apache.catalina.startup.HostConfig.undeployApps(HostConfig.java:1164)
         at org.apache.catalina.startup.HostConfig.stop(HostConfig.java:1135)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:312)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1054)
         at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1066)
         at org.apache.catalina.core.StandardEngine.stop(StandardEngine.java:447)
         at org.apache.catalina.core.StandardService.stop(StandardService.java:512)
         at org.apache.catalina.core.StandardServer.stop(StandardServer.java:743)
         at org.apache.catalina.startup.Catalina.stop(Catalina.java:601)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:576)
         ... 6 more
    [INFO] HyperionPlanning] - Starting Hyperion Planning...
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    C:\Hyperion\common\config\9.5.0.0\product\planning\9.5.0.0\planning_1.xml
    displayName = Planning
    componentTypes =
    priority = 50
    version = 9.5.0.0
    build = 1
    location = C:\Hyperion\products\Planning
    taskSequence =
    task =
    *******C:\Hyperion\common\config\9.5.0.0\registry.properties
    Creating rebind thread to RMI
    [INFO] HyperionPlanning] - Hyperion Planning started in 15 seconds.
    Nov 29, 2010 10:10:11 AM org.apache.coyote.http11.Http11BaseProtocol start
    INFO: Starting Coyote HTTP/1.1 on http-8300
    Nov 29, 2010 10:10:11 AM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8302
    Nov 29, 2010 10:10:11 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/141 config=null
    Nov 29, 2010 10:10:11 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 20296 ms
    using Java property for Hyperion Home C:\Hyperion
    Setting Arbor path to: C:\Hyperion\common\EssbaseRTC\9.5.0.0
    Reaquired task list lease: Mon Nov 29 10:21:08 CST 2010: 1291047668836
    d{ISO8601} INFO TP-Processor2 com.hyperion.audit.client.runtime.AuditRuntime - Audit Client has been created for the server http://machinex:28080/interop/Audit
    d{ISO8601} INFO pinging com.hyperion.audit.client.cache.AuditConfigFilter - Client Enable Status false
    d{ISO8601} INFO filterConfig com.hyperion.audit.client.cache.AuditConfigFilter - Client Enable Status false

  • ODI Context Issue

    Hi
    I am using ODI for data conversion from legacy. We have done development and testing on INSTANCE A and created the context for A. its worked fine. Now I am deploying all things on INSTANCE B and created contest B.While running the interface with context B is still referring the context A.It is creating flow table on instance A and showing error for instance B that flow table not exist.
    This thing is working fine for some other conversion element with the steps. But for some conversion elements it throwing flow table error. Any input will be appreciated.
    Edited by: VRai on Nov 16, 2008 7:11 AM

    Hi VRai
    Take a look if, at interface, the context isn't fixed.
    Just click on each Interface table (source and target) and be sure that, at propriety window, the context is set to "Undefined"
    Does it help you?

  • Weblogic 10 Initial context issue...?

    Hi All,
    Please provide a suggestion for the same.
    InitialContext not getting loaded properly and the weblogic jars are also there in the cp
    Re: Exception in Initial Context Weblogic 10
    thx in Adv.

    Hi RainaV,
    This problem looks like a Weblogic library conflict in your runtime environment.
    java.lang.NoSuchMethodError: weblogic.common.internal.VersionInfo.initialize(Z)V
    at weblogic.kernel.Kernel.initialize(Kernel.java:88)
    This means you have some possible mix of old and new Weblogic binaries loaded in your classpath. The Exception means that the compiled version of the Kernal class (loaded in your system classpath) is refering a different version of the class weblogic.common.internal.VersionInfo, with different initialize() method signature.
    Please have a look at your full classpath and look any for duplicate and conflicted version of the weblogic.jar library.
    Also, which version of weblogic client are you using? There is no such VersionInfo class in Weblogic 10.0.x. Please have a look at the MANIFEST file of the weblogic.jar you are using to confirm. You are likely trying to use an older client like Weblogic 9.x.
    Regards
    P-H
    http://javaeesupportpatterns.blogspot.com/

  • OAF DFF Context  Issue

    Hi All,
    I am working On DFF
    I can able to display elements, based on DFF Context.
    But I want to Hide the Global Data Element Context Segments by Controller Extension,
    not by Personalization.
    I am getting error while Rendering False to Global Data Element Context Segments.
    Also how can we set the Context based on Reference field.?
    Please Help me on this..

    Hi,
    As per OAF development team using java script is not recommended and Oracle does not support any javascript related personalizations.
    For custom pages when we are left with no choice we can use javascript. Refer
    http://mukx.blogspot.com/2007/07/javascript-in-oa-framework.html
    Coming to using javascript in seeded pages, my point of view is:
    as long as a specific project has production support team is there we can use javascript for personalizations.
    Most of the times we do extend controller for extention requirements in seeded page, but in R11 as per Dev guide "There is no guarantee that controller extensions will survive an upgrade (you should assume that they will not).".
    So considering this I use javascript wherever only CO extention is required, since both are not supported by oracle :) .
    Regards,
    Anand

  • Tomcat Context Issue

    I am working on a migration project.
    I am trying to run my project on tomcat 5.5.26. I need to strip context(myworld) from URL. I tried to play with context root, but it's not working. Could any ont post your suggestions on this?
    I want to open my application without "myworld" as part of URL. i.e. just http://localhost:8080
    I have below myworld.xml in conf\Catalina\localhost folder.
    <Context path="/myworld" crossContext="false" reloadable="false" debug="1">
      <Manager className="org.apache.catalina.session.StandardManager" pathname=""/>
    <Resource name="mypool" .../>
    <Logger className="org.apache.catalina.logger.FileLogger" directory="logs"  prefix="myworld_log." suffix=".txt" timestamp="true"/>
    </Context>

    Package the webapplication as an EAR and set the context root setting in the EAR's application.xml to "/".

  • Mapping and the context issue

    Hi All
    I m facing a problem for mapping ATMAS IDOC to a flat file:
    As you know, each line from E1BPE1MATHEAD (Retail Data Transfer: Header Segment with Control Info) there is many in E1BPE1MARMRT (Retail Data Transfer: Units of Measure). The business logic for mapping requires creating on recordSet in the flat file but I need to do same math using all corresponding lines from E1BPE1MARMRT recrdSet.
    Ex:
    E1BPE1MATHEAD
    MATERIAL
    1223456
    E1BPE1MARMRT
    MATERIAL      NUMERATOR     UNIT
    1223456          23          PC
    1223456          54          EA
    1223456          67          PAL
    BL for the out put file:
    MATERIAL               Value
    1223456                    235467
    Thanks,
    P.C

    Hi Point Cube,
    UDF ( User defined function ) is graphical mapping ! ( ok, advanced graphical mapping )
    I'm no java guru but I did find it relatively easy to use it . I guess yours should look something like :
    public void ResultType(String[] a,ResultList result,Container container)
      //write your code here
      int j = 0;
      int total = 1 ;
      for( int i=0;i<a.length;i++){
       total = total*a<i>
      result.addValue(total);
    You might need some additional conversion to/from string here and there.
    rgds
    Dirk
    Message was edited by: Dirk Deberlanger
    Message was edited by: Dirk Deberlanger : Some code doesn't seem to copy/past right : total = total*a<i>

Maybe you are looking for

  • How to dynamically add Nodes to JTree?

    How to add nodes to a Jtree by getting the information into a specific file For example, in JList: DefaultListModel workgroups; workgroups = new DefaultListModel(); List<String> workgroupsList = new ArrayList<String>(); workgroupsList = ParserUtils.g

  • Error in pre processing phase MAIN_SHDIMP/SUBMOD_SH2_RUN/XPRAS_SHD_AIMMERGE

    Hi Experts, We faced below error in Pre processing phase of EHP6 Upgrade, MAIN_SHDIMP/SUBMOD_SH2_RUN/XPRAS_SHD_AIMMERGE. Please anyone could suggest an alternative or workaround  for this Attached is screenshot of error. Below is information from the

  • Free Space Issue - Please Help!

    Hey guys, As you can see by the pic above, the hard drive on my MacBook Pro is pretty much full, but I have no idea why? Audio, Movies, Photos & Apps all look legit, but what the **** is going on with Backups & Other and why is it taking up 42GB?! An

  • How to set the indent for an entire paragraph without shortcut

    I recently got told how to let the whole paragraph have an indent on the left side, just like the first line via Cmd+´(German version of InDesign). Is there also a menu command that does this? I don't like using shortcuts until I know what I'm actual

  • Synching Photo Albums from Iphone to Iphoto

    My Macbook was stolen a few months back and I'm wondering if I there's a way to synch the photo albums in my Iphone to my new Macbook Pro.