BPEL Deployment failure

My BPEL Deployment process, which until recently was working fine, appears to have broken. I'm getting messages like this when deploying from JDev 10.1.3.3.0:<p>
BUILD FAILED
Q:\TRIPS2\Dev\Java\Projects\trips-bpel\TripsExceptionHandling\build.xml:79: A problem occured while connecting to server "pcs-devportr3" using port "8888": <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>404 Not Found</TITLE>
</HEAD><BODY>
<H1>Not Found</H1>
The requested URL /integration/services/deploy/deployHttpClientProcess.jsp was not found on this server.<P>
<HR>
<ADDRESS>Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server Server at PCS-DEVPORTR3 Port 8888</ADDRESS>
</BODY></HTML><p>
I've tried several different BPEL's, and get a similar message for each. However, when I tried to deploy TripsExceptionHandling from the BPEL Console, it was successful.<p>I found somebody with a similar problem here: Re: Build Failed
but unfortunately no solution was posted. Does anybody have any suggestions?

create new Application server and Integration server .
Deploy the process into this new server then ur problem may sloved...

Similar Messages

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • Report to Show All Machines with ANY Deployment Failures

    I need to generate a report, daily, that displays all machines that have
    any kind of an deployment failure. This list will then be used to generate tickets for consultants in that area to check on them.
    I know I can look at specific deployments and see which machines show up as failed, but I am not seeing a report that shows all machines that have
    any kind of a failed deployment. Does one exist, or will I need to create it?

    you can try this report to list all failed deployments(only for applications but not packages).
     select
    all
    SMS_AppDeploymentAssetDetails.AppName as 'App Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.AppStatusType = '1' Then 'Success'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '2' Then 'In Progress'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '3' Then 'Requirements Not Met'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '4' Then 'Unknown'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '5' Then 'Error'
    else 'Unknown'
    End as 'App Status Type',
    CASE WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '1' Then 'Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '2' Then 'Non-Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '4' Then 'Error'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '6' Then 'Partial Compliance'
    else 'Unknown'
    End as 'Compliance State',
    CASE WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '1' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '2' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '3' Then 'Preflight'
    else 'Unknown'
    End as 'Deployment Intent',
    SMS_AppDeploymentAssetDetails.DTName as 'Deplyoment Type Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '1' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '2' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '3' Then 'Unknown'
    else 'Unknown'
    End as 'Installed State',
    CASE WHEN SMS_AppDeploymentAssetDetails.IsMachineAssignedToUser = '1' Then 'Yes'
    Else 'No'
    End as 'Device Assigned to User?',
    SMS_AppDeploymentAssetDetails.MachineName as 'Device Name',
    CASE WHEN CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)>0 THEN SUBSTRING
    (SMS_AppDeploymentAssetDetails.UserName,CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)+1,255)
    ELSE SMS_AppDeploymentAssetDetails.UserName END 'User Name'
    from fn_AppDeploymentAssetDetails(1033) AS SMS_AppDeploymentAssetDetails
    where SMS_AppDeploymentAssetDetails.AppStatusType = '5'
    ORDER BY 1
    Original query posted on http://systemcenteradmin.com/?p=67
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Solaris Deployment Failure for cannot resolve symbol on PersistentContainer

    Hello, I'm having trouble diagnosing the following deployment failure.
    What are some common causes of this? My server was created using an
    Express Integration domain with some custom JMS destinations added
    afterwards via the console. I am deploying an application built with
    Workshop (straight from workshop). I copied over an application from
    Windows to Solaris, deleted the .workshop directory and .beabuild.txt
    and rebuilt the application to deploy.
    I get this error a few times.
    ####<Aug 21, 2003 10:48:19 AM EDT> <Info> <EJB> <rhino> <cgServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>>
    <> <BEA-012033> <Compiling generated EJB classes produced the following
    Java compiler output:
    /export/data/ident/bea/user_projects/domains/ident1Server.conf/./cgServer/.wlnotdelete/EJBCompilerCache/-7dxi2hv35mro/com/bea/wlwgen/PersistentContainer_3fq3ar_Impl.java:143:
    cannot resolve symbol
    symbol : class BMPContainerBean$DuplicateKeyRemoteException
    location: package bean
    perchance you meant 'BMPContainerBean.DuplicateKeyRemoteException'
    throws
    com.bea.wlw.runtime.core.bean.BMPContainerBean$DuplicateKeyRemoteException
    ^
    1 error
    This then causes other errors repeating that the deployment failed (let
    me know if you need more to diagnose this):
    Exception:weblogic.management.ApplicationException: prepare failed for
    .workshop/myApp/EJB/myProc_1trtqtoxcz4uv
    Module: .workshop/myApp/EJB/myProc_1trtqtoxcz4uv Error:
    Exception preparing module:
    EJBModule(.workshop/myApp/EJB/myProc_1trtqtoxcz4uv,status=NEW)
    Unable to deploy EJB: .workshop/myApp/EJB/myProc_1trtqtoxcz4uv from
    .workshop/myApp/EJB/myProc_1trtqtoxcz4uv:
    Compiler failed executable.exec

    But by default WLS8.1 comes with jdk141_02 ...correct ?
    AND what i understand is that...the bug you posted is related to a bug in jdk1.4.2
    ....correct ??
    correct me if i wrong.
    -sangita
    Steven Ostrowski <[email protected]> wrote:
    It looks like this is a bug in the BEA-generated code that is then
    compiled by WLS. The generated code was using the Class1$Class2 notation
    to reference the class, but since $ is a valid character in the class
    name, this does not behave as intended. This used to be a bug in
    pre-1.4.2 but is now fixed in 1.4.2 (look at bug 4635044, and this is
    also mentioned in the 1.4.2 release notes and the Java Developer forums).
    The generated code should be:
    com.bea.wlw.runtime.core.bean.BMPContainerBean.DuplicateKeyRemoteException
    not
    com.bea.wlw.runtime.core.bean.BMPContainerBean$DuplicateKeyRemoteException
    Thanks again for the good response. I'll send this in to BEA support.
    Steven Ostrowski wrote:
    One other thing to add, this was fixed by changing the JAVA_HOME
    variable inside of the startWeblogic.sh script. Setting it in workshop
    did not change anything.
    Steven Ostrowski wrote:
    Wow, you hit it right on target! I was using 1.4.2 then tried it on
    1.4.1_03 and it deployed fine.
    Is this a bug in BEA or in the JDK? In either case, where should I
    report this bug?
    Thanks again
    Rob Woollen wrote:
    What version of the JDK are you using? I believe they changed the
    inner class naming conventions in 1.4.2, and it's breaking lots of
    people.
    -- Rob
    Steven Ostrowski wrote:
    Hello, I'm having trouble diagnosing the following deployment
    failure. What are some common causes of this? My server was created
    using an Express Integration domain with some custom JMS
    destinations added afterwards via the console. I am deploying an
    application built with Workshop (straight from workshop). I copied
    over an application from Windows to Solaris, deleted the .workshop
    directory and .beabuild.txt and rebuilt the application to deploy.
    I get this error a few times.
    ####<Aug 21, 2003 10:48:19 AM EDT> <Info> <EJB> <rhino> <cgServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS
    Kernel>> <> <BEA-012033> <Compiling generated EJB classes produced
    the following Java compiler output:
    /export/data/ident/bea/user_projects/domains/ident1Server.conf/./cgServer/.wlnotdelete/EJBCompilerCache/-7dxi2hv35mro/com/bea/wlwgen/PersistentContainer_3fq3ar_Impl.java:143:
    cannot resolve symbol
    symbol : class BMPContainerBean$DuplicateKeyRemoteException
    location: package bean
    perchance you meant 'BMPContainerBean.DuplicateKeyRemoteException'
    throws
    com.bea.wlw.runtime.core.bean.BMPContainerBean$DuplicateKeyRemoteException
    ^
    1 error
    This then causes other errors repeating that the deployment failed
    (let me know if you need more to diagnose this):
    Exception:weblogic.management.ApplicationException: prepare failed
    for .workshop/myApp/EJB/myProc_1trtqtoxcz4uv
    Module: .workshop/myApp/EJB/myProc_1trtqtoxcz4uv Error:
    Exception preparing module:
    EJBModule(.workshop/myApp/EJB/myProc_1trtqtoxcz4uv,status=NEW)
    Unable to deploy EJB: .workshop/myApp/EJB/myProc_1trtqtoxcz4uv from
    .workshop/myApp/EJB/myProc_1trtqtoxcz4uv:
    Compiler failed executable.exec

  • BPEL deployment plan in 10.1.3.4

    Hello guys,
    I've downloaded the MLR patch to upgrade to 10.1.3.4 and wondering where to find and how to use the BPEL deployment plan.
    According to Robert Zimmerman's presentation titled Oracle BPEL Process Manager Update - April 22 (http://www.oracle.com/technology/tech/soa/cab/oraclesoacab-webinar-04-22-08bpel_10_1_3_4_update.pdf), this release includes the new BPEL deployment plan, similar to the "old" ESB deployment plan.
    Any help is appreciated.
    Kind regards,
    H

    Hello Heidi,
    Thanks for the quick reply.
    That chapter is not quite what I was looking for, but nevertheless you pointed me to the right document. I was looking for chapter 3.10.10 "Automatically changing URLs and properties for Dev, Test and Prod.-environments".
    Cheers,
    Harm

  • BPEL deployment automation

    Hi all.
    I've been reading about the efforts regarding esb deployment automation:
    Dealing with changing service wsdl locations  in the ESB
    Now, I'd like to know about the latest best practices regarding BPEL deployment automation for different environments.
    I was wondering if there's some already tested ant configuration for deploying multiple BPEL projects at the same time using a specific bpel.xml
    Thanks
    Denis

    I created an article on this issue:
    http://orasoa.blogspot.com/2006/08/using-ant-in-bpel-environment.html

  • BPEL deploy error

    Hi All,
    Getting the following error while deploying the BPEL process having DB Adaptor...
    Could not initialize activation agent. An error occured while initializing an activation agent for process "pollingprocesstest2", revision "v2009_08_11__6784". Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml). oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    However the same process was running find earlier. Actually I got virus in my system so I formatted it after taking backup of everything. Then I installed BPEL server again. Now when I tried to deploy the same processes again, it is giving the above error. Installation path etc. everything is same as the paths before formatting. Exception details is...
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "pollingproc
    esstest2", revision "v2009_08_11__6784".
    Please ensure that the activation agents are configured correctly in the bpel de
    ployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.Invocation
    TargetException
    at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents
    *(BaseCubeProcess.java:354)*
    at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultR
    evision(DeploymentManager.java:1446)
    at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevisi
    on(DeploymentManager.java:1405)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(De
    ploymentManager.java:821)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(D
    eploymentManager.java:670)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDo
    mainManagerBean.java:445)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke
    *(EJBJoinPointImpl.java:35)*
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSI
    nterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAAS
    Interceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAA
    SInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invo
    ke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSI
    nterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContex
    tPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(S
    tatelessSessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHand
    le.java:317)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandl
    e.java:339)
    *at deployProcess.jspService(_deployProcess.java:131)*
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:5
    *9)*
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:368)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forwar
    d(ServletRequestDispatcher.java:259)
    at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletR
    equestDispatcher.java:50)
    at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRe
    questDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequ
    estDispatcher.java:198)
    at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterC
    hain.java:15)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:619)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
    estHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
    stHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
    cketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    *<2009-08-10 13:23:37,718> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::l*
    ogError> Error while invoking bean "domain manager": Could not initialize activa
    tion agent.
    An error occured while initializing an activation agent for process "pollingproc
    esstest2", revision "v2009_08_11__6784".
    Please ensure that the activation agents are configured correctly in the bpel de
    ployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.Invocation
    TargetException
    ORABPEL-09903
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "pollingproc
    esstest2", revision "v2009_08_11__6784".
    Please ensure that the activation agents are configured correctly in the bpel de
    ployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.Invocation
    TargetException
    at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents
    *(BaseCubeProcess.java:354)*
    at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultR
    evision(DeploymentManager.java:1446)
    at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevisi
    on(DeploymentManager.java:1405)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(De
    ploymentManager.java:821)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(D
    eploymentManager.java:670)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDo
    mainManagerBean.java:445)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke
    *(EJBJoinPointImpl.java:35)*
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSI
    nterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAAS
    Interceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAA
    SInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invo
    ke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSI
    nterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Inv
    ocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContex
    tPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(S
    tatelessSessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHand
    le.java:317)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandl
    e.java:339)
    *at deployProcess.jspService(_deployProcess.java:131)*
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:5
    *9)*
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:368)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forwar
    d(ServletRequestDispatcher.java:259)
    at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletR
    equestDispatcher.java:50)
    at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRe
    questDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequ
    estDispatcher.java:198)
    at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterC
    hain.java:15)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:619)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
    estHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
    stHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
    cketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    *<2009-08-10 13:23:37,781> <INFO> <default.collaxa.cube.activation> <AdapterFrame*
    work::Inbound> JCAActivationAgent::uninit Shutting down the JCA activation agent
    *, processId='bpel://localhost/default/pollingprocesstest2~v2009_08_11__6784/', a*
    *ctivation properties={portType=pollingAdaptor_ptt}*
    Please help me.
    Thanks.

    log message continued...
    *     at oracle.tip.adapter.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:566)*
    *     at oracle.tip.adapter.fw.agent.jca.JCAActivationAgent.performEndpointActivation(JCAActivationAgent.java:1073)*
    *     at oracle.tip.adapter.fw.agent.jca.JCAActivationAgent.activateInboundJcaEndpoint(JCAActivationAgent.java:1056)*
    *     at oracle.tip.adapter.fw.agent.jca.JCAActivationAgent.initiateInboundJcaEndpoint(JCAActivationAgent.java:961)*
    *     at oracle.tip.adapter.fw.agent.jca.JCAActivationAgent.init(JCAActivationAgent.java:516)*
    *     at com.collaxa.cube.engine.core.BaseCubeProcess$ActivationObserver.init(BaseCubeProcess.java:900)*
    *     ... 66 more*
    Caused by: ORABPEL-11622
    Could not create/access the TopLink Session.
    *This session is used to connect to the datastore. [Caused by: loc/DBConnection1DataSource not found]*
    *See root exception for the specific exception. You may need to configure the connection settings in the deployment descriptor (i.e. $J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml) and restart the server. Caused by Exception [TOPLINK-7060] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 060920)): oracle.toplink.exceptions.ValidationException*
    *Exception Description: Cannot acquire data source [loc/DBConnection1DataSource].*
    Internal Exception: javax.naming.NameNotFoundException: loc/DBConnection1DataSource not found.
    *     at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:369)*
    *     at oracle.tip.adapter.db.exceptions.DBResourceException.couldNotCreateTopLinkSessionException(DBResourceException.java:171)*
    *     at oracle.tip.adapter.db.DBManagedConnectionFactory.acquireSession(DBManagedConnectionFactory.java:598)*
    *     at oracle.tip.adapter.db.transaction.DBTransaction.getSession(DBTransaction.java:351)*
    *     at oracle.tip.adapter.db.DBConnection.getSession(DBConnection.java:230)*
    *     at oracle.tip.adapter.db.InboundWork.<init>(InboundWork.java:184)*
    *     at oracle.tip.adapter.db.DBEndpoint.<init>(DBEndpoint.java:89)*
    *     at oracle.tip.adapter.db.DBResourceAdapter.endpointActivation(DBResourceAdapter.java:155)*
    *     at oracle.tip.adapter.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:541)*
    *     ... 71 more*
    *Caused by: Exception [TOPLINK-7060] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 060920)): oracle.toplink.exceptions.ValidationException*
    *Exception Description: Cannot acquire data source [loc/DBConnection1DataSource].*
    Internal Exception: javax.naming.NameNotFoundException: loc/DBConnection1DataSource not found
    *     at oracle.toplink.exceptions.ValidationException.cannotAcquireDataSource(ValidationException.java:275)*
    *     at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:100)*
    *     at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:147)*
    *     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.connect(DatasourceAccessor.java:197)*
    *     at oracle.toplink.internal.databaseaccess.DatabaseAccessor.connect(DatabaseAccessor.java:220)*
    *     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.connect(DatasourceAccessor.java:273)*
    *     at oracle.toplink.threetier.ConnectionPool.buildConnection(ConnectionPool.java:82)*
    *     at oracle.toplink.threetier.ExternalConnectionPool.startUp(ExternalConnectionPool.java:98)*
    *     at oracle.toplink.threetier.ServerSession.connect(ServerSession.java:435)*
    *     at oracle.toplink.publicinterface.DatabaseSession.login(DatabaseSession.java:503)*
    *     at oracle.tip.adapter.db.DBManagedConnectionFactory.createServerSession(DBManagedConnectionFactory.java:858)*
    *     at oracle.tip.adapter.db.DBManagedConnectionFactory.acquireSession(DBManagedConnectionFactory.java:373)*
    *     ... 77 more*
    Caused by: javax.naming.NameNotFoundException: loc/DBConnection1DataSource not found
    *     at com.evermind.server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)*
    *     at com.evermind.server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:255)*
    *     at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java:195)*
    *     at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java:381)*
    *     at javax.naming.InitialContext.lookup(InitialContext.java:355)*
    *     at oracle.toplink.jndi.JNDIConnector.connect(JNDIConnector.java:94)*
    *     ... 87 more*
    *<2009-08-10 17:24:21,281> <DEBUG> <default.collaxa.cube.engine.deployment> <DeploymentManager::activateDefaultRevision>*
    ORABPEL-09903
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "pollingprocesstest2", revision "v2009_08_10__62408".
    Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    *     at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents(BaseCubeProcess.java:354)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultRevision(DeploymentManager.java:1446)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevision(DeploymentManager.java:1405)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:821)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(DeploymentManager.java:670)*
    *     at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainManagerBean.java:445)*
    *     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 com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)*
    *     at com.evermind.server.ThreadState.runAs(ThreadState.java:620)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)*
    *     at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)*
    *     at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:317)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:339)*
    *     at deployProcess.jspService(_deployProcess.java:131)*
    *     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)*
    *     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)*
    *     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)*
    *     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)*
    *     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)*
    *     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)*
    *     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)*
    *     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)*
    *     at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)*
    *     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)*
    *     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)*
    *     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)*
    *     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)*
    *     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)*
    *     at java.lang.Thread.run(Thread.java:595)*
    *<2009-08-10 17:24:21,359> <DEBUG> <default.collaxa.cube.engine.deployment> <LockManager::release> Released lock for pollingprocesstest2-v2009_08_10__62408*
    *<2009-08-10 17:24:21,359> <ERROR> <default.collaxa.cube.engine.deployment> <DeploymentManager::deploySuitcase>*
    ORABPEL-09903
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "pollingprocesstest2", revision "v2009_08_10__62408".
    Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    *     at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents(BaseCubeProcess.java:354)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultRevision(DeploymentManager.java:1446)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevision(DeploymentManager.java:1405)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:821)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(DeploymentManager.java:670)*
    *     at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainManagerBean.java:445)*
    *     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 com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)*
    *     at com.evermind.server.ThreadState.runAs(ThreadState.java:620)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)*
    *     at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)*
    *     at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:317)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:339)*
    *     at deployProcess.jspService(_deployProcess.java:131)*
    *     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)*
    *     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)*
    *     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)*
    *     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)*
    *     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)*
    *     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)*
    *     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)*
    *     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)*
    *     at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)*
    *     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)*
    *     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)*
    *     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)*
    *     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)*
    *     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)*
    *     at java.lang.Thread.run(Thread.java:595)*
    *<2009-08-10 17:24:21,453> <DEBUG> <default.collaxa.cube.engine.deployment> <LockManager::release> Released lock for pollingprocesstest2_v2009_08_10__62408_7ed76049f6b734747ebf349fbe977c1a*
    *<2009-08-10 17:24:21,546> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "domain manager": Could not initialize activation agent.*
    An error occured while initializing an activation agent for process "pollingprocesstest2", revision "v2009_08_10__62408".
    Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    ORABPEL-09903
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "pollingprocesstest2", revision "v2009_08_10__62408".
    Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    *     at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents(BaseCubeProcess.java:354)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultRevision(DeploymentManager.java:1446)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevision(DeploymentManager.java:1405)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:821)*
    *     at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(DeploymentManager.java:670)*
    *     at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainManagerBean.java:445)*
    *     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 com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)*
    *     at com.evermind.server.ThreadState.runAs(ThreadState.java:620)*
    *     at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)*
    *     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)*
    *     at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)*
    *     at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)*
    *     at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:317)*
    *     at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:339)*
    *     at deployProcess.jspService(_deployProcess.java:131)*
    *     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)*
    *     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)*
    *     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)*
    *     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)*
    *     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)*
    *     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)*
    *     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)*
    *     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)*
    *     at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:131)*
    *     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)*
    *     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)*
    *     at java.security.AccessController.doPrivileged(Native Method)*
    *     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)*
    *     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)*
    *     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)*
    *     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)*
    *     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)*
    *     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)*
    *     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)*
    *     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)*
    *     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)*
    *     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)*
    *     at java.lang.Thread.run(Thread.java:595)*
    *<2009-08-10 17:24:21,640> <DEBUG> <default.collaxa.cube.engine.data> <ConnectionFactory::closeConnection> CLOSE TX CONNECTION 0*
    *<2009-08-10 17:24:21,640> <DEBUG> <default.collaxa.cube.engine.dispatch> <Dispatcher::insert> Received batch message, 1 messages [[email protected]b90c1]*
    *<2009-08-10 17:24:21,640> <DEBUG> <default.collaxa.cube.engine.dispatch> <BaseDispatchSet::receive> Receiving message [[email protected]b90c1] for set system*
    *<2009-08-10 17:24:21,640> <DEBUG> <default.collaxa.cube.engine.dispatch> <BaseDispatchSet::receive> Receiving message [[email protected]b90c1] for set invoke*
    *<2009-08-10 17:24:21,640> <DEBUG> <default.collaxa.cube.engine.dispatch> <BaseDispatchSet::receive> Receiving message [[email protected]b90c1] for set engine*
    *<2009-08-10 17:24:21,656> <DEBUG> <default.collaxa.cube.engine.dispatch> <Dispatcher::adjustThreadPool> Allocating 1 thread(s); pending threads: 1, active threads: 0, total: 46*

  • Process Modelling in Aris, generating BPEL & deployment to Oracle App Serve

    Hi
    We are considering using Aris to model some business process and using its functionality to generate BPEL for its deployment onto a Service Oriented Architecture i.e. Oracle App Server with BPEL Process Manager. Has anyone had any specific exposure to Aris and its BPEL deployment onto the Oracle App Server.
    - Is there an approach (methodology) from previous experience that someone can recommend.
    - How seamless/complex is the generation and deployment of the BPEL onto the Oracle BPEL Process Manager.
    - Are there any issues or lessons learnt from people using Aris to generate BPEL to the Oracle BPEL Process Manager?
    thanks

    Hi,
    I am dealing with the same problems. I did already some testings using the EPCs of ARIS and tried to establish the link with the BPEL Process Manager. Still it doesn't work seamlessly, maybe with the new realease of ARIS the link will be possible. I am not aware of any methodology in that context, it means we need to develop one.
    Looking forward to hearing from you.
    Best regards,
    TMT

  • Standalone WLS server instance deployment failure - missing ADFLogger

    I was hoping somebody could help me please with issues of installing ADF JDev 11g apps to separate WLS server instances (ie. not Admin Server) and the ADFLogger class.
    I've successfully configured a separate standalone WLS, installed the ADF Runtime Libraries and deployed/run an ADF JDev 11g app to the server under the default AdminServer.
    We encountered one issue with deployment regarding the ADFApplicationLifecycleListener class which is addessed in the following forum post with the documented workaround of removing ADFApplicationLifecycleListener from the weblogic-application.xml file: Standalone WLS deployment failure - incorrect weblogic-application.xml
    Next we want to deploy to a separate server instance/machine on the standalone WLS (we have the eventual requirement of deploying our apps to a WLS cluster, so we're experimenting with configuring separate WLS server instances+machines).
    I've created via the Admin Server a new separate server instance (say ADFServer) on a separate WLS machine (say ADFMachine) within my standalone WLS. I've configured the separate WLS server instance to run on a different port from the default Admin Server port. In addition for the 3 deployed libraries jsf, jstl and oracle.adf.domain, via selecting them in the Admin Console under Deployments, then the Target tab, I've also "targetted" (read: deployed) these 3 libraries to the new server instance so they reside both on the Admin Server and ADFServer.
    However when I redeploy my original application via JDeveloper's Application Menu -> Deploy option, on deployment to the ADFServer directly I receive the exception at the bottom of this post. The relevant error message:
    java.lang.NoClassDefFoundError: oracle/adf/share/logging/ADFLogger
    This class is included in numerous ADF Runtime Libraries, and I would expect that once I targetted the oracle.adf.domain library for both Admin Server and ADFServer, the relevant ADFLogger class should be available (and given the fact I've run the application successfully on the standalone WLS under the Admin Server, it proves the library is available).
    The missing ADFLogger library seems to be a reoccuring theme for application server deployments, in particular OC4J. This is the first time I've seen it broached for WLS when using the ADF Runtime Libraries and haven't found much assistance via the OTN forums, Google searches etc.
    Does anybody know what I've configured incorrectly on my standalone WLS such that the ADFLogger is not configured for the separate WLS server instance? (I suspect I'll have to try the WLS forum too, but lets start here).
    Any help appreciated.
    Thanks & regards,
    CM.
    (Complete stack trace)
    Failure occurred in the execution of deployment request with ID '1229647798124' for task '2'. Error is: 'java.lang.NoClassDefFoundError: oracle/adf/share/logging/ADFLogger' java.lang.NoClassDefFoundError: oracle/adf/share/logging/ADFLogger at java.lang.Class.getDeclaredFields0(Native Method) at java.lang.Class.privateGetDeclaredFields(Class.java:2291) at java.lang.Class.getDeclaredFields(Class.java:1743) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:965) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:958) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.processJ2eeAnnotations(BaseJ2eeAnnotationProcessor.java:97) at weblogic.j2ee.dd.xml.J2eeAnnotationProcessor.processJ2eeAnnotations(J2eeAnnotationProcessor.java:37) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processFilters(WebAnnotationProcessorImpl.java:241) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processJ2eeAnnotations(WebAnnotationProcessorImpl.java:212) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processAnnotations(WebAnnotationProcessorImpl.java:107) at weblogic.servlet.internal.WebAppServletContext.processAnnotations(WebAppServletContext.java:1287) at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:412) at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:456) at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:414) at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:910) at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:364) at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:180) at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93) at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:388) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:44) at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:616) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37) at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191) at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16) at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155) at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:198) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:89) at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217) at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:725) at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190) at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248) at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:160) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173) java.lang.NoClassDefFoundError: oracle/adf/share/logging/ADFLogger at java.lang.Class.getDeclaredFields0(Native Method) at java.lang.Class.privateGetDeclaredFields(Class.java:2291) at java.lang.Class.getDeclaredFields(Class.java:1743) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:965) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:958) at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.processJ2eeAnnotations(BaseJ2eeAnnotationProcessor.java:97) at weblogic.j2ee.dd.xml.J2eeAnnotationProcessor.processJ2eeAnnotations(J2eeAnnotationProcessor.java:37) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processFilters(WebAnnotationProcessorImpl.java:241) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processJ2eeAnnotations(WebAnnotationProcessorImpl.java:212) at weblogic.servlet.internal.WebAnnotationProcessorImpl.processAnnotations(WebAnnotationProcessorImpl.java:107) at weblogic.servlet.internal.WebAppServletContext.processAnnotations(WebAppServletContext.java:1287) at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:412) at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:456) at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:414) at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:910) at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:364) at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:180) at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93) at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:388) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:44) at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:616) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37) at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191) at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16) at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155) at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:198) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:89) at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217) at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:725) at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190) at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248) at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:160) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    I do start it by commandline since I only have the AdminServer, and no other nodes. Below is my startWeblogic.sh and setDomainEnv.sh scripts under medrec/bin directory. I don't see any modifications to them for ADF. Also, after extending the domain, the oracle.adf.domain library shows up in my deployments page and is pointing to "/ u01/ app/ oracle/ product/ wls/ jdeveloper/ modules/ oracle. adf. model_11. 1. 1/ adf. oracle. domain. ear". It seems like the extending step is missing a step to give access to all the libraries?
    STARTWEBLOGIC.SH:
    #!/bin/sh
    # WARNING: This file is created by the Configuration Wizard.
    # Any changes to this script may be lost when adding extensions to this configuration.
    # --- Start Functions ---
    stopAll()
         # We separate the stop commands into a function so we are able to use the trap command in Unix (calling a function) to stop these services
         if [ "X${ALREADY_STOPPED}" != "X" ] ; then
              exit
         fi
         # STOP POINTBASE (only if we started it)
         if [ "${POINTBASE_FLAG}" = "true" ] ; then
              echo "Stopping PointBase server..."
              ${WL_HOME}/common/bin/stopPointBase.sh -port=${POINTBASE_PORT} -name=${POINTBASE_DBNAME} >"${DOMAIN_HOME}/pointbaseShutdown.log" 2>&1
              echo "PointBase server stopped."
         fi
         ALREADY_STOPPED="true"
         # Restore IP configuration the node manager starts IP Migration
         if [ "${SERVER_IP}" != "" ] ; then
              ${WL_HOME}/common/bin/wlsifconfig.sh -removeif "${IFNAME}" "${SERVER_IP}"
         fi
    # --- End Functions ---
    # This script is used to start WebLogic Server for this domain.
    # To create your own start script for your domain, you can initialize the
    # environment by calling @USERDOMAINHOME/setDomainEnv.
    # setDomainEnv initializes or calls commEnv to initialize the following variables:
    # BEA_HOME - The BEA home directory of your WebLogic installation.
    # JAVA_HOME - Location of the version of Java used to start WebLogic
    # Server.
    # JAVA_VENDOR - Vendor of the JVM (i.e. BEA, HP, IBM, Sun, etc.)
    # PATH - JDK and WebLogic directories are added to system path.
    # WEBLOGIC_CLASSPATH
    # - Classpath needed to start WebLogic Server.
    # PATCH_CLASSPATH - Classpath used for patches
    # PATCH_LIBPATH - Library path used for patches
    # PATCH_PATH - Path used for patches
    # WEBLOGIC_EXTENSION_DIRS - Extension dirs for WebLogic classpath patch
    # JAVA_VM - The java arg specifying the VM to run. (i.e.
    # - server, -hotspot, etc.)
    # USER_MEM_ARGS - The variable to override the standard memory arguments
    # passed to java.
    # PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    # POINTBASE_HOME - Point Base home directory.
    # POINTBASE_CLASSPATH
    # - Classpath needed to start PointBase.
    # Other variables used in this script include:
    # SERVER_NAME - Name of the weblogic server.
    # JAVA_OPTIONS - Java command-line options for running the server. (These
    # will be tagged on to the end of the JAVA_VM and
    # MEM_ARGS)
    # For additional information, refer to the WebLogic Server Administration
    # Console Online Help(http://e-docs.bea.com/wls/docs103/ConsoleHelp/startstop.html).
    # Call setDomainEnv here.
    DOMAIN_HOME="/u01/app/oracle/product/wls/wlserver_10.3/samples/domains/medrec"
    . ${DOMAIN_HOME}/bin/setDomainEnv.sh $*
    SAVE_JAVA_OPTIONS="${JAVA_OPTIONS}"
    SAVE_CLASSPATH="${CLASSPATH}"
    # Start PointBase
    PB_DEBUG_LEVEL="3"
    if [ "${POINTBASE_FLAG}" = "true" ] ; then
         ${WL_HOME}/common/bin/startPointBase.sh -port=${POINTBASE_PORT} -debug=${PB_DEBUG_LEVEL} -console=false -background=true -ini=${DOMAIN_HOME}/pointbase.ini >"${DOMAIN_HOME}/pointbase.log" 2>&1
    fi
    JAVA_OPTIONS="${SAVE_JAVA_OPTIONS}"
    SAVE_JAVA_OPTIONS=""
    CLASSPATH="${SAVE_CLASSPATH}"
    SAVE_CLASSPATH=""
    trap 'stopAll' 1 2 3 15
    if [ "${PRODUCTION_MODE}" = "true" ] ; then
         WLS_DISPLAY_MODE="Production"
    else
         WLS_DISPLAY_MODE="Development"
    fi
    if [ "${WLS_USER}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.username=${WLS_USER}"
    fi
    if [ "${WLS_PW}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.password=${WLS_PW}"
    fi
    CLASSPATH="${CLASSPATH}${CLASSPATHSEP}${MEDREC_WEBLOGIC_CLASSPATH}"
    echo "."
    echo "."
    echo "JAVA Memory arguments: ${MEM_ARGS}"
    echo "."
    echo "WLS Start Mode=${WLS_DISPLAY_MODE}"
    echo "."
    echo "CLASSPATH=${CLASSPATH}"
    echo "."
    echo "PATH=${PATH}"
    echo "."
    echo "***************************************************"
    echo "* To start WebLogic Server, use a username and *"
    echo "* password assigned to an admin-level user. For *"
    echo "* server administration, use the WebLogic Server *"
    echo "* console at http://hostname:port/console *"
    echo "***************************************************"
    # Set up IP Migration related variables.
    # Set interface name.
    if [ "${Interface}" != "" ] ; then
         IFNAME="${Interface}"
    else
         IFNAME=""
    fi
    # Set IP Mask.
    if [ "${NetMask}" != "" ] ; then
         IPMASK="${NetMask}"
    else
         IPMASK=""
    fi
    # Perform IP Migration if SERVER_IP is set by node manager.
    if [ "${SERVER_IP}" != "" ] ; then
         ${WL_HOME}/common/bin/wlsifconfig.sh -addif "${IFNAME}" "${SERVER_IP}" "${IPMASK}"
    fi
    # START WEBLOGIC
    echo "starting weblogic with Java version:"
    ${JAVA_HOME}/bin/java ${JAVA_VM} -version
    if [ "${WLS_REDIRECT_LOG}" = "" ] ; then
         echo "Starting WLS with line:"
         echo "${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS}"
         ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS}
    else
         echo "Redirecting output from WLS window to ${WLS_REDIRECT_LOG}"
         ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS} >"${WLS_REDIRECT_LOG}" 2>&1
    fi
    stopAll
    popd
    # Exit this script only if we have been told to exit.
    if [ "${doExitFlag}" = "true" ] ; then
         exit
    fi
    SETDOMAINENV.SH:
    #!/bin/sh
    # WARNING: This file is created by the Configuration Wizard.
    # Any changes to this script may be lost when adding extensions to this configuration.
    # --- Start Functions ---
    BP=100
    SP=$BP
    pushd()
         if [ -z "$1" ]
         then
              return
         fi
         SP=`expr $SP - 1`
         eval _stack$SP=`pwd`
         cd $1
         return
    popd()
         if [ $SP -eq $BP ]
         then
              return
         fi
         eval cd \${_stack$SP}
         SP=`expr $SP + 1`
         return
    # --- End Functions ---
    # This script is used to setup the needed environment to be able to start Weblogic Server in this domain.
    # This script initializes the following variables before calling commEnv to set other variables:
    # WL_HOME - The BEA home directory of your WebLogic installation.
    # JAVA_VM - The desired Java VM to use. You can set this environment variable before calling
    # this script to switch between Sun or BEA or just have the default be set.
    # JAVA_HOME - Location of the version of Java used to start WebLogic
    # Server. Depends directly on which JAVA_VM value is set by default or by the environment.
    # USER_MEM_ARGS - The variable to override the standard memory arguments
    # passed to java.
    # PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    # DOMAIN_PRODUCTION_MODE
    # - The variable that determines whether the workshop related settings like the debugger,
    # testconsole or iterativedev should be enabled. ONLY settable using the
    # command-line parameter named production
    # NOTE: Specifying the production command-line param will force
    # the server to start in production mode.
    # Other variables used in this script include:
    # SERVER_NAME - Name of the weblogic server.
    # JAVA_OPTIONS - Java command-line options for running the server. (These
    # will be tagged on to the end of the JAVA_VM and
    # MEM_ARGS)
    # For additional information, refer to the WebLogic Server Administration
    # Console Online Help(http://e-docs.bea.com/wls/docs103/ConsoleHelp/startstop.html).
    ORACLE_HOME="/u01/app/oracle/product/wls/jdeveloper"
    export ORACLE_HOME
    WL_HOME="/u01/app/oracle/product/wls/wlserver_10.3"
    export WL_HOME
    BEA_JAVA_HOME="/u01/app/oracle/product/wls/jrockit_160_05"
    export BEA_JAVA_HOME
    SUN_JAVA_HOME="/u01/app/oracle/product/wls/jdk160_05"
    export SUN_JAVA_HOME
    if [ "${JAVA_VENDOR}" = "BEA" ] ; then
         JAVA_HOME="${BEA_JAVA_HOME}"
         export JAVA_HOME
    else
         if [ "${JAVA_VENDOR}" = "Sun" ] ; then
              JAVA_HOME="${SUN_JAVA_HOME}"
              export JAVA_HOME
         else
              JAVA_VENDOR="BEA"
              export JAVA_VENDOR
              JAVA_HOME="/u01/app/oracle/product/wls/jrockit_160_05"
              export JAVA_HOME
         fi
    fi
    # We need to reset the value of JAVA_HOME to get it shortened AND
    # we can not shorten it above because immediate variable expansion will blank it
    JAVA_HOME="${JAVA_HOME}"
    export JAVA_HOME
    SAMPLES_HOME="${WL_HOME}/samples"
    export SAMPLES_HOME
    DOMAIN_HOME="/u01/app/oracle/product/wls/wlserver_10.3/samples/domains/medrec"
    export DOMAIN_HOME
    LONG_DOMAIN_HOME="/u01/app/oracle/product/wls/wlserver_10.3/samples/domains/medrec"
    export LONG_DOMAIN_HOME
    if [ "${DEBUG_PORT}" = "" ] ; then
         DEBUG_PORT="8453"
         export DEBUG_PORT
    fi
    if [ "${SERVER_NAME}" = "" ] ; then
         SERVER_NAME="MedRecServer"
         export SERVER_NAME
    fi
    POINTBASE_FLAG="true"
    export POINTBASE_FLAG
    POINTBASE_PORT="9082"
    export POINTBASE_PORT
    POINTBASE_DBNAME="medrec"
    export POINTBASE_DBNAME
    enableHotswapFlag=""
    export enableHotswapFlag
    PRODUCTION_MODE=""
    export PRODUCTION_MODE
    doExitFlag="false"
    export doExitFlag
    verboseLoggingFlag="false"
    export verboseLoggingFlag
    while [ $# -gt 0 ]
    do
         case $1 in
         nodebug)
              debugFlag="false"
              export debugFlag
         production)
              DOMAIN_PRODUCTION_MODE="true"
              export DOMAIN_PRODUCTION_MODE
         notestconsole)
              testConsoleFlag="false"
              export testConsoleFlag
         noiterativedev)
              iterativeDevFlag="false"
              export iterativeDevFlag
         noLogErrorsToConsole)
              logErrorsToConsoleFlag="false"
              export logErrorsToConsoleFlag
         nopointbase)
              POINTBASE_FLAG="false"
              export POINTBASE_FLAG
         doExit)
              doExitFlag="true"
              export doExitFlag
         noExit)
              doExitFlag="false"
              export doExitFlag
         verbose)
              verboseLoggingFlag="true"
              export verboseLoggingFlag
         enableHotswap)
              enableHotswapFlag="-javaagent:${WL_HOME}/server/lib/diagnostics-agent.jar"
              export enableHotswapFlag
              PROXY_SETTINGS="${PROXY_SETTINGS} $1"
              export PROXY_SETTINGS
         esac
         shift
    done
    MEM_DEV_ARGS=""
    export MEM_DEV_ARGS
    if [ "${DOMAIN_PRODUCTION_MODE}" = "true" ] ; then
         PRODUCTION_MODE="${DOMAIN_PRODUCTION_MODE}"
         export PRODUCTION_MODE
    fi
    if [ "${PRODUCTION_MODE}" = "true" ] ; then
         debugFlag="false"
         export debugFlag
         testConsoleFlag="false"
         export testConsoleFlag
         iterativeDevFlag="false"
         export iterativeDevFlag
    fi
    # If you want to override the default Patch Classpath, Library Path and Path for this domain,
    # Please uncomment the following lines and add a valid value for the environment variables
    # set PATCH_CLASSPATH=[myPatchClasspath] (windows)
    # set PATCH_LIBPATH=[myPatchLibpath] (windows)
    # set PATCH_PATH=[myPatchPath] (windows)
    # PATCH_CLASSPATH=[myPatchClasspath] (unix)
    # PATCH_LIBPATH=[myPatchLibpath] (unix)
    # PATCH_PATH=[myPatchPath] (unix)
    . ${WL_HOME}/common/bin/commEnv.sh
    WLS_HOME="${WL_HOME}/server"
    export WLS_HOME
    MEM_ARGS="-Xms256m -Xmx512m"
    export MEM_ARGS
    MEM_PERM_SIZE="-XX:PermSize=48m"
    export MEM_PERM_SIZE
    MEM_MAX_PERM_SIZE="-XX:MaxPermSize=128m"
    export MEM_MAX_PERM_SIZE
    if [ "${JAVA_VENDOR}" = "Sun" ] ; then
         if [ "${PRODUCTION_MODE}" = "" ] ; then
              MEM_DEV_ARGS="-XX:CompileThreshold=8000 ${MEM_PERM_SIZE} "
              export MEM_DEV_ARGS
         fi
    fi
    # Had to have a separate test here BECAUSE of immediate variable expansion on windows
    if [ "${JAVA_VENDOR}" = "Sun" ] ; then
         MEM_ARGS="${MEM_ARGS} ${MEM_DEV_ARGS} ${MEM_MAX_PERM_SIZE}"
         export MEM_ARGS
    fi
    if [ "${JAVA_VENDOR}" = "HP" ] ; then
         MEM_ARGS="${MEM_ARGS} ${MEM_MAX_PERM_SIZE}"
         export MEM_ARGS
    fi
    # IF USER_MEM_ARGS the environment variable is set, use it to override ALL MEM_ARGS values
    if [ "${USER_MEM_ARGS}" != "" ] ; then
         MEM_ARGS="${USER_MEM_ARGS}"
         export MEM_ARGS
    fi
    JAVA_PROPERTIES="-Dplatform.home=${WL_HOME} -Dwls.home=${WLS_HOME} -Dweblogic.home=${WLS_HOME} "
    export JAVA_PROPERTIES
    # To use Java Authorization Contract for Containers (JACC) in this domain,
    # please uncomment the following section. If there are multiple machines in
    # your domain, be sure to edit the setDomainEnv in the associated domain on
    # each machine.
    # -Djava.security.manager
    # -Djava.security.policy=location of weblogic.policy
    # -Djavax.security.jacc.policy.provider=weblogic.security.jacc.simpleprovider.SimpleJACCPolicy
    # -Djavax.security.jacc.PolicyConfigurationFactory.provider=weblogic.security.jacc.simpleprovider.PolicyConfigurationFactoryImpl
    # -Dweblogic.security.jacc.RoleMapperFactory.provider=weblogic.security.jacc.simpleprovider.RoleMapperFactoryImpl
    EXTRA_JAVA_PROPERTIES="-Ddomain.home=${DOMAIN_HOME} -Doracle.home=${ORACLE_HOME} -Doracle.security.jps.config=${DOMAIN_HOME}/config/oracle/jps-config.xml -Doracle.dms.context=OFF -Djava.protocol.handler.pkgs=oracle.mds.net.protocol ${EXTRA_JAVA_PROPERTIES}"
    export EXTRA_JAVA_PROPERTIES
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${EXTRA_JAVA_PROPERTIES}"
    export JAVA_PROPERTIES
    ARDIR="${WL_HOME}/server/lib"
    export ARDIR
    pushd ${LONG_DOMAIN_HOME}
    # Clustering support (edit for your cluster!)
    if [ "${ADMIN_URL}" = "" ] ; then
         # The then part of this block is telling us we are either starting an admin server OR we are non-clustered
         CLUSTER_PROPERTIES="-Dweblogic.management.discover=true"
         export CLUSTER_PROPERTIES
    else
         CLUSTER_PROPERTIES="-Dweblogic.management.discover=false -Dweblogic.management.server=${ADMIN_URL}"
         export CLUSTER_PROPERTIES
    fi
    LOG4J_CONFIG_FILE="/u01/app/oracle/product/wls/wlserver_10.3/samples/domains/medrec/log4j.properties"
    export LOG4J_CONFIG_FILE
    if [ "${LOG4J_CONFIG_FILE}" != "" ] ; then
         JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dlog4j.configuration=file:${LOG4J_CONFIG_FILE}"
         export JAVA_PROPERTIES
    fi
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${CLUSTER_PROPERTIES}"
    export JAVA_PROPERTIES
    # Clear the pre_classpath here in case an application template wants to set it before the larger pre_classpath is invoked below
    PRE_CLASSPATH=""
    export PRE_CLASSPATH
    PRE_CLASSPATH=""
    export PRE_CLASSPATH
    JAVA_DEBUG=""
    export JAVA_DEBUG
    if [ "${debugFlag}" = "true" ] ; then
         JAVA_DEBUG="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=${DEBUG_PORT},server=y,suspend=n -Djava.compiler=NONE"
         export JAVA_DEBUG
         JAVA_OPTIONS="${JAVA_OPTIONS} ${enableHotswapFlag} -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole..."
         export JAVA_OPTIONS
    else
         JAVA_OPTIONS="${JAVA_OPTIONS} ${enableHotswapFlag} -da"
         export JAVA_OPTIONS
    fi
    if [ ! -d ${JAVA_HOME}/lib ] ; then
         echo "The JRE was not found in directory ${JAVA_HOME}. (JAVA_HOME)"
         echo "Please edit your environment and set the JAVA_HOME"
         echo "variable to point to the root directory of your Java installation."
         popd
         read _val
         exit
    fi
    if [ "${POINTBASE_FLAG}" = "true" ] ; then
         DATABASE_CLASSPATH="${POINTBASE_CLASSPATH}"
         export DATABASE_CLASSPATH
    else
         DATABASE_CLASSPATH="${POINTBASE_CLIENT_CLASSPATH}"
         export DATABASE_CLASSPATH
    fi
    POST_CLASSPATH=""
    export POST_CLASSPATH
    POST_CLASSPATH="${ORACLE_HOME}/modules/features/adf.share_11.1.1.jar${CLASSPATHSEP}${POST_CLASSPATH}"
    export POST_CLASSPATH
    POST_CLASSPATH=""
    export POST_CLASSPATH
    POST_CLASSPATH="${POST_CLASSPATH}${CLASSPATHSEP}${DATABASE_CLASSPATH}${CLASSPATHSEP}${ARDIR}/xqrl.jar"
    export POST_CLASSPATH
    # PROFILING SUPPORT
    JAVA_PROFILE=""
    export JAVA_PROFILE
    SERVER_CLASS="weblogic.Server"
    export SERVER_CLASS
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${WLP_JAVA_PROPERTIES}"
    export JAVA_PROPERTIES
    JAVA_OPTIONS="${JAVA_OPTIONS} ${JAVA_PROPERTIES} -Dwlw.iterativeDev=${iterativeDevFlag} -Dwlw.testConsole=${testConsoleFlag} -Dwlw.logErrorsToConsole=${logErrorsToConsoleFlag}"
    export JAVA_OPTIONS
    # -- Setup properties so that we can save stdout and stderr to files
    if [ "${WLS_STDOUT_LOG}" != "" ] ; then
         echo "Logging WLS stdout to ${WLS_STDOUT_LOG}"
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.Stdout=${WLS_STDOUT_LOG}"
         export JAVA_OPTIONS
    fi
    if [ "${WLS_STDERR_LOG}" != "" ] ; then
         echo "Logging WLS stderr to ${WLS_STDERR_LOG}"
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.Stderr=${WLS_STDERR_LOG}"
         export JAVA_OPTIONS
    fi
    # ADD EXTENSIONS TO CLASSPATHS
    if [ "${EXT_PRE_CLASSPATH}" != "" ] ; then
         PRE_CLASSPATH="${EXT_PRE_CLASSPATH}${CLASSPATHSEP}${PRE_CLASSPATH}"
         export PRE_CLASSPATH
    fi
    if [ "${EXT_POST_CLASSPATH}" != "" ] ; then
         POST_CLASSPATH="${POST_CLASSPATH}${CLASSPATHSEP}${EXT_POST_CLASSPATH}"
         export POST_CLASSPATH
    fi
    if [ "${WEBLOGIC_EXTENSION_DIRS}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.ext.dirs=${WEBLOGIC_EXTENSION_DIRS}"
         export JAVA_OPTIONS
    fi
    JAVA_OPTIONS="${JAVA_OPTIONS}"
    export JAVA_OPTIONS
    # SET THE CLASSPATH
    CLASSPATH="${PRE_CLASSPATH}${CLASSPATHSEP}${WEBLOGIC_CLASSPATH}${CLASSPATHSEP}${POST_CLASSPATH}${CLASSPATHSEP}${WLP_POST_CLASSPATH}"
    export CLASSPATH
    JAVA_VM="${JAVA_VM} ${JAVA_DEBUG} ${JAVA_PROFILE}"
    export JAVA_VM

  • OSD deployment failure - smstslog attached

    I'm pretty new to SCCM and having issues with a OSD deployment. Current image works fine but have been asked to import some drivers so we can deploy to another model. Model is&nbsp;HP Z200. I have&nbsp;uploaded the drivers into sccm (previously tested
    them on the system manually to make sure they work), created a new driver package, setup a wmi query that looks for the model name in the task sequence and then deploys drivers. However the OSD deployment is failing, see log below can anyone help please?
    smstslog:
    Executing task sequence             
    OSDSetupHook 09/03/2015 09:21:57       
    904 (0x0388)
    Loading the Task Sequencing Environment from "C:\_SMSTaskSequence\TSEnv.dat".   
    OSDSetupHook 09/03/2015 09:21:57              
    904 (0x0388)
    Environment scope successfully created: Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}     
    OSDSetupHook               
    09/03/2015 09:21:57       
    904 (0x0388)
    Environment scope successfully created: Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}   
    OSDSetupHook               
    09/03/2015 09:21:57       
    904 (0x0388)
    Debug shell is enabled   OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Successfully enabled debug command shell support.     
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Configuring local administrator account OSDSetupHook
    09/03/2015 09:22:03        904 (0x0388)
    Re-assign all drive letters...         
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    The drive information which has no drive letter can not be found. No need to re-assign driver letters.               
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Installing SMS client        OSDSetupHook
    09/03/2015 09:22:03       
    904 (0x0388)
    Client already installed. OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Moving logs to SMS client directory        
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Successfully moved logs to SMS client log directory: C:\WINDOWS\CCM\Logs\SMSTSLog             
    OSDSetupHook               
    09/03/2015 09:22:03       
    904 (0x0388)
    Executing task sequence manager bootstrap     
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    Executing command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:2    
    OSDSetupHook 09/03/2015 09:22:03       
    904 (0x0388)
    ==============================[ TSMBootStrap.exe ]==============================               
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Command line: "C:\WINDOWS\CCM\TSMBootstrap.exe" /env:Gina /configpath:C:\_SMSTaskSequence /bootcount:2    
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Current OS version is 6.1.7601.1 TSMBootstrap  
    09/03/2015 09:22:04        1012 (0x03F4)
    Logging successfully initialized.  TSMBootstrap  
    09/03/2015 09:22:04       
    1012 (0x03F4)
    Resuming Task Sequence in Full OS        
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    We are going in GINA and potentially need to set the authenticator       
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    setting the authenticator            
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Executing command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE        
    TSMBootstrap   09/03/2015 09:22:04              
    1012 (0x03F4)
    ==========[ TsProgressUI started in process 1260 ]==========          
    TsProgressUI     09/03/2015 09:22:04       
    1452 (0x05AC)
    Command line: "C:\WINDOWS\CCM\TsProgressUI.exe" /Register:WinPE            
    TsProgressUI     09/03/2015 09:22:04               
    1452 (0x05AC)
    Registering COM classes              
    TsProgressUI     09/03/2015 09:22:04       
    1452 (0x05AC)
    sbModulePath = C:\WINDOWS\CCM\TsProgressUI.exe               
    TsProgressUI     09/03/2015 09:22:04       
    1452 (0x05AC)
    Unregistering class objects         
    TsProgressUI     09/03/2015 09:22:04       
    1452 (0x05AC)
    Shutdown complete.     TsProgressUI    
    09/03/2015 09:22:04       
    1452 (0x05AC)
    Process completed with exit code 0       
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Successfully registered TS Progress UI.  TSMBootstrap  
    09/03/2015 09:22:04       
    1012 (0x03F4)
    No valid network adapter found.             
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Starting Task Sequence Manager.           
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    executing TS Manager not in full media TSMBootstrap  
    09/03/2015 09:22:04       
    1012 (0x03F4)
    executing TS Manager in c:\windows\ccm           
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Executing command line: "TsManager.exe"        
    TSMBootstrap   09/03/2015 09:22:04       
    1012 (0x03F4)
    Successfully intialized Logging for TS Manager.   TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    Commandline: "TsManager.exe"             
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    /service parameter found at index: -1    TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    /standalone parameter found at index: -1           
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    /noclient parameter found at index: -1  TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    Successfully registered Task Sequencing COM Interface.              
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Executing as a standalone exe   TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    Initializing TS Environment          
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Opening Task Sequencing Environment TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    Deleting volume ID file C:\_SMSTSVolumeID.7159644d-f741-45d5-ab29-0ad8aa4771ca ...             
    TSManager               
    09/03/2015 09:22:04       
    1580 (0x062C)
    pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,228)
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,228)
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,228)
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    pwszPath && *pwszPath, HRESULT=80070057 (e:\nts_sccm_release\sms\framework\tscore\resolvesource.cpp,228)
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Path variable OSDisk converted from 9D26CD310000401F00000000: to C:              
    TSManager         09/03/2015 09:22:04               
    1580 (0x062C)
    NOT executing in WinPE              
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Compiling Config policy TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    Compiling config policies...          
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Compiling SysHealthConfig policy...        
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSSysHealthClientConfig' TSManager        
    09/03/2015 09:22:04       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:04       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 683, uncompressed size 4652.       
    TSManager         09/03/2015 09:22:04               
    1580 (0x062C)
    Instance path = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' 
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Compiling SoftUpdConfig policy...           
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSSWUpdateClientConfig'             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 1921, uncompressed size 19242.  
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Instance path = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"'          
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Compiling SoftDistClientConfig policy...  TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSSoftDistClientConfig'   
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 1329, uncompressed size 13740.  
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Instance path = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"'   
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Compiling NAAConfig policy...    TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSNAAConfigPolicy'          
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 1403, uncompressed size 8996.    
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Instance path = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"'      
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Instance path = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"'      
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Instance path = 'CCM_NetworkAccessAccount.SiteSettingsKey="2"'      
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Compiling RebootSettingsConfig policy...             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSRebootSettingsConfigPolicy'    
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 432, uncompressed size 1560.       
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Instance path = 'CCM_RebootSettings.SiteSettingsKey="1"'       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Compiling AppManClientConfig policy...               
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Retrieving value from TSEnv for '_SMSTSAppManClientConfigPolicy'      
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    ::DecompressBuffer(65536)       
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Decompression (zlib) succeeded: original size 983, uncompressed size 6358.       
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Instance path = 'CCM_ApplicationManagementClientConfig.SiteSettingsKey="1"'           
    TSManager         09/03/2015 09:22:05              
    1580 (0x062C)
    Start to compile TS policy             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Failed to find property 'AutoApplyDeployment' in 'CCM_ApplicationManagementClientConfig' class defintion. Error 0x80041002. Default value will be used for this property               
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace      
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    End TS policy compilation            
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Get Install Directory for SMS Client         
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Updating settings in \\.\root\ccm\policy\machine\actualconfig TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    RequestedConfig policy instance(s) : 424             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D} successfully      
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D}") AND (PolicyState = "Active") AND (PolicyType = "Machine")              
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    There is no ccm_policy_policy instance, skipping addition to realinst map             
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D} successfully           
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    RequestedConfig policy instance(s) : 0   TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully        
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "CcmPortal") AND (PolicyState = "Active") AND (PolicyType = "Machine")            
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    There is no ccm_policy_policy instance, skipping addition to realinst map             
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully   
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    RequestedConfig policy instance(s) : 0   TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully   
    TSManager         09/03/2015 09:22:05              
    1580 (0x062C)
    RequestedConfig policy instance(s) : 9   TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully              
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    RequestedConfig policy instance(s) : 13 TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully       
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "CcmTaskSequence") AND (PolicyState = "Active") AND (PolicyType = "Machine")               
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    There is no ccm_policy_policy instance, skipping addition to realinst map             
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully  
    TSManager               
    09/03/2015 09:22:05       
    1580 (0x062C)
    Total RequestedConfig policy instance(s) : 446   TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    New/Changed ActualConfig policy instance(s) : 2             
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    [1] Added/updated setting 'ccm_networkaccessaccount:sitesettingskey=1'.      
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    [2] Added/updated setting 'ccm_networkaccessaccount:sitesettingskey=2'.      
    TSManager         09/03/2015 09:22:05               
    1580 (0x062C)
    Policy evaluation initiated           
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Waiting for policy to be compiled in 'root\ccm\policy\machine' namespace
             TSManager        
    09/03/2015 09:22:05               
    1580 (0x062C)
    Query = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Verified policy for instance path 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace 
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Query = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"'
             TSManager        
    09/03/2015 09:22:05       
    1580 (0x062C)
    Verified policy for instance path 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace 
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Query = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"'
      TSManager        
    09/03/2015 09:22:05        1580 (0x062C)
    Verified policy for instance path 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace 
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Query = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"'     
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Verified policy for instance path 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace 
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Query = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"'     
    TSManager         09/03/2015 09:22:05       
    1580 (0x062C)
    Verified policy for instance path 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' compiled in 'root\cc

    Duplicate, see https://social.technet.microsoft.com/Forums/en-US/ab1fb705-bba9-45ef-a2aa-511a0a98ed28/osd-deployment-failure-smstslog-attached-pl?forum=configmanagerosd.
    Torsten Meringer | http://www.mssccmfaq.de

  • Application deployment failure

    Hi All,
    I am facing an application deployment failure issue for Autocad application.  It is mandatory that application downloaded to the client machine should have folder name as AdminImage; however the content is copied under cache folder and hence while installation
    it is getting failed.
    It is getting installed through script and while installation it automatically created adminimage folder but eventually gets failed.
    The source location were the content is like
    Complete package-->Autocad-->AdminImage
    The content location path given is till
    ....\Autocad\
    Program for uninstall and install
    AdminImage\install.vbs and AdminImage\uninstall.vbs
    Please suggest

    how do you reference to the path adminimage in your script, using pushd?
    the datasource for the application is \autocad\ ?

  • BPEL deployment error in production server

    Hi,
    I am deploying my BPEL project on Web-logic server through my JDeveloper 11g. its working fine. but when I selected my different environment for deployment(new one) then I got the following error. Error is due to one of my BPEL prcess "TaskProcess1".
    but the same setup when I deploy to my own server its deploying and running very fine.
    code=500
    [04:53:57 PM] Error deploying archive sca_RegistrationUpload_rev24.0.jar to partition "default" on server DAMS_Batch_Server1 [urasvr140.uradevt.gov.sg:8001, Cluster:DAMS_Batch_Cluster]
    [04:53:57 PM] HTTP error code returned [500]
    [04:53:57 PM] Error message from server:
    #;There was an error deploying the composite on DAMS_Batch_Server1: Operation failed - Member(Id=1, Timestamp=2011-06-02 15:25:57.428, Address=172.16.10.45:8088, MachineId=46637, Location=site:uradevt.gov.sg,machine:urasvr140,process:3968, Role=WeblogicServer):Error occurred during deployment of component: TaskProcess1 to service engine: implementation.bpel, for composite: RegistrationUpload: ORABPEL-01005
    #;Failed to compile bpel generated classes.
    #;failure to compile the generated BPEL classes for BPEL process "TaskProcess1" of composite "default/RegistrationUpload!24.0*soa_f19c6537-e518-4c05-940c-688c1ddb2593"
    #;The class path setting is incorrect.
    #;Ensure that the class path is set correctly. If this happens on the server side, verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    #;; . Please see the server diagnostic logs on DAMS_Batch_Server1 for details.

    Hi,
    I also faced the same problem.
    #;Failed to compile bpel generated classes.
    #;failure to compile the generated BPEL classes for BPEL process "TaskProcess1" of composite "default/RegistrationUpload!24.0*soa_f19c6537-e518-4c05-940c-688c1ddb2593"
    The class path setting is incorrect.
    The problem was that I was using Base64Encoder and Base64Decoder classes in my java embedding . But I missed to import the class.
    <bpelx:exec import="oracle.soa.common.util.Base64Decoder"/>
    <bpelx:exec import="oracle.soa.common.util.Base64Encoder"/>
    Adding these lines before the java embedding solved my problem.
    Sabari
    Edited by: 906932 on Jan 22, 2012 1:14 AM

  • ORABPEL START-UP ERROR!!!!!!!! - Connection Pool Deployment failure

    I have installed BPEL Process Manager with Weblogic 8.1SP4.
    I am using Oracle Database 9.2.0.5.0 for Oracle BPEL Process
    Manager installation.
    Also i have made following changes for JDBC thin driver accordingly.
    <JDBCConnectionPool CapacityIncrement="2"
    DriverName="oracle.jdbc.OracleDriver"
    MaxCapacity="15" LoginDelaySeconds="1"
    Name="BPELServerPool"
    ShrinkPeriodMinutes="15"
    ShrinkingEnabled="true" SupportsLocalTransaction="true"
    Targets="orabpelServer"
    URL="jdbc:oracle:thin:orabpel/orabpel_password@hostname:port:database_servoce_
    name"/>
    I m getting following error while starting the server :-
    Connection Pool "BPELServerPool" deployment failed with the following error: 0:Could not create pool connection. The DBMS driver exception was: invalid arguments in call.
    Also I m getting following error during startup
    ORABPEL-04076
    Cannot lookup jdbc datasource.
    The process domain was unable to lookup the TX datasource "BPELServerDataSourceWorkflow".
    Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.
    at com.collaxa.cube.engine.data.ConnectionFactory$ConnectionFactoryImpl.init(ConnectionFactory.java:268)
    at com.collaxa.cube.engine.data.ConnectionFactory.update(ConnectionFactory.java:54)
    at com.collaxa.cube.engine.data.ConnectionFactory.init(ConnectionFactory.java:42)
    at com.collaxa.cube.admin.data.ServerConnectionFactory.init(ServerConnectionFactory.java:34)
    at com.collaxa.cube.admin.adaptors.ServerAdaptorManager.init(ServerAdaptorManager.java:66)
    at com.collaxa.cube.admin.ServerManager.__init(ServerManager.java:211)
    at com.collaxa.cube.admin.ServerManager.init(ServerManager.java:99)
    at com.collaxa.cube.ejb.impl.ServerBean.init(ServerBean.java:200)
    at com.collaxa.cube.ejb.impl.ServerBean_g9inc6_EOImpl.init(ServerBean_g9inc6_EOImpl.java:856)
    at com.collaxa.cube.admin.CXLoaderServlet.init(CXLoaderServlet.java:62)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3333)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3278)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3259)
    at weblogic.servlet.internal.WebAppServletContext.setStarted(WebAppServletContext.java:5949)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:862)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer.java:2127)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2168)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2115)
    at weblogic.management.deploy.slave.SlaveDeployer$Application.setActivation(SlaveDeployer.java:3082)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:1751)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:359)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    <Error> <HTTP> <BEA-101216> <Servlet: "cxloader" failed to preload on startup in Web application: "startup".
    javax.servlet.ServletException:
    ORABPEL START-UP ERROR!!!!!!!!
    Can Anyone kindly suggest what is the problem ?

    I have installed BPEL Process Manager with Weblogic 8.1SP4.
    I am using Oracle Database 9.2.0.5.0 for Oracle BPEL Process
    Manager installation.
    Also i have made following changes for JDBC thin driver accordingly.
    <JDBCConnectionPool CapacityIncrement="2"
    DriverName="oracle.jdbc.OracleDriver"
    MaxCapacity="15" LoginDelaySeconds="1"
    Name="BPELServerPool"
    ShrinkPeriodMinutes="15"
    ShrinkingEnabled="true" SupportsLocalTransaction="true"
    Targets="orabpelServer"
    URL="jdbc:oracle:thin:orabpel/orabpel_password@hostname:port:database_servoce_
    name"/>
    I m getting following error while starting the server :-
    Connection Pool "BPELServerPool" deployment failed with the following error: 0:Could not create pool connection. The DBMS driver exception was: invalid arguments in call.
    Also I m getting following error during startup
    ORABPEL-04076
    Cannot lookup jdbc datasource.
    The process domain was unable to lookup the TX datasource "BPELServerDataSourceWorkflow".
    Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the connection pool properties as defined in the application server startup properties are valid.
    at com.collaxa.cube.engine.data.ConnectionFactory$ConnectionFactoryImpl.init(ConnectionFactory.java:268)
    at com.collaxa.cube.engine.data.ConnectionFactory.update(ConnectionFactory.java:54)
    at com.collaxa.cube.engine.data.ConnectionFactory.init(ConnectionFactory.java:42)
    at com.collaxa.cube.admin.data.ServerConnectionFactory.init(ServerConnectionFactory.java:34)
    at com.collaxa.cube.admin.adaptors.ServerAdaptorManager.init(ServerAdaptorManager.java:66)
    at com.collaxa.cube.admin.ServerManager.__init(ServerManager.java:211)
    at com.collaxa.cube.admin.ServerManager.init(ServerManager.java:99)
    at com.collaxa.cube.ejb.impl.ServerBean.init(ServerBean.java:200)
    at com.collaxa.cube.ejb.impl.ServerBean_g9inc6_EOImpl.init(ServerBean_g9inc6_EOImpl.java:856)
    at com.collaxa.cube.admin.CXLoaderServlet.init(CXLoaderServlet.java:62)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3333)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3278)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3259)
    at weblogic.servlet.internal.WebAppServletContext.setStarted(WebAppServletContext.java:5949)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:862)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer.java:2127)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2168)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2115)
    at weblogic.management.deploy.slave.SlaveDeployer$Application.setActivation(SlaveDeployer.java:3082)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:1751)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:359)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    <Error> <HTTP> <BEA-101216> <Servlet: "cxloader" failed to preload on startup in Web application: "startup".
    javax.servlet.ServletException:
    ORABPEL START-UP ERROR!!!!!!!!
    Can Anyone kindly suggest what is the problem ?

  • Windows Deployment Services - Windows 8.1 Deployment Failure (Required Driver could not be Installed)

    Hello everyone,
    Give you a little background on the hardware/software which we are running to do a Windows 8.1 Deployment, we have an VM of Windows Server 2008 R2 with Windows Deployment Services installed and configured correctly. For the boot image it's a Windows 8.1
    WIM and as for the Install Image we have a base image of Win 8.1 with all drivers installed for an HP EliteBook 8540w , we Syspreped and then capture the image using the W2K capture on PXE to capture and upload the image to the server. This is where we first
    ran into the problem of connecting to the server and had to inject the lan drivers to have network connectivity. After the image was uploaded to the server, we thought to try and run a deployment of that image on an identical laptop. PXE boot into that Image,
    it asks for domain credentials which are accepted it begins the installation process and fails at "Windows installation cannot continue because a required driver could not be installed"?
    We just set up client logging on the server and it is useless it just says that the driver is missing, but what driver is missing? There are thousands, which one?
    Another forum has this issue:  http://social.technet.microsoft.com/Forums/windows/en-US/4cf0b378-09d0-4e0b-bc6e-3d898b668f98/during-deployment-windows-installation-cannot-continue-because-a-required-driver-could-not-be?forum=w8itproinstall

    Hi,
    Please first check the solution here:
    Error: Windows installation cannot continue because a required driver could not be installed
    http://support.brainwaregroup.com/kb/article/AA-00702/0/Error%3A-Windows-installation-cannot-continue-because-a-required-driver-could-not-be-installed.html
    Also, please try to find out Setup logs from the client computer, and we can see the details in the Setup log:
    If the failure occurs in Windows PE before the disk configuration page of the WDS client is completed, you can find the logs at the
    X:\Windows\Panther folder. Use Shift+F10 to open a command prompt, and then change the directory to the location.
    If the failure occurs in Windows PE after the disk configuration page of the WDS client is completed, you can find the logs on the local disk volume at the
    $Windows.~BT\Sources\Panther folder. The local disk volume is usually the drive
    C. Use Shift+F10 to open a command prompt, and then change the directory to the location.
    Kate Li
    TechNet Community Support

  • Problem: bpel deployment with xsd choice

    hi!
    i have the problem that after deploying my bpel process i dont see the choice defined in my xsd. with a very simple example the choice just dont show in the bpel console. (bpel processes => initiate => xml source just shows the xml without the choice)
    i use jdeveloper 10.1.3.1.0.3984.
    does anyone know a solution for this problem?
    thanks
    my xsd:
    <?xml version="1.0" encoding="ISO-8859-15" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns="http://www.example.org"
                targetNamespace="http://www.example.org"
                elementFormDefault="qualified">
      <xsd:element name="exampleElement">
        <xsd:annotation>
          <xsd:documentation>
            A sample element
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="element1" type="xsd:string"/>
            <xsd:choice>
              <xsd:element name="element3" type="xsd:string"/>
              <xsd:element name="element4" type="xsd:string"/>
            </xsd:choice>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>the bpel process consists just of an assign-component.

    Is JAXB 1.0 used to generate the client code. xsd:choice is supported, but xsd:any is not supported by JAXB 1.0.

Maybe you are looking for

  • VL10B - Replenishment delivery distribution

    Hello Friends,   I am having a very complicated scenario in Replenishment delivery. I need a help in resolving the below issue.     Material         |          Availability    Material123     |               5 car Below is how the STO is created. Mat

  • My Safari did updates and now it will not open. How do I fix this?

    My computer did updates about a week ago and ever since then the internet will not open. It says it downloaded safari 5.1.1, when I try to open safari it comes up with a message saying the community toolbar does not support the version I am using. Ho

  • Epson Printer problem "Epson Stylus Photo PX710W" - solved!

    Hello All, My system: OS 10.6.4 I am posting this in the hope that it is useful to someone. Firstly, the printer is great. However, I had a really frustrating time trying to print via Iwork, Iphoto or print off an email directly in a web browser. Eac

  • Can not stream from Airport express speakers

    Only from iTunes! but from iPhone is working perfecty!

  • How to keep the digital audio ouptut alive?

    I'm connecting my MBP audio via the optical digital audio connection and the digital stream disconnects after a short time (30 seconds? I haven't timed it.) whenever there's no audio coming out of the MBP: the optical actually stops transmitting (the