ALBPM and ALUI ?

hi,
i have a task to work on integrating ALBPM and ALUI.
i have a modeled process developed in ALBPM and that particular process' workflow has to be surfaced in portal.
i know that the process can be converted into a web service and the portal can create a remote portlet using that web service.
can someone please explain ins and outs ?
any ideas ?
thanks in advance
Edited by zorawar at 10/13/2007 11:23 PM

BEA already integrated ALBPM and ALUI. you have to install ALBPM WE (Web Extensions).
this version provides ALBPM porltets that you can use inthe ALUI portal. It also installs a "process Administrator" into the Admin Utilities drop down in the adminarea of the portal. From there, you can publish your ALBPM project to the ALUI portal.
There are 4 useful portlets that installed with ALUI:
1) Applications (shows a list of all your global activities and gloabl create activities)
2) Inbox / worklist
3) Work Item Details
4) Views
I will warn you that ALBPM Version 5.7 WE SP2 has some bugs in it (hotfixes have been developed though) that are only noticeable when you publish you process to ALBPM in the ALUI portal.

Similar Messages

  • Comparison between 10GR3(Web Center Interaction) Portal  and ALUI 6.5 MP1

    Hi All,
    I need details of specific advantages of Oracle 10GR3 (Web Center Interaction) Portal over ALUI 6.5
    Please can anyone share any documentaion regarding this if you something available readymade. I need it urgently.

    Blog entry from Brian Harrison, the product manager of WCI:
    http://blogs.oracle.com/WCI/
    "Should I Upgrade to WCI 10gR3":
    Surprisingly, this is not an easy question to answer. If you are currently running a version of ALUI 6.5, then there is truly not a great reason for upgrading, because there were not a lot of changes made between ALUI 6.5 MP1 and WCI 10gR3. In fact, we essentially think of WCI 10gR3 as ALUI 6.5 MP2. Here is a list of the primary changes that were made to create WCI 10gR3:
    • New Adaptive Layouts for iPhone
    • New Experience Rule for IP addresses
    • Oracle Branding
    • Removal of license key requirements
    • A few bug fixes across different areas of the products
    If one or more of the above items are important, then there may be a good reason to upgrade to WCI 10gR3. However, if the above items are not important, then maybe it isn’t important for you to upgrade quite yet.
    On the other hand, if you are currently running a version of ALUI 6.x prior to 6.5, then there are a lot of great reasons for upgrading because there were a lot of new features added between 6.x and WCI 10gR3. The new UI engine called Adaptive Layouts is definitely a very significant improvement as well as the availability of the new Friendly URLs feature. In almost every instance, I would recommend that a ALUI 6.0 or 6.1 customer upgrade to WCI 10gR3.

  • ALBPM and MEGA Vendor integration

    Hi,
    I know that we can import a process model from Aris and Visio.
    How about a Mega process model ? any support ?
    Thanks

    There is no support for importing process definitions from MEGA.
    MAriano Benitez
    AquaLogic BPM 5.7 SP1 is now available!

  • ALUI - separation of binaries and configuration

    Hi,
    Can anyone shed some info on how to separate ALUI 6.5 binaries and the portal configuration pieces ?
    I want to mimc the same concept of user_projects folder in Weblogic Server where we create a domain that is not part of product binaries.
    I want to have some thing similar in ALUI. Basically, protal configuration and ALUI binaries should be owned by different user ids ?
    Is this possible ?
    Thanks --agr                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Kathryn,
    I usually use an architecture with three parallel loops: GUI, DAQ, and Processing. Each loop is a state machine. The GUI uses an event structure for handling user inputs and updates indicators, if needed, in the timeout case. DAQ acuires inputs and send outputs to external instruments and devices. Processing does everything else: Data analysis, formatting and reduction, saving to files, parameter error checking, mode determination (Is everything ready to permit Run?...), and so on.
    I use two pairs of queues for inter-loop communication. GUI-Process and Process-DAQ. The GUI loop does not talk directly to the DAQ loop. One queue in each pair carries commands, queries, requests along with parameters while the other takes reponses in the opposite direction. If you are using a recent version of LV, you can pass the data via queues without flattening (older queues only handled strings). I often use a cluster with an enum, a numeric, and a string for the command queue and an enum, numeric, and string or array, depending on the data types, for the response queue. The enums are typedefs which define the nature of the data being passed. Some commands such as Pause or Halt need no parameters. Setup DAQ might require sampling rate, number of channels, and number of samples per scan to be sent. Responses include Status, Error, Stopped, as well as Data. The Data response might include Channel number (or Name), the data, and a timestamp.
    Some people use the destruction of the queue and the error generated by attempting to read it as a "Stop the parallel loop" command. I prefer an explicit "Halt" command and a status response "Stopped" to let the program know that orderly shutdown has occurred.
    Lynn

  • Initiate process link in ALUI Collaboration

    We installed WE with ALBPM. So the ALUI is integrated with ALBPM.
    Every thing is working fine, but the 'Initiate Process' button in ALUI collaboration is not showing any processes to attach.
    Are there any requirements while designing process in order to get the process listed.
    Or
    Does it need any configuration in ALBPM or ALUI
    Please help.
    Thank you
    Edited by [email protected] at 06/10/2008 7:35 AM

    I think that you have to create simple JSP page where your users can enter required input and this will be used for instantiating BPEL process, which generates your user tasks.
    I expect that you are using default Human Workflow Services UI, which is just an simple JSP application. You can find its source codes here:
    <ORAHOME>\integration\orabpel\system\appserver\oc4j\j2ee\home\applications\hw_services\worklistxpress
    So find place where you would like to put your instantiation of BPEL process and extend the JSP page.
    Example how to instantiate BPEL process from JSP you can find here:
    <ORAHOME>\integration\orabpel\samples\tutorials\127.OrderBookingTutorial\PriceQuote\CreateOrderBookingUI

  • Calling EJB 3.0 from ALBPM

    Hi,
    I tried calling EJB 2.1 from ALBPM and it worked.
    But I was nto able to call EJB 3.0.
    Is calling EJB 3.0 supported from ALBPM 6.0.2?
    If yes, how to call a business method in EJB 3.0?

    Frank,
    Thanks. The @LOB annotations are missing.
    Create table with:
    CREATE TABLE TestBlob (id number PRIMARY KEY, xmlCol BLOB);
    INSERT INTO TestBlob VALUES(1, EMPTY_BLOB());
    The following is the complete listing for the EJB 3 class generated from table TestBlob.
    package ejb3;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.NamedQueries;
    import javax.persistence.NamedQuery;
    @Entity
    @NamedQueries({
    @NamedQuery(name = "Testblob.findAll", query = "select o from Testblob o")
    public class Testblob implements Serializable {
    @Id
    @Column(nullable = false)
    private Long id;
    private byte[] xmlCol;
    public Testblob() {
    public Testblob(Long id) {
    this.id = id;
    public Long getId() {
    return id;
    public void setId(Long id) {
    this.id = id;
    public byte[] getXmlCol() {
    return xmlCol;
    public void setXmlCol(byte[] xmlCol) {
    this.xmlCol = xmlCol;
    }

  • How to pass value object to BPM process and access process returned data

    Hi,
    I am new to Oracle BPM studio and gone through the tutorial. I did not find anywhere how to orchestrate the java components or ejb components or web services in BPM process. if any one provide sample business process orchestered with java component or ejb component or webservice, it will be great. Or atleast provide steps to do that.
    Thanks and Regards
    Mahesh Babu

    There is a tutorial available online.. But you can always catalogue web services and JARs files into the ALBPM..
    Just create a new module inside the Catalogue and then right click on it to see Catalogue Component and then select what component u want to add to ALBPM and then follows the steps of adding that component from your local machine and introspecting it..
    If it is successful, then all the web-service methods or the JAR file methods would be catalogued into ALBPM..
    You can put the WSDL address in the space provided for Web Services.. If password is required that too can be put..
    Another way is to create a component in External Resources and then Cataloguing it...

  • External jar introspection error in ALBPM 5.7

    Hi,
    We are using ALBPM 5.7.Here the scenario,
    We have java application for front end and ALBPM for backend(Business Process) and having two way communication.
    The java application converted into jar and intropected in ALBPM and using the java method inside the ALBPM.
    While introspect jar i am getting the error like
    **"class not found" ,[Error] Introspection error: 'Class 'com.comcast.commsales.bl.AttributeServices' cannot be loaded because there was a problem running the class static member ',Error] Introspection error: 'It is not possible to load class 'com.comcast.commsales.bl.bpm.NewOrderProcessServices' since it references another class 'com/comcast/commsales/notification/task/TaskRequestDocument$TaskRequest'that is not in the classpath.'..**
    Even when i try to execute the flow, im getting the below error,
    "*A component failed while executing activity '/CreateCaseProcess#Default-1.0/RetrieveCasesByContract' (BP-method Retrieve Cases By Contract) over instance '/CreateCaseProcess#Default-1.0/2/0'.*
    *Details:*
    *The method 'CIL_retrieveCasesByContract' from class 'Comcast_Commercial_Systems.CreateCaseProcess.Default_1_0.Instance' could not be successfully executed.*
    *Caused by: java.lang.ExceptionInInitializerError*
    *Caused by: java.lang.NullPointerException*
    *fuego.lang.ComponentExecutionException: The method 'CIL_retrieveCasesByContract' from class 'Comcast_Commercial_Systems.CreateCaseProcess.Default_1_0.Instance' could not be successfully executed.*
    *at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:498)*
    *at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:251)*
    *at fuego.fengine.FEEngineExecutionContext.invokeMethodAsCil(FEEngineExecutionContext.java:214)*
    *at fuego.server.execution.EngineExecutionContext.runCil(EngineExecutionContext.java:1068)*
    *at fuego.server.execution.TaskExecution.invoke(TaskExecution.java:389)*
    *at fuego.server.execution.TaskExecution.executeCIL(TaskExecution.java:481)*
    *at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:655)*
    *at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:616)*
    *at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:152)*
    *at fuego.server.execution.activities.XAutomatic.execute(XAutomatic.java:60)*
    *at fuego.metadata.Activity.execute(Activity.java:1022)*
    *at fuego.server.execution.ToDoItemAutomatic.execute(ToDoItemAutomatic.java:35)*
    *at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:290)*
    *at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:462)*
    *at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:540)*
    *at fuego.transaction.TransactionAction.start(TransactionAction.java:213)*
    *at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:117)*
    *at fuego.server.execution.DefaultEngineExecution.executeAutomaticWork(DefaultEngineExecution.java:57)*
    *at fuego.server.execution.EngineExecution.executeAutomaticWork(EngineExecution.java:42)*
    *at fuego.server.execution.ToDoItem.executeAutomaticWork(ToDoItem.java:264)*
    *at fuego.server.execution.ToDoItem.run(ToDoItem.java:531)*
    *at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:754)*
    *at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:734)*
    *at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:140)*
    *at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:132)*
    *at fuego.fengine.ToDoQueueThread$PrincipalWrapper.processBatch(ToDoQueueThread.java:432)*
    *at fuego.component.ExecutionThread.work(ExecutionThread.java:818)*
    *at fuego.component.ExecutionThread.run(ExecutionThread.java:397)*
    *Caused by: java.lang.ExceptionInInitializerError*
    *at com.comcast.commsales.hibernate.HibernateConfig.getSessionFactory(HibernateConfig.java:1331)*
    *at com.comcast.commsales.hibernate.HibernateConfig.getSession(HibernateConfig.java:1469)*
    *at com.comcast.commsales.bl.SubcaseControl.getParentCaseForContract(SubcaseControl.java:1527)*
    *at Comcast_Commercial_Systems.CreateCaseProcess.Default_1_0.Instance.CIL_retrieveCasesByContract(Instance.java:1121)*
    *at Comcast_Commercial_Systems.CreateCaseProcess.Default_1_0.Instance.CIL_retrieveCasesByContract(Instance.java:1141)*
    *at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)*
    *at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)*
    *at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)*
    *at java.lang.reflect.Method.invoke(Unknown Source)*
    *at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:491)*
    *... 27 more*
    *Caused by: java.lang.NullPointerException*
    *at com.comcast.commsales.hibernate.HibernateUtils.getAllTableMaps(HibernateUtils.java:826)*
    *at com.comcast.commsales.hibernate.HibernateUtils.<clinit>(HibernateUtils.java:531)*
    *... 37 more"*
    Is because of the jar is not properly introspected into ALBPM? or Is not mandatory to introspect the jar into BPM.
    Could you please anyone help us to resolve the above issue
    Regards,
    Anandh P

    It mean there is problem in the jar file.Due to that im getting the error while doing introspect, is my understanding right?>
    No. As Ariel pointed out, this error:
    A component failed while executing activity
    '/CreateCaseProcess#Default-1.0/RetrieveCasesByContract'
    (BP-method Retrieve Cases By Contract) over instance '/CreateCaseProcess#Default-1.0/2/0'can only occur when you are running an instance through a method insid the RetrieveCasesByContract activity which is inside of your CreateCaseProcess. You might still have a misbehaving Jar file, but the error you got did not occur when you were introspecting the Jar file. It happend when you ran the work item instance through that activity in the process.
    Start by adding logMessage statements at various points in the method you are calling.
    Dan

  • Problem with updating Time component of an Oracle Date field in ALBPM

    Hi.
    I'm new to ALBPM and am experiencing the following problem I hope someone can take the time to help out with.
    I'm using a Date and Time Picker element in a Form to enter the date and time information. Within ALBPM the date and time representation appears correct as it prints out what I've entered. The logMessage displays this information in the form "YYYY-MM-DD HH24:mm:ss+TimezoneOffset". The BPM Object that stores this value is referencing an Oracle table that has an equivalent Date field. My problem is that it appears to only update the Date component.
    I've also tried using the native Time variable type within ALBPM be adding an variable of type Time to the BPM Object and setting the result Database object equal to this Time variable with the same result. The Time variable was declared with Timestamp precision (take this to mean both Date and Time components).
    Has anyone come across this problem? I'm using ALBPM Studio 6.0 M3 as my release.
    Thanks.

    I must have deselected the "Use Timestamp for Date columns" in the Advanced tab within the External Resource definition for my database at some point in time. Enabling this option fixed my problem - silly me.

  • Differnece between Oracle BPM and Aqua Logic BPM

    Hi,
    Iam just started readign about Oracle BPM , could anyone answer is there nay difference beteen Orcale BPM and Aqualogic BPM. I am working on other BPM technology ,I am analyzing other BPM tools to get the key differentiators among them. Please brief me the features that are unique to Oracle BPM.It would be helpful if good KB link is provided.
    Thanks
    Sayiri
    Edited by: user9277432 on Mar 10, 2010 5:55 AM

    Good question. I'll try to recap a little history of Fuego, AquaLogic and Oracle BPM for you. I worked for Fuego just before it was acquired and rebranded as part of the BEA AquaLogic Suite. I'd like to see what other have to say on this topic as well.
    From what I recall, BEA bought Fuego and released version 6.0. This was the first version branded as AquaLogic. The major change it contained was the integration of studio into the Eclipse IDE. It was somewhat integrated with ALUI, which used to be Plumtree before it was bought out by BEA and re-branded AquaLogic. I say somewhat since it wasn't integrated as well as it could. One major issue was the way the directory was integrated. They used a synchronization utility called ITPS (I think) to sync the ALUI directory with BPMs directory. This was very problematic.
    Version 6.3 came out that improved the way the workspace integrated with portals and ALUI and integrated the directory more efficiently with ALUI. Mostly it contained many improvements in the workspace functionality. The workspace had configurable panels which made it easier to integrate with dashboard components and widgets.
    Version 6.5 was coming out around the same time that Oracle took control of BEA. Version 6.5 is very much the same as OBPM 10g. For more information about OBPM 10g refer to this article:
    http://otndnld.oracle.co.jp/document/products/bea/weblogic/E13154_01/relnotes/release_notes_OracleBPM10gR3.htm
    In a couple of months Oracle will be releasing BPM 11g. There will be many changes to BPM in this release. It will be integrated with JDeveloper and will inherit much of the SOA strategies known for Oracle's Fushion Middleware suite. It also contains a Process Composer web based UI that Business Analysts and Business stakeholders will find useful.
    I blogged about BPM 11g here:
    http://blog.ssglimited.com/2009/10/13/oracle-bpm-11g-preview-at-oracle-open-world-2009/
    HTH,
    Mark
    Edited by: Mark Peterson on Mar 10, 2010 7:19 AM

  • Database Structure shipped with ALBPM suite

    Team,
    I am newbie in ALBPM and trying to understand the technical architecture.
    I do believe that once you install the enterprise version of that there are two schemas which are created
    1.) obpmdir
    2.) obpmeng
    I am trying to understand what is use / contained in these shema which can be leveraged to build an application.
    Regards,
    RJain

    Thanks Swapan, I was really hoping for a positive answer from someone working on the same DB ver. I have added one more question to my post, maybe you know if there are any problems when working with the BI Beans regarding the fact that I am using JDeveloper that shipped with the Developer Suite, and thus not a standalone ver.
    Again many thanks,
    Andrei

  • OAM protecting ALUI portal

    I am trying to integrate OAM with ALUI portal, I have read the Plumtree integration, and that part I am ok with. Does anyone have any ideas or experience on protecting the actual apps?
    The issue is the URLs that are used
    you will have the prefix of /portal/server.pt, but you have both public and private information with the only difference being the uuid.
    If you have protected and ALUI implementation have you added all of the uuids? or just the ones for anonymous authentication, and had the rest protected?
    Thanks for any help
    Andy

    It is common practice to leave portal integration as authentication only integrations, leaving authorization to the portal native features.
    In cases where the portal product can integrate with LDAP groups for authorization, the OAM Group Manager application may also be used to manage the group membership.
    This is not to say that you can't figure out a way to protect the funky portal URLs with the Access System.
    Mark

  • Intermittent Issue in ALUI 6.5

    I am facing an intermittent issue while retrieving Adaptivepagelayouts from the imageserver. I have two different layouts. One is applied on the unauthenticated part and the other one is applied to authenticated part on the same site. While navigating from the unauthenticated part to authenticated part, the new page layout is picked and rendered as per defined in experience rules. Here the issue is that sometimes the page layout for the authenticated side fails to be picked and the authenticated side comes up with the Adaptive pagelayout meant for the unauthenticated part. This distorts the whole design of the page. I am not sure of what could be the exact reason for this, as 50% times it works fine and 50% times it goes wrong. Moreover the ALUI admin and the image server is continuously being worked upon by other developers, so not sure if that might have caused the issue...but then why this intermittent thing. Moreover, imageserver and ALUI is placed on two different servers.
    Kindly help me out as I am new to portal. Thanks for all your help in advance :)
    PTSpy logs says :
    152 3-7-2012 7:46:50.390 Error Portal_UI_Infrastructure portal.SERVERNAME.UserName .NET #7 com.plumtree.portaluiinfrastructure.layout.impl.LayoutManager             LayoutManager:GetLayout Could not begin processing web service with Id: 491
    com.plumtree.server.marshalers.PTException: -2147203531 - Layout with web service ID: 491 returned error code: -2147203531 and error message: Portlet request failed, the remote server returned HTTP error '400'.  Web Service ID=491, User ID=126781, URL='http://hostname/plumtree/portal/private/pagelayouts/XXXX/BasePageLayout/authenticated.html'
    com.plumtree.server.marshalers.PTException: -2147203531 - Layout with web service ID: 491 returned error code: -2147203531 and error message: Portlet request failed, the remote server returned HTTP error '400'.  Web Service ID=491, User ID=126781, URL='http://hostname/imageserver/plumtree/portal/private/pagelayouts/XXXX/BasePageLayout/authenticated.html' at com.plumtree.portaluiinfrastructure.layout.impl.LayoutManager.GetLayout(Int32 nWebServiceId, AActivitySpace asSpace) in e:\buildroot\Release\portalui\6.5.x\ptwebui\portaluiinfrastructure\dotnet\prod\src\com\plumtree\portaluiinfrastructure\layout\impl\LayoutManager.cs:line 82
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.DisplayLayout(Int32 nWebServiceID, Boolean bMainPage)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.DisplayLayout(Layouts layout)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.Display(IWebData pageData)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in e:\buildroot\Release\uiinfrastructure\6.5.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1817
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.5.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 539
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.5.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 163
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\6.5.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 81
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.5.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 36
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequestNoDemand(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType) <ptLogMsgEnd>

    I would suggest you post your question on the WebCenter Interaction forum.
    WebCenter - Interaction
    Brad

  • Issues installing albpm process engine to websphere

    Hi,
    I'm trying to install albpm enterprise server 5.7 on websphere 6.1. Did the database directory creation, websphere profile creation, oracle schemas for albpm and albpm engine, configure datasources and jms in websphere, installed the fuego websphere deployer.
    Now while installing the process engine ear file from albpm process administrator, getting errors installing the ear file. Initially, the errors said the credentials were null, which went away when I put the user/password for my webpshere console in the soap.client.properties file. now the error I get is as below.
    Could you take a look and advice.
    Thanks, Mahesh
    [9/27/07 10:31:58:781 CDT] 00000044 SystemErr R java.lang.RuntimeException: An exception occurred when installing application [Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear] in server [server1] ([classpath: Fuego-Websphere-Deployer\fuegoj2ee-lib-all.jar ]). Exception: Java returned: 105.
    Wsadmin log fragment: [************ Start Display Current Environment ************
    Host Operating System is Windows Server 2003, version 5.2 build 3790 Service Pack 1
    Java version = J2RE 1.5.0 IBM J9 2.3 Windows Server 2003 x86-32 j9vmwi3223-20060504 (JIT enabled)
    J9VM - 20060501_06428_lHdSMR
    JIT - 20060428_1800_r8
    GC - 20060501_AA, Java Compiler = j9jit23, Java VM name = IBM J9 VM
    was.install.root = C:\IBM\WebSphere\AppServer
    user.install.root = C:\IBM\WebSphere\AppServer\profiles\AppSrv01
    Java Home = C:\IBM\WebSphere\AppServer\java\jre
    ws.ext.dirs = C:\IBM\WebSphere\AppServer\java\lib;C:\IBM\WebSphere\AppServer\classes;C:\IBM\WebSphere\AppServer\lib;C:\IBM\WebSphere\AppServer\installedChannels;C:\IBM\WebSphere\AppServer\lib\ext;C:\IBM\WebSphere\AppServer\web\help;C:\IBM\WebSphere\AppServer\deploytool\itp\plugins\com.ibm.etools.ejbdeploy\runtime
    Classpath = C:\IBM\WebSphere\AppServer\profiles\AppSrv01\properties;C:\IBM\WebSphere\AppServer\properties;C:\IBM\WebSphere\AppServer\lib\startup.jar;C:\IBM\WebSphere\AppServer\lib\bootstrap.jar;C:\IBM\WebSphere\AppServer\lib\j2ee.jar;C:\IBM\WebSphere\AppServer\lib\lmproxy.jar;C:\IBM\WebSphere\AppServer\lib\urlprotocols.jar;C:\IBM\WebSphere\AppServer\java\lib\tools.jar;C:\IBM\WebSphere\AppServer\deploytool\itp\batchboot.jar;C:\IBM\WebSphere\AppServer\deploytool\itp\batch2.jar
    Java Library path = C:\IBM\WebSphere\AppServer\java\jre\bin;.;C:\IBM\WebSphere\AppServer\java\jre\bin;C:\IBM\WebSphere\AppServer\java\jre\bin;C:\IBM\WebSphere\AppServer\bin;C:\IBM\WebSphere\AppServer\java\bin;C:\IBM\WebSphere\AppServer\java\jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    Current trace specification = *=info
    ************* End Display Current Environment *************
    [9/27/07 10:30:47:546 CDT] 0000000a ManagerAdmin I TRAS0017I: The startup trace state is *=info.
    [9/27/07 10:30:48:750 CDT] 0000000a AbstractShell A WASX7326I: Loaded properties file "/C:/IBM/WebSphere/AppServer/profiles/AppSrv01/properties/wsadmin.properties"
    [9/27/07 10:30:48:921 CDT] 0000000a SSLConfig W CWPKI0041W: One or more key stores are using the default password.
    [9/27/07 10:30:48:937 CDT] 0000000a SSLConfigMana I CWPKI0027I: Disabling default hostname verification for HTTPS URL connections.
    [9/27/07 10:30:50:546 CDT] 0000000a AdminConfigCl A WASX7208I: Validation settings in effect now: Level=HIGHEST, Cross-validation=true, Output file=C:/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/wsadmin.valout
    [9/27/07 10:30:56:953 CDT] 0000000a AbstractShell A WASX7303I: The following options are passed to the scripting environment and are available as arguments that are stored in the argv variable: "[Fuego-Websphere-Deployer\\01-eng-ALBPM_Engine.ear, server1, Fuego-Websphere-Deployer\\fuegoj2ee-lib-all.jar]"
    [9/27/07 10:30:56:968 CDT] 0000000a AbstractShell A WASX7091I: Executing script: "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\ncls0001Cell01\Fuego WebSphere Deployer.ear\wasj2eedeployer.war\WEB-INF\classes\installAppInServer.jacl"
    [9/27/07 10:31:54:921 CDT] 0000000a AbstractShell E WASX7120E: Diagnostic information from exception with text "com.ibm.ws.scripting.ScriptingException: WASX7132E: Application install for Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear failed: see previous messages for details.
    " follows:
    com.ibm.ws.scripting.ScriptingException: WASX7132E: Application install for Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear failed: see previous messages for details.
         at com.ibm.ws.scripting.AbstractShell.setAndThrowScriptingException(AbstractShell.java:1567)
         at com.ibm.ws.scripting.AdminAppClient.invokeMBeanInstall(AdminAppClient.java:4993)
         at com.ibm.ws.scripting.AdminAppClient.commonInstall(AdminAppClient.java:2338)
         at com.ibm.ws.scripting.AdminAppClient.doInstall(AdminAppClient.java:1742)
         at com.ibm.ws.scripting.AdminAppClient.doInstall(AdminAppClient.java:1654)
         at com.ibm.ws.scripting.AdminAppClient.install(AdminAppClient.java:1261)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at tcl.lang.reflect.PkgInvoker.invokeMethod(PkgInvoker.java:125)
         at tcl.lang.JavaInvoke.call(JavaInvoke.java:263)
         at tcl.lang.JavaInvoke.callMethod(JavaInvoke.java:121)
         at tcl.lang.ReflectObject.cmdProc(ReflectObject.java:914)
         at tcl.lang.Parser.evalObjv(Parser.java:818)
         at tcl.lang.Parser.eval2(Parser.java:1221)
         at tcl.lang.Interp.eval(Interp.java:2222)
         at tcl.lang.Interp.eval(Interp.java:2276)
         at com.ibm.bsf.engines.jacl.JaclEngine.eval(Unknown Source)
         at com.ibm.bsf.util.BSFEngineImpl.exec(Unknown Source)
         at com.ibm.bsf.BSFManager$6.run(Unknown Source)
         at java.security.AccessController.doPrivileged(AccessController.java:241)
         at com.ibm.bsf.BSFManager.exec(Unknown Source)
         at com.ibm.ws.scripting.AbstractShell.executeScript(AbstractShell.java:955)
         at com.ibm.ws.scripting.AbstractShell.run(AbstractShell.java:1891)
         at com.ibm.ws.scripting.WasxShell.main(WasxShell.java:975)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.ibm.wsspi.bootstrap.WSLauncher.launchMain(WSLauncher.java:183)
         at com.ibm.wsspi.bootstrap.WSLauncher.main(WSLauncher.java:90)
         at com.ibm.wsspi.bootstrap.WSLauncher.run(WSLauncher.java:72)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
         at org.eclipse.core.launcher.Main.run(Main.java:973)
         at com.ibm.wsspi.bootstrap.WSPreLauncher.launchEclipse(WSPreLauncher.java:245)
         at com.ibm.wsspi.bootstrap.WSPreLauncher.main(WSPreLauncher.java:73)
    [9/27/07 10:31:54:937 CDT] 0000000a AbstractShell A WASX7093I: Issuing message: "WASX7017E: Exception received while running file "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\ncls0001Cell01\Fuego WebSphere Deployer.ear\wasj2eedeployer.war\WEB-INF\classes\installAppInServer.jacl"; exception information: com.ibm.ws.scripting.ScriptingException: WASX7132E: Application install for Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear failed: see previous messages for details.
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at fuego.j2eedeployer.websphere.WASJ2EEExecutor.installApplicationInServer(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at fuego.j2eedeployer.websphere.WASJ2EEExecutor.installApplication(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at fuego.j2eedeployer.websphere.WASDeployer.installApp(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at fuego.j2eedeployer.websphere.WASDeployer.installEngine(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at fuego.j2eedeployer.basedeployer.BaseDeployerServlet.doPost(BaseDeployerServlet.java:145)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)

    Hi,
    I'm trying to install albpm enterprise server 5.7 on
    websphere 6.1. Did the database directory creation,
    websphere profile creation, oracle schemas for albpm
    and albpm engine, configure datasources and jms in
    websphere, installed the fuego websphere deployer.
    Now while installing the process engine ear file from
    albpm process administrator, getting errors
    installing the ear file. Initially, the errors said
    the credentials were null, which went away when I put
    the user/password for my webpshere console in the
    soap.client.properties file. now the error I get is
    as below.
    Could you take a look and advice.
    Thanks, Mahesh
    [9/27/07 10:31:58:781 CDT] 00000044 SystemErr R
    java.lang.RuntimeException: An exception occurred
    when installing application
    [Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear] in
    server [server1] ([classpath:
    Fuego-Websphere-Deployer\fuegoj2ee-lib-all.jar ]).
    Exception: Java returned: 105.
    Wsadmin log fragment: [************ Start
    ** Start Display Current Environment ************
    Host Operating System is Windows Server 2003, version
    5.2 build 3790 Service Pack 1
    Java version = J2RE 1.5.0 IBM J9 2.3 Windows Server
    2003 x86-32 j9vmwi3223-20060504 (JIT enabled)
    J9VM - 20060501_06428_lHdSMR
    JIT - 20060428_1800_r8
    GC - 20060501_AA, Java Compiler = j9jit23, Java VM
    name = IBM J9 VM
    was.install.root = C:\IBM\WebSphere\AppServer
    user.install.root =
    C:\IBM\WebSphere\AppServer\profiles\AppSrv01
    Java Home = C:\IBM\WebSphere\AppServer\java\jre
    ws.ext.dirs =
    C:\IBM\WebSphere\AppServer\java\lib;C:\IBM\WebSphere\A
    ppServer\classes;C:\IBM\WebSphere\AppServer\lib;C:\IBM
    \WebSphere\AppServer\installedChannels;C:\IBM\WebSpher
    e\AppServer\lib\ext;C:\IBM\WebSphere\AppServer\web\hel
    p;C:\IBM\WebSphere\AppServer\deploytool\itp\plugins\co
    m.ibm.etools.ejbdeploy\runtime
    Classpath =
    C:\IBM\WebSphere\AppServer\profiles\AppSrv01\propertie
    s;C:\IBM\WebSphere\AppServer\properties;C:\IBM\WebSphe
    re\AppServer\lib\startup.jar;C:\IBM\WebSphere\AppServe
    r\lib\bootstrap.jar;C:\IBM\WebSphere\AppServer\lib\j2e
    e.jar;C:\IBM\WebSphere\AppServer\lib\lmproxy.jar;C:\IB
    M\WebSphere\AppServer\lib\urlprotocols.jar;C:\IBM\WebS
    phere\AppServer\java\lib\tools.jar;C:\IBM\WebSphere\Ap
    pServer\deploytool\itp\batchboot.jar;C:\IBM\WebSphere\
    AppServer\deploytool\itp\batch2.jar
    Java Library path =
    C:\IBM\WebSphere\AppServer\java\jre\bin;.;C:\IBM\WebSp
    here\AppServer\java\jre\bin;C:\IBM\WebSphere\AppServer
    \java\jre\bin;C:\IBM\WebSphere\AppServer\bin;C:\IBM\We
    bSphere\AppServer\java\bin;C:\IBM\WebSphere\AppServer\
    java\jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS
    \System32\Wbem
    Current trace specification = *=info
    ************* End Display Current Environment
    [9/27/07 10:30:47:546 CDT] 0000000a ManagerAdmin I
    TRAS0017I: The startup trace state is *=info.
    [9/27/07 10:30:48:750 CDT] 0000000a AbstractShell A
    WASX7326I: Loaded properties file
    le
    "/C:/IBM/WebSphere/AppServer/profiles/AppSrv01/propert
    ies/wsadmin.properties"
    [9/27/07 10:30:48:921 CDT] 0000000a SSLConfig W
    CWPKI0041W: One or more key stores are using the
    he default password.
    [9/27/07 10:30:48:937 CDT] 0000000a SSLConfigMana I
    CWPKI0027I: Disabling default hostname verification
    on for HTTPS URL connections.
    [9/27/07 10:30:50:546 CDT] 0000000a AdminConfigCl A
    WASX7208I: Validation settings in effect now:
    w: Level=HIGHEST, Cross-validation=true, Output
    file=C:/IBM/WebSphere/AppServer/profiles/AppSrv01/logs
    /wsadmin.valout
    [9/27/07 10:30:56:953 CDT] 0000000a AbstractShell A
    WASX7303I: The following options are passed to the
    he scripting environment and are available as
    arguments that are stored in the argv variable:
    "[Fuego-Websphere-Deployer\\01-eng-ALBPM_Engine.ear,
    server1,
    Fuego-Websphere-Deployer\\fuegoj2ee-lib-all.jar]"
    [9/27/07 10:30:56:968 CDT] 0000000a AbstractShell A
    WASX7091I: Executing script:
    t:
    "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installe
    dApps\ncls0001Cell01\Fuego WebSphere
    Deployer.ear\wasj2eedeployer.war\WEB-INF\classes\insta
    llAppInServer.jacl"
    [9/27/07 10:31:54:921 CDT] 0000000a AbstractShell E
    WASX7120E: Diagnostic information from exception
    on with text
    "com.ibm.ws.scripting.ScriptingException: WASX7132E:
    Application install for
    Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear
    failed: see previous messages for details.
    " follows:
    com.ibm.ws.scripting.ScriptingException: WASX7132E:
    : Application install for
    Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear
    failed: see previous messages for details.
    at
    t
    com.ibm.ws.scripting.AbstractShell.setAndThrowScriptin
    gException(AbstractShell.java:1567)
    at
    t
    com.ibm.ws.scripting.AdminAppClient.invokeMBeanInstall
    (AdminAppClient.java:4993)
    at
    t
    com.ibm.ws.scripting.AdminAppClient.commonInstall(Admi
    nAppClient.java:2338)
    at
    t
    com.ibm.ws.scripting.AdminAppClient.doInstall(AdminApp
    Client.java:1742)
    at
    t
    com.ibm.ws.scripting.AdminAppClient.doInstall(AdminApp
    Client.java:1654)
    at
    t
    com.ibm.ws.scripting.AdminAppClient.install(AdminAppCl
    ient.java:1261)
    at
    t sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    t
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMeth
    odAccessorImpl.java:64)
    at
    t
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Delega
    tingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
    at
    t
    tcl.lang.reflect.PkgInvoker.invokeMethod(PkgInvoker.ja
    va:125)
         at tcl.lang.JavaInvoke.call(JavaInvoke.java:263)
    at
    t
    tcl.lang.JavaInvoke.callMethod(JavaInvoke.java:121)
    at
    t
    tcl.lang.ReflectObject.cmdProc(ReflectObject.java:914)
         at tcl.lang.Parser.evalObjv(Parser.java:818)
         at tcl.lang.Parser.eval2(Parser.java:1221)
         at tcl.lang.Interp.eval(Interp.java:2222)
         at tcl.lang.Interp.eval(Interp.java:2276)
    at com.ibm.bsf.engines.jacl.JaclEngine.eval(Unknown
    n Source)
    at com.ibm.bsf.util.BSFEngineImpl.exec(Unknown
    n Source)
         at com.ibm.bsf.BSFManager$6.run(Unknown Source)
    at
    t
    java.security.AccessController.doPrivileged(AccessCont
    roller.java:241)
         at com.ibm.bsf.BSFManager.exec(Unknown Source)
    at
    t
    com.ibm.ws.scripting.AbstractShell.executeScript(Abstr
    actShell.java:955)
    at
    t
    com.ibm.ws.scripting.AbstractShell.run(AbstractShell.j
    ava:1891)
    at
    t
    com.ibm.ws.scripting.WasxShell.main(WasxShell.java:975
    at
    t sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    t
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMeth
    odAccessorImpl.java:64)
    at
    t
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Delega
    tingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
    at
    t
    com.ibm.wsspi.bootstrap.WSLauncher.launchMain(WSLaunch
    er.java:183)
    at
    t
    com.ibm.wsspi.bootstrap.WSLauncher.main(WSLauncher.jav
    a:90)
    at
    t
    com.ibm.wsspi.bootstrap.WSLauncher.run(WSLauncher.java
    :72)
    at
    t
    org.eclipse.core.internal.runtime.PlatformActivator$1.
    run(PlatformActivator.java:226)
    at
    t
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ec
    lipseStarter.java:376)
    at
    t
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ec
    lipseStarter.java:163)
    at
    t sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    t
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMeth
    odAccessorImpl.java:64)
    at
    t
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Delega
    tingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
    at
    t
    org.eclipse.core.launcher.Main.invokeFramework(Main.ja
    va:334)
    at
    t
    org.eclipse.core.launcher.Main.basicRun(Main.java:278)
    at
    t org.eclipse.core.launcher.Main.run(Main.java:973)
    at
    t
    com.ibm.wsspi.bootstrap.WSPreLauncher.launchEclipse(WS
    PreLauncher.java:245)
    at
    t
    com.ibm.wsspi.bootstrap.WSPreLauncher.main(WSPreLaunch
    er.java:73)
    [9/27/07 10:31:54:937 CDT] 0000000a AbstractShell A
    WASX7093I: Issuing message: "WASX7017E: Exception
    on received while running file
    "C:\IBM\WebSphere\AppServer\profiles\AppSrv01\installe
    dApps\ncls0001Cell01\Fuego WebSphere
    Deployer.ear\wasj2eedeployer.war\WEB-INF\classes\insta
    llAppInServer.jacl"; exception information:
    com.ibm.ws.scripting.ScriptingException: WASX7132E:
    Application install for
    Fuego-Websphere-Deployer\01-eng-ALBPM_Engine.ear
    failed: see previous messages for details.
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    fuego.j2eedeployer.websphere.WASJ2EEExecutor.installAp
    plicationInServer(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    fuego.j2eedeployer.websphere.WASJ2EEExecutor.installAp
    plication(Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    fuego.j2eedeployer.websphere.WASDeployer.installApp(Un
    known Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    fuego.j2eedeployer.websphere.WASDeployer.installEngine
    (Unknown Source)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    fuego.j2eedeployer.basedeployer.BaseDeployerServlet.do
    Post(BaseDeployerServlet.java:145)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    javax.servlet.http.HttpServlet.service(HttpServlet.jav
    a:763)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    javax.servlet.http.HttpServlet.service(HttpServlet.jav
    a:856)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service
    (ServletWrapper.java:966)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.webcontainer.servlet.ServletWrapper.handleR
    equest(ServletWrapper.java:478)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handl
    eRequest(ServletWrapper.java:463)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.webcontainer.servlet.CacheServletWrapper.ha
    ndleRequest(CacheServletWrapper.java:92)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.webcontainer.WebContainer.handleRequest(Web
    Container.java:744)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.wswebcontainer.WebContainer.handleRequest(W
    ebContainer.java:1425)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WC
    ChannelLink.java:92)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.h
    andleDiscrimination(HttpInboundLink.java:465)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.h
    andleNewInformation(HttpInboundLink.java:394)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.r
    eady(HttpInboundLink.java:274)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCa
    llback.sendToDiscriminators(NewConnectionInitialReadCa
    llback.java:214)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCa
    llback.complete(NewConnectionInitialReadCallback.java:
    113)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.
    futureCompleted(AioReadCompletionListener.java:152)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.AbstractAsyncFuture.invokeCallback(Ab
    stractAsyncFuture.java:213)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.AbstractAsyncFuture.fireCompletionAct
    ions(AbstractAsyncFuture.java:195)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.AsyncFuture.completed(AsyncFuture.jav
    a:136)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.ResultHandler.complete(ResultHandler.
    java:193)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.ResultHandler.runEventProcessingLoop(
    ResultHandler.java:725)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.io.async.ResultHandler$2.run(ResultHandler.jav
    a:847)
    [9/27/07 10:31:58:796 CDT] 00000044 SystemErr R
    at
    t
    com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:
    1498)Hi I'm having a problem with my configuration too. Could someone help me?!
    [26/11/07 20:36:21:791 GMT] 0000000a ManagerAdmin I TRAS0017I: O estado de rastreio da inicialização é *=info.
    [26/11/07 20:36:25:735 GMT] 0000000a AbstractShell A WASX7326I: Arquivo de propriedades carregado "/C:/ibm/WebSphere/AppServer/profiles/AppSrv01/properties/wsadmin.properties"
    [26/11/07 20:36:25:992 GMT] 0000000a SSLConfig W CWPKI0041W: Um ou mais armazenamentos de chaves estão utilizando a senha padrão.
    [26/11/07 20:36:26:003 GMT] 0000000a SSLConfigMana I CWPKI0027I: Desativando a verificação de nome do host padrão para conexões HTTPS URL.
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at fuego.j2eedeployer.websphere.WASJ2EEExecutor.installApplicationInServer(Unknown Source)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at fuego.j2eedeployer.websphere.WASJ2EEExecutor.installApplication(Unknown Source)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at fuego.j2eedeployer.websphere.WASDeployer.installApp(Unknown Source)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at fuego.j2eedeployer.websphere.WASDeployer.installEngine(Unknown Source)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at fuego.j2eedeployer.basedeployer.BaseDeployerServlet.doPost(BaseDeployerServlet.java:145)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
    [26/11/07 20:36:29:225 GMT] 000000e0 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
    [26/11/07 20:36:29:226 GMT] 000000e0 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [26/11/07 21:18:21:935 GMT] 0000002c SystemErr R java.lang.RuntimeException: An exception occurred when installing application [Fuego-Websphere-Deployer\01-eng-local-engine.ear] in server [server1] ([classpath: Fuego-Websphere-Deployer\fuegoj2ee-lib-all.jar ]). Exception: Java returned: 8096.
    Wsadmin log fragment: [************ Start Display Current Environment ************
    Host Operating System is Windows 2000, version 6.0 build 6000
    Java version = J2RE 1.5.0 IBM J9 2.3 Windows 2000 x86-32 j9vmwi3223-20060504 (JIT enabled)
    J9VM - 20060501_06428_lHdSMR
    JIT - 20060428_1800_r8
    GC - 20060501_AA, Java Compiler = j9jit23, Java VM name = IBM J9 VM
    was.install.root = C:\ibm\WebSphere\AppServer
    user.install.root = C:\ibm\WebSphere\AppServer\profiles\AppSrv01
    Java Home = C:\ibm\WebSphere\AppServer\java\jre
    ws.ext.dirs = C:\ibm\WebSphere\AppServer\java\lib;C:\ibm\WebSphere\AppServer\classes;C:\ibm\WebSphere\AppServer\lib;C:\ibm\WebSphere\AppServer\installedChannels;C:\ibm\WebSphere\AppServer\lib\ext;C:\ibm\WebSphere\AppServer\web\help;C:\ibm\WebSphere\AppServer\deploytool\itp\plugins\com.ibm.etools.ejbdeploy\runtime
    Classpath = C:\ibm\WebSphere\AppServer\profiles\AppSrv01\properties;C:\ibm\WebSphere\AppServer\properties;C:\ibm\WebSphere\AppServer\lib\startup.jar;C:\ibm\WebSphere\AppServer\lib\bootstrap.jar;C:\ibm\WebSphere\AppServer\lib\j2ee.jar;C:\ibm\WebSphere\AppServer\lib\lmproxy.jar;C:\ibm\WebSphere\AppServer\lib\urlprotocols.jar;C:\ibm\WebSphere\AppServer\java\lib\tools.jar;C:\ibm\WebSphere\AppServer\deploytool\itp\batchboot.jar;C:\ibm\WebSphere\AppServer\deploytool\itp\batch2.jar
    Java Library path = C:\ibm\WebSphere\AppServer\java\jre\bin;.;C:\ibm\WebSphere\AppServer\java\jre\bin;C:\ibm\WebSphere\AppServer\java\jre\bin;C:\ibm\WebSphere\AppServer\java\jre\bin;C:\ibm\WebSphere\AppServer\bin;C:\ibm\WebSphere\AppServer\java\bin;C:\ibm\WebSphere\AppServer\java\jre\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\development\maven-2.0.7\bin;C:\Program Files\Java\jdk1.6.0_01\bin;C:\Program Files\QuickTime\QTSystem\;C:\Users\gabriel\Borland\StarTeam SDK 2006\Lib;C:\Users\gabriel\Borland\StarTeam SDK 2006\Bin;C:\ibm\installationmanager\eclipse\lib;c:\Program Files\Microsoft SQL Server\90\Tools\binn\
    Current trace specification = *=info
    ************* End Display Current Environment *************

  • ALUI - WebCenter Interaction

    1)
    I read a post by Justin Kestelyn that said "AquaLogic UI is in the "Continue and Converge" category, meaning that it will incrementally integrated into the Fusion Middleware stack (in this case, with WebCenter Suite)."
    The way I understand that statement is that the existing ALUI database and functionality will be transformed to look like WebCenter, and that it will be a unilateral change. Would it be correct to say that while that transformation is taking place there will not be any enhancements/upgrades/new features added to the ALUI product? but that the WebCenter product will continue on as normal?
    2)
    I haven't attempted such a massive change before, but my guess is that a "clean" install of WebCenter is going to be a heckuva lot more stable than an environment that is upgraded from ALUI to WebCenter. If that is the case, is Oracle going to put any options on the table for ALUI customers to make a clean start with WebCenter?
    3)
    In a time of flux like this I'm sure many customers will put new development/upgrades/etc on hold. How awful would it be to make a large development investment based on a certain db or set of code that changes a few months later.
    Is there a ballpark timeline of how long it'll take to "incrementally integrate"?
    4)
    Apart from the ALUI core portal, it has several minor applications that are integrated such as Analytics, Collaboration, Studio, Publisher, Pages.
    We have heard some comment about Pathways and Ensemble, but can anyone address the roadmap for these other products?
    5)
    On Dev2Dev there were about 15 discussion boards dedicated to ALUI. Post migration to OTN there isn't a single discussion board for ALUI customers. Can one be created even if we are going to be "integrated" in the future?

    While I'd still like others to chime in with anything they may know (or think), I've gleaned the following:
    1)
    "Oracle will support ALUI for the next 9 years and no customer will be forced to migrate off of ALUI. The long term direction is to migrate key features of ALUI into Web Center. "
    2)
    "Web Center will be the strategic portal offering. Customers looking to move to Web Center may get credit for their ALUI cost.
    We are currently selling Web Center and ALUI as one single suite. So customers buying the suite don’t have to choose between one or the other and get both automatically.
    If you are happy with the functionality in ALUI then it would make sense to stick with it till we have more details on migration path, etc."
    4)
    Publisher : the next release should come out (eventually). The long term direction is Oracle’s UCM (Stellent) product.

Maybe you are looking for

  • Firefox won't start up

    I installed windows 7, went through all the stuff, and dowloaded firefox. It worked for the first couple of months. But then it stopped working. When I click the firefox icon, nothing happens. If I try getting a link while firefox is my default brows

  • How do I convert an Excel file into a pdf?

    how do I convert an Excel file into a pdf?

  • SWF inside Edge

    Seems like there's nothing similar to this subject on the forum, so here's the thing: I've created a streetview like animation in Flash, but I want to import that to my Egde website. It's possible to embed the .swf file via HTML, but how can I place

  • Format 999.999

    Hi, on 10g R2 how to display the numbers (and not to have #### instead) : SQL> set lines 120 trimspool on SQL> col event head "Waited for" format a30 SQL> col total_waits head "Total|Waits" format 999.999 SQL> col tw_ms head "Waited|for (ms)" format

  • I have a EOS 30D with EFS 17-85mm lens. Error 99 and now the auto focus is not working

    The 30D started a month ago to show Error 99 and not I have lost auto focus?  Any suggestons!