StringIndexOutOfBoundsException when deploying exploded

I'm trying to deploy an application by copying it into <domain>/applications.
I've pasted the exception below. It mentions ManifestEntry issues. I don't understand this. I'm not deploying a .war, .ear or .jar file, so why is WebLogic complaining about manifests? Is it trying to deploy a .jar in /APP-INF/lib or <web-app>/WEB-INF/lib before it's fully copied into the auto-deploy directory?
All help will be appreciated.
- Laran
<Dec 15, 2004 11:45:50 AM GMT-05:00> <Info> <WebLogicServer> <BEA-000377> <Start
ing WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.2-b28 from Sun M
icrosystems Inc.>
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Info> <Configuration Management> <BEA-1500
16> <This server is being started as the administration server.>
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Info> <Management> <BEA-141107> <Version:
WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Notice> <Management> <BEA-140005> <Loading
domain configuration from configuration repository at C:\bea\user_projects\doma
ins\mydomain\.\config.xml.>
<Dec 15, 2004 11:45:52 AM GMT-05:00> <Notice> <Log Management> <BEA-170019> <The
server log file C:\bea\user_projects\domains\mydomain\myserver\myserver.log is
opened. All server side log events will be written to this file.>
<Dec 15, 2004 11:45:53 AM GMT-05:00> <Notice> <Security> <BEA-090082> <Security
initializing using security realm myrealm.>
<Dec 15, 2004 11:45:53 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000327> <Sta
rting WebLogic Admin Server "myserver" for domain "mydomain">
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000331> <Sta
rted WebLogic Admin Server "myserver" for domain "mydomain" running in Developme
nt Mode>
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000360> <Ser
ver started in RUNNING mode>
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000355> <Thr
ead "ListenThread.Default" listening on port 7001, ip address *.*>
<Dec 15, 2004 11:50:00 AM GMT-05:00> <Warning> <Deployer> <BEA-149004> <Failures
were detected while initiating Deploy task for application dfaFinSys2.>
<Dec 15, 2004 11:50:00 AM GMT-05:00> <Error> <Deployer> <BEA-149201> <Failed to
complete the deployment task with ID 0 for the application dfaFinSys2.
java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at java.lang.String.substring(String.java:1444)
at weblogic.utils.jars.ManifestEntry.stream(ManifestEntry.java:171)
at weblogic.utils.jars.Manifest.stream(Manifest.java:78)
at weblogic.utils.classloaders.ExtractionHelper.resolveManifestName(Extr
actionHelper.java:410)
at weblogic.utils.classloaders.ExtractionHelper.extractClassFiles(Extrac
tionHelper.java:238)
at weblogic.utils.classloaders.LibDirClassFinder.<init>(LibDirClassFinde
r.java:33)
at weblogic.j2ee.J2EEApplicationContainer.getNewApplicationClassLoader(J
2EEApplicationContainer.java:711)
at weblogic.j2ee.J2EEApplicationContainer.access$300(J2EEApplicationCont
ainer.java:182)
at weblogic.j2ee.J2EEApplicationContainer$CLNode.<init>(J2EEApplicationC
ontainer.java:4068)
at weblogic.j2ee.J2EEApplicationContainer.initClassLoaderTree(J2EEApplic
ationContainer.java:3425)
at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
er.java:989)
at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.
prepareContainer(SlaveDeployer.java:2444)
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createCon
tainer(SlaveDeployer.java:2394)
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(S
laveDeployer.java:2310)
at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
veDeployer.java:866)
at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDepl
oyer.java:594)
at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
loyer.java:508)
at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
dler.java:25)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
--------------- nested within: ------------------
weblogic.management.ManagementException: - with nested exception:
[java.lang.StringIndexOutOfBoundsException: String index out of range: -1]
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(S
laveDeployer.java:2327)
at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
veDeployer.java:866)
at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDepl
oyer.java:594)
at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
loyer.java:508)
at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
dler.java:25)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
>

I'm trying to deploy an application by copying it into <domain>/applications.
I've pasted the exception below. It mentions ManifestEntry issues. I don't understand this. I'm not deploying a .war, .ear or .jar file, so why is WebLogic complaining about manifests? Is it trying to deploy a .jar in /APP-INF/lib or <web-app>/WEB-INF/lib before it's fully copied into the auto-deploy directory?
All help will be appreciated.
- Laran
<Dec 15, 2004 11:45:50 AM GMT-05:00> <Info> <WebLogicServer> <BEA-000377> <Start
ing WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.2-b28 from Sun M
icrosystems Inc.>
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Info> <Configuration Management> <BEA-1500
16> <This server is being started as the administration server.>
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Info> <Management> <BEA-141107> <Version:
WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
<Dec 15, 2004 11:45:51 AM GMT-05:00> <Notice> <Management> <BEA-140005> <Loading
domain configuration from configuration repository at C:\bea\user_projects\doma
ins\mydomain\.\config.xml.>
<Dec 15, 2004 11:45:52 AM GMT-05:00> <Notice> <Log Management> <BEA-170019> <The
server log file C:\bea\user_projects\domains\mydomain\myserver\myserver.log is
opened. All server side log events will be written to this file.>
<Dec 15, 2004 11:45:53 AM GMT-05:00> <Notice> <Security> <BEA-090082> <Security
initializing using security realm myrealm.>
<Dec 15, 2004 11:45:53 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000327> <Sta
rting WebLogic Admin Server "myserver" for domain "mydomain">
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000331> <Sta
rted WebLogic Admin Server "myserver" for domain "mydomain" running in Developme
nt Mode>
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000360> <Ser
ver started in RUNNING mode>
<Dec 15, 2004 11:45:56 AM GMT-05:00> <Notice> <WebLogicServer> <BEA-000355> <Thr
ead "ListenThread.Default" listening on port 7001, ip address *.*>
<Dec 15, 2004 11:50:00 AM GMT-05:00> <Warning> <Deployer> <BEA-149004> <Failures
were detected while initiating Deploy task for application dfaFinSys2.>
<Dec 15, 2004 11:50:00 AM GMT-05:00> <Error> <Deployer> <BEA-149201> <Failed to
complete the deployment task with ID 0 for the application dfaFinSys2.
java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at java.lang.String.substring(String.java:1444)
at weblogic.utils.jars.ManifestEntry.stream(ManifestEntry.java:171)
at weblogic.utils.jars.Manifest.stream(Manifest.java:78)
at weblogic.utils.classloaders.ExtractionHelper.resolveManifestName(Extr
actionHelper.java:410)
at weblogic.utils.classloaders.ExtractionHelper.extractClassFiles(Extrac
tionHelper.java:238)
at weblogic.utils.classloaders.LibDirClassFinder.<init>(LibDirClassFinde
r.java:33)
at weblogic.j2ee.J2EEApplicationContainer.getNewApplicationClassLoader(J
2EEApplicationContainer.java:711)
at weblogic.j2ee.J2EEApplicationContainer.access$300(J2EEApplicationCont
ainer.java:182)
at weblogic.j2ee.J2EEApplicationContainer$CLNode.<init>(J2EEApplicationC
ontainer.java:4068)
at weblogic.j2ee.J2EEApplicationContainer.initClassLoaderTree(J2EEApplic
ationContainer.java:3425)
at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
er.java:989)
at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.
prepareContainer(SlaveDeployer.java:2444)
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createCon
tainer(SlaveDeployer.java:2394)
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(S
laveDeployer.java:2310)
at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
veDeployer.java:866)
at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDepl
oyer.java:594)
at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
loyer.java:508)
at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
dler.java:25)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
--------------- nested within: ------------------
weblogic.management.ManagementException: - with nested exception:
[java.lang.StringIndexOutOfBoundsException: String index out of range: -1]
at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(S
laveDeployer.java:2327)
at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
veDeployer.java:866)
at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDepl
oyer.java:594)
at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
loyer.java:508)
at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
dler.java:25)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
>

Similar Messages

  • WL Bug: StringIndexOutOfBoundsException when deploying war

    When deploying a war file in WLS 6.1 SP2 I get below exception. This seems
    to be a WL bug caused by a line in WebAppHelper.resolveManifestName s4 =
    s4.substring(0, s4.length() - 1); There is no check if s4.length() is 0.
    Is there a fix included in a later service pack?
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101053> <[HTTP myserver] Loading web app: si>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101059> <[myserver] Loading si from WAR file:
    /export/home/lenzb01/bea/./config/devel/applications/.wlnotdelete/wl_comp316
    2.war>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101031> <[WebAppServletContext(2728330,si,/si)] extracting classfiles to
    /export/home/lenzb01/bea/config/devel/applications/.wlnotdelete/WEB-INF/_tmp
    warmyserver_myserver_si:>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Debug> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101158> <Exception thrown while loading si:
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1>
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1525)
    at
    weblogic.servlet.internal.WebAppHelper.resolveManifestName(WebAppHelper.java
    :469)
    at
    weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:1
    77)
    at
    weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServl
    etContext.java:3405)
    at
    weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletConte
    xt.java:3376)
    at
    weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.jav
    a:862)
    at
    weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.j
    ava:815)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:428)
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:74)
    at weblogic.j2ee.Application.addComponent(Application.java:163)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:329)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:144)
    at
    weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:
    76)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy36.addWebDeployment(Unknown Source)
    at
    weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeploymen
    t(WebServerMBean_CachingStub.java:1121)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:315)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:144)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.updateConfigMBeans(Confi
    gurationMBeanImpl.java:491)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:361)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy13.addDeployment(Unknown Source)
    at
    weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBean
    Impl.java:1516)
    at
    weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.
    java:895)
    at
    weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.
    java:847)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(Configurati
    onMBeanImpl.java:295)
    at
    com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:135
    6)
    at
    com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:133
    1)
    at
    weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
    at $Proxy131.setTargets(Unknown Source)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanA
    ttribute.java:92)
    at
    weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMB
    eanAction.java:135)
    at
    weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
    rvlet.java:171)
    at
    weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
    let.java:85)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<Apr 29, 2002 12:12:56 PM EDT> <Error> <J2EE> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <160001> <Error deploying application si: Could not load si>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <Management> <nykcorsun03>
    <myserver> <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'>
    <system> <> <140009> <Configuration changes for domain saved to the
    repository.>

    Hi.
    There are a couple of known issues like this for WLS 6.1 sp2. These will be
    addressed in sp3 but sp3 won't be available for awhile yet. I recommend you
    contact BEA support for a patch.
    Regards,
    Michael
    Bernhard Lenz wrote:
    I did some more research. When deploying a war weblogic goes through all the
    jars deployed in the war's WEB-INF/lib directory.
    It parses the CLASS-PATH entry of each jar's MANIFEST.MF.
    If the CLASS-PATH references e.g. "." or a file that does not exists in the
    WEB-INF/lib directory WL bombs out with a StringIndexOutOfBoundsException.
    Can anybody tell me if that problem was fixed for WL6.1 in a SP later than
    SP2? If not where do I have to report this bug?
    Greetings
    Bernie
    "Bernhard Lenz" <[email protected]> wrote in message
    news:[email protected]...
    When deploying a war file in WLS 6.1 SP2 I get below exception. This seems
    to be a WL bug caused by a line in WebAppHelper.resolveManifestName s4 =
    s4.substring(0, s4.length() - 1); There is no check if s4.length() is 0.
    Is there a fix included in a later service pack?
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101053> <[HTTP myserver] Loading web app: si>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101059> <[myserver] Loading si from WAR file:
    /export/home/lenzb01/bea/./config/devel/applications/.wlnotdelete/wl_comp316
    2.war>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101031> <[WebAppServletContext(2728330,si,/si)] extracting classfiles to
    /export/home/lenzb01/bea/config/devel/applications/.wlnotdelete/WEB-INF/_tmp
    warmyserver_myserver_si:>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Debug> <HTTP> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <101158> <Exception thrown while loading si:
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1>
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1525)
    at
    weblogic.servlet.internal.WebAppHelper.resolveManifestName(WebAppHelper.java
    :469)
    at
    weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:1
    77)
    at
    weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServl
    etContext.java:3405)
    at
    weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletConte
    xt.java:3376)
    at
    weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.jav
    a:862)
    at
    weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.j
    ava:815)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:428)
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:74)
    at weblogic.j2ee.Application.addComponent(Application.java:163)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:329)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:144)
    at
    weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:
    76)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy36.addWebDeployment(Unknown Source)
    at
    weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeploymen
    t(WebServerMBean_CachingStub.java:1121)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:315)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:144)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.updateConfigMBeans(Confi
    gurationMBeanImpl.java:491)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:361)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy13.addDeployment(Unknown Source)
    at
    weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBean
    Impl.java:1516)
    at
    weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.
    java:895)
    at
    weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.
    java:847)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(Configurati
    onMBeanImpl.java:295)
    at
    com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:135
    6)
    at
    com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:133
    1)
    at
    weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
    at $Proxy131.setTargets(Unknown Source)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanA
    ttribute.java:92)
    at
    weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMB
    eanAction.java:135)
    at
    weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
    rvlet.java:171)
    at
    weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
    let.java:85)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<Apr 29, 2002 12:12:56 PM EDT> <Error> <J2EE> <nykcorsun03> <myserver>
    <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'> <system> <>
    <160001> <Error deploying application si: Could not load si>
    ####<Apr 29, 2002 12:12:56 PM EDT> <Info> <Management> <nykcorsun03>
    <myserver> <ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'>
    <system> <> <140009> <Configuration changes for domain saved to the
    repository.>
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Wls 8.1 sp5 - cannot deploy exploded archive anymore

    Hi all,
    I used to deploy exploded archive in development mode with wls 8.1 sp4. When browsing the file system, the console used to show a radio button to the left of folders which contained an exploded war.
    Since I replace 8.1 sp4 with 8.1 sp5, this radio button does not appear anymore along folders that contain exploded war.
    Is this a known issue ? Anyone reproduced the same behaviour ?
    Thanks for letting me know of any workaround as this feature is really handy ...
    Kind regards,
    Regis

    Dear Prasanth,
    You're right; so what I did next was to rename my .jspx to .jsp, and this time round I hit this exception while accessing the index.jsp page, any idea what other stuffs I did to do?
    Thanks for your help!
    javax.servlet.jsp.JspException: Cannot find FacesContext
         at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:405)
         at com.sun.faces.taglib.jsf_core.ViewTag.doStartTag(ViewTag.java:105)

  • CDI Fails when deployed twice from OEPE 12c to WebLogic 12c

    Hi,
    First when I use CDI on WebLogic 12c it works the first time without any problems , First I had to do this ( From Steve Button ) else I get some inject problems
    Just as an out there kind of thought, OEPE does use the split-directory model for deployment by default -- perhaps try adjusting it to use the exploded archive model instead, just as a test to see if it removes the error?
    Right click the server config and select Properties > WebLogic > Publishing > Publish as exploded archive
    then it works once , when I deploy it twice then the Named beans are not found. ( I use a empty beans.xml in the web-inf )
    I need to restart the wls 12c then it works. Same project with OEPE 12c and glassfish works fine.
    thanks

    Arun,
    Do you see the application status active in the Admin console?
    Are you testing the web application by typing the complete URL in the browser that includes the name of the webpage including the context root , ipaddress/hostname and port number of Server..?
    404 indicates application doesn't exist.
    Please share the URL you are testing.
    Please check the server log if you found any deployment issues when deploying your application?
    Thanks,
    Vijaya

  • Java.lang.StringIndexOutOfBoundsException while deploying webapp

    Hi all,
    I'm trying to deploy an expanded webapp on WebLogic 6.0sp1. It's a
    migration from 5.1, some hundred JSPs, some servlets and custom tags in
    WEB-INF/classes and a few static pages. I placed the web-application
    folder in the applications folder and the server begins the deployment.
    During deployment I get a StringIndexOutOfBoundsException and the
    deployment stops (see log extract below). By the time when this happens,
    there is a new .ear file and a war file (seem to be the same) containing
    my web application. This is a real show-stopper for me, so I'd be glad
    for any recommendations.
    Thanks,
    Daniel
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(LastModified)
    modified from (0) to (984590891366).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(Application) modified from (null) to (fbsdomain:Name=f
    utuna,Type=Application).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(Application) modified from (fbsdomain:Name=futuna,Type
    =Application) to (fbsdomain:Name=futuna,Type=Application).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(URI) modified from (null) to (futuna).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(ContextPath) modified from (null) to (futuna).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(LoadError)
    modified from (null) to (null).>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[HTTP
    fbsserver] Loading web app: futuna>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[HTTP
    fbsserver] Loading futuna from WAR file:
    c:\dev\fbs\application\config\fbsdomain\applications\.wl_temp_do_not_del
    ete\wl_local_comp19242
    .war>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[Default
    WebApp] extracting classfiles to
    c:\dev\fbs\application\config\fbsdomain\applications\.wl_temp_do_not_del
    ete\WEB-INF\_tmp_war_fbsser
    ver_fbsserver_futuna:>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Info> <HTTP> <[Default
    WebApp] extracted classfiles successfully...>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Debug> <HTTP> <Exception
    thrown while loading futuna: java.lang.StringIndexOutOfBoundsException:
    String index out of range: -1>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Error> <J2EE> <Error
    deploying application futuna: Could not load futuna>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(Deployed)
    modified from (true) to (true).>
    [java] <14.03.2001 18:28:36 GMT+01:00> <Error> <HTTP>
    <HttpServer(4062427,null default ctx,fbsserver) found no context for
    "GET /futuna HTTP/1.1". This should not happen unless the default contex
    t failed to deploy.>
    [java] <14.03.2001 18:28:45 GMT+01:00> <Error> <HTTP>
    <HttpServer(4062427,null default ctx,fbsserver) found no context for
    "GET /futuna/ HTTP/1.1". This should not happen unless the default conte
    xt failed to deploy.>
    [java] <14.03.2001 18:30:27 GMT+01:00> <Info> <HTTP>
    <[WebAppServletContext(4114264,console)] *.html: init>
    [java] <14.03.2001 18:30:27 GMT+01:00> <Info> <HTTP>
    <[WebAppServletContext(4114264,console)] *.html: Using standard I/O>

    Hi Kumar,
    thanks for the hint, but that did not solve the problem. I reworked
    web.xml and weblogic.xml (some 5.1 things inside) and now it works.
    Daniel
    -----Ursprüngliche Nachricht-----
    Von: Kumar Allamraju [mailto:[email protected]]
    Bereitgestellt: Mittwoch, 14. März 2001 22:35
    Bereitgestellt in: install
    Unterhaltung: java.lang.StringIndexOutOfBoundsException while deploying
    webapp
    Betreff: Re: java.lang.StringIndexOutOfBoundsException while deploying
    webapp
    It appears your default webapp failed to deploy.
    Add the following entry (red ink) in your config.xml (carefully) and see
    if you are able to deploy default webapp
    <Application
    Deployed="true"
    Name="DefaultWebApp_myserver"
    Path="./config/myserver/applications"
    >
    <WebAppComponent
    Name="DefaultWebApp_myserver"
    Targets="myserver"
    WebServers="myserver"
    URI="DefaultWebApp_myserver"
    />
    </Application>
    Daniel Hoppe wrote:
    Hi all,
    I'm trying to deploy an expanded webapp on WebLogic 6.0sp1. It's a
    migration from 5.1, some hundred JSPs, some servlets and custom tags in
    WEB-INF/classes and a few static pages. I placed the web-application
    folder in the applications folder and the server begins the deployment.
    During deployment I get a StringIndexOutOfBoundsException and the
    deployment stops (see log extract below). By the time when this happens,
    there is a new .ear file and a war file (seem to be the same) containing
    my web application. This is a real show-stopper for me, so I'd be glad
    for any recommendations.
    Thanks,
    Daniel
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(LastModified)
    modified from (0) to (984590891366).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(Application) modified from (null) to (fbsdomain:Name=f
    utuna,Type=Application).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(Application) modified from (fbsdomain:Name=futuna,Type
    =Application) to (fbsdomain:Name=futuna,Type=Application).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(URI) modified from (null) to (futuna).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=WebAppComponent,Application=futuna)
    Attribute=(ContextPath) modified from (null) to (futuna).>
    [java] <14.03.2001 18:28:11 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(LoadError)
    modified from (null) to (null).>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[HTTP
    fbsserver] Loading web app: futuna>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[HTTP
    fbsserver] Loading futuna from WAR file:
    c:\dev\fbs\application\config\fbsdomain\applications\.wl_temp_do_not_del
    ete\wl_local_comp19242
    .war>
    [java] <14.03.2001 18:28:16 GMT+01:00> <Info> <HTTP> <[Default
    WebApp] extracting classfiles to
    c:\dev\fbs\application\config\fbsdomain\applications\.wl_temp_do_not_del
    ete\WEB-INF\_tmp_war_fbsser
    ver_fbsserver_futuna:>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Info> <HTTP> <[Default
    WebApp] extracted classfiles successfully...>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Debug> <HTTP> <Exception
    thrown while loading futuna: java.lang.StringIndexOutOfBoundsException:
    String index out of range: -1>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Error> <J2EE> <Error
    deploying application futuna: Could not load futuna>
    [java] <14.03.2001 18:28:17 GMT+01:00> <Info> <Management>
    <MBean=(fbsdomain:Name=futuna,Type=Application) Attribute=(Deployed)
    modified from (true) to (true).>
    [java] <14.03.2001 18:28:36 GMT+01:00> <Error> <HTTP>
    <HttpServer(4062427,null default ctx,fbsserver) found no context for
    "GET /futuna HTTP/1.1". This should not happen unless the default contex
    t failed to deploy.>
    [java] <14.03.2001 18:28:45 GMT+01:00> <Error> <HTTP>
    <HttpServer(4062427,null default ctx,fbsserver) found no context for
    "GET /futuna/ HTTP/1.1". This should not happen unless the default conte
    xt failed to deploy.>
    [java] <14.03.2001 18:30:27 GMT+01:00> <Info> <HTTP>
    <[WebAppServletContext(4114264,console)] *.html: init>
    [java] <14.03.2001 18:30:27 GMT+01:00> <Info> <HTTP>
    <[WebAppServletContext(4114264,console)] *.html: Using standard I/O>

  • Struts2 webapp is not starting up when deployed as unexploded war file

    Whereas if I deploy as exploded war file it works just fine.
    I am seeing following error when deploying as unexploded war file. I am deploying in weblogic 10.3. Using struts 2 with Spring as object factory.
    'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1235449766296> <BEA-101165> <Could not load user defined filter in web.xml: org.apache.struts2.dispatcher.FilterDispatcher.
    Action class [logAction] not found - action - zip:C:/servers/bea10/user_projects/domains/ro_domain/servers/AdminServer/tmp/_WL_user/loginWeb/tlbxoe/war/WEB-INF/lib/_wl_cls_gen.jar!/struts.xml:60:60
    at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.verifyAction(XmlConfigurationProvider.java:374)
    at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addAction(XmlConfigurationProvider.java:329)
    at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addPackage(XmlConfigurationProvider.java:429)
    at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.loadPackages(XmlConfigurationProvider.java:239)
    at org.apache.struts2.config.StrutsXmlConfigurationProvider.loadPackages(StrutsXmlConfigurationProvider.java:111)
    at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reload(DefaultConfiguration.java:152)
    at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:52)
    at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:395)
    at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:452)
    at org.apache.struts2.dispatcher.FilterDispatcher.init(FilterDispatcher.java:201)
    at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:329)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:95)
    Thanks in advance for your help.

    Post your question in WebLogic forum here:
    WebLogic Server - General

  • Rulebases not available when deploying OPA 10.2 on Weblogic

    Hi,
    Before upgrading to version 10.2 of determinations-server.war I was running 10.1 deployed to WLS 10.3. I used the java option -Ddeterminations.server.rulebase.dir to point out where rulebases should be loaded from. After switching to 10.2 thiss setting doesn't work.
    When using the documented settings for classpath loading in application.properties I set up
    load.rulebase.from.claspath=true
    rulebase.path=rulebases
    As I understand it the directory rulebases is seached for in CLASSPATH of WLS so I added the directory C:\bea\user_projects\domains\windomain to CLASSPATH of WLS. windomain contains a directory "rulebases" containing my working rulebases.
    When listing rulebases nothing is available.
    The war is deployed unexploded and this is the way the customer wants it. I wish to just modify application.properties so classpath loading works and have the rulebases on the file system.
    Similar post hinting this should work: Error installing web-determinations 10.1.0.27 on WLS 10.3.3

    C:\bea\user_projects\domains\windomain is located in CLASSPATH. (which I see in startup log)
    C:\bea\user_projects\domains\windomain\rulebases contains my zipfiles which are working if i deploy exploded war.
    My war file is located in C:\bea\user_projects\domains\windomain\autodeploy
    application.properties is set according to
    load.rulebase.from.claspath=true
    rulebase.path=rulebases
    I have also tried setting CLASSPATH to C:\bea\user_projects\domains\windomain\rulebases without any positive result.
    At least one more colleague has tried the same approach with trying to load rulebases from CLASSPATH (WLS), but with no success. We have tried Windows, Solaris and Linux without success.
    The log shows the following, which it also does if I deploy exploded.
    <2011-mar-25 kl 10:40 CET> <Info> <Health> <BEA-310002> <71% of the total memory in the server is free>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,408 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.determinations.server.DSServlet - GET request: pathinfo=null queryString=null contextPath=/dete
    rminations-server>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,549 WARN [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] WARN com.oracle.determinations.interview.engine.local.LocalInterviewEngine - Plugin directory could not be init
    ialised. No plugins will be loaded
    java.lang.IllegalArgumentException: Can not locate plugin directory 'plugins'. On the classpath
    at com.oracle.util.plugins.PluginRegistry.addPluginsFromDir(PluginRegistry.java:99)
    at com.oracle.determinations.interview.engine.local.LocalInterviewEngine.initialise(LocalInterviewEngine.java:101)
    at com.oracle.determinations.interview.engine.local.LocalInterviewEngine.<init>(LocalInterviewEngine.java:59)
    at com.oracle.determinations.interview.engine.InterviewEngineFactory.createInstance(InterviewEngineFactory.java:19)
    at com.oracle.determinations.server.DSServletContext.<init>(DSServletContext.java:35)
    at com.oracle.determinations.server.DSServlet.getOrCreateContext(DSServlet.java:128)
    at com.oracle.determinations.server.DSServlet.doGet(DSServlet.java:42)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,565 WARN [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] WARN com.oracle.determinations.server.assess.AssessEngine - Plugin directory could not be initialised.
    java.lang.IllegalArgumentException: Can not locate plugin directory 'plugins'. On the classpath
    at com.oracle.util.plugins.PluginRegistry.addPluginsFromDir(PluginRegistry.java:99)
    at com.oracle.determinations.server.assess.AssessEngine.<init>(AssessEngine.java:67)
    at com.oracle.determinations.server.DSServletContext.<init>(DSServletContext.java:38)
    at com.oracle.determinations.server.DSServlet.getOrCreateContext(DSServlet.java:128)
    at com.oracle.determinations.server.DSServlet.doGet(DSServlet.java:42)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,580 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.server.current.ServerServiceCurrent>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,580 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.server.v10_2.ServerService102>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,580 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.server.v10_0.ServerService10>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,721 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created instance of plugin: com.oracle.determination
    s.server.services.server.current.ServerServiceCurrent>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,768 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created instance of plugin: com.oracle.determination
    s.server.services.server.v10_2.ServerService102>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,799 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created instance of plugin: com.oracle.determination
    s.server.services.server.v10_0.ServerService10>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,799 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.interview.current.InterviewServiceCurrent>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,799 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.interview.v10_2.InterviewService10_2>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,815 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.current.SpecificAssessServiceCurrent>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,815 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.current.GenericAssessServiceCurrent>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,815 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.v10_2.SpecificAssessService102>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,815 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.v10_2.GenericAssessService102>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,830 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.v10_0.SpecificAssessService10>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,830 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] INFO com.oracle.util.plugins.PluginRegistry - Successfully created plugin factory: com.oracle.determinations.se
    rver.services.assess.v10_0.GenericAssessService10>
    <2011-mar-25 kl 10:42 CET> <Notice> <Stdout> <BEA-000000> <10:42:58,846 WARN [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.D
    efault (self-tuning)'] WARN com.oracle.determinations.server.ServiceRegistry - Plugin directory could not be initialised.
    java.lang.IllegalArgumentException: Can not locate plugin directory 'plugins'. On the classpath
    at com.oracle.util.plugins.PluginRegistry.addPluginsFromDir(PluginRegistry.java:99)
    at com.oracle.determinations.server.ServiceRegistry.initRulebaseServices(ServiceRegistry.java:89)
    at com.oracle.determinations.server.ServiceRegistry.<init>(ServiceRegistry.java:78)
    at com.oracle.determinations.server.DSServletContext.<init>(DSServletContext.java:41)
    at com.oracle.determinations.server.DSServlet.getOrCreateContext(DSServlet.java:128)
    at com.oracle.determinations.server.DSServlet.doGet(DSServlet.java:42)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)>

  • SDM failed when deploying a Web Dynpro application

    SDM failed when deploying a Web Dynpro application - I get the following error message:
    Sep 19, 2006 2:25:34 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : eix-blade-011
    SDM port : 50118
    URL to deploy : file:/D:/DOCUME1/AMRM1.AZI/LOCALS1/Temp/temp43621sap.comwelcome.ear
    Deployment exception : Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011
    Inner exception was :
    Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011

    Amr Azim,
    You must have logged in thru a dedicated connection to any server through say VPN before deploying.This way the sdm uses the same login as that of already establised connection.
    So 'sign of'  all connections to any servers before deploying and redeploy your application.Here you will be prompted to supply the sdm password and deployment shall proceed.

  • ClassCastException when deploying jsf war on Weblogic 10.3.2

    Hello everybody,
    We 're having an issue when deploying jsf war on Weblogic 10.3.2
    The war works fine on Tomcat 6.
    When deploying on Weblogic we got the following exception:
    java.lang.ClassCastException: weblogic.xml.jaxp.RegistryXMLReader cannot be cast to org.xml.sax.XMLReader
    I've already put <prefer-web-inf-classes>true</prefer-web-inf-classes> in weblogic.xml
    After "googling", people suggest to remove xml-apis jar from WEB-INF/lib, but doing so results in other exceptions.
    Is there any fix for this issue? Please help it's been more than a month that we are crawling in the dark with this error.
    Thanks in advance.

    Hello everybody,
    We 're having an issue when deploying jsf war on Weblogic 10.3.2
    The war works fine on Tomcat 6.
    When deploying on Weblogic we got the following exception:
    java.lang.ClassCastException: weblogic.xml.jaxp.RegistryXMLReader cannot be cast to org.xml.sax.XMLReader
    I've already put <prefer-web-inf-classes>true</prefer-web-inf-classes> in weblogic.xml
    After "googling", people suggest to remove xml-apis jar from WEB-INF/lib, but doing so results in other exceptions.
    Is there any fix for this issue? Please help it's been more than a month that we are crawling in the dark with this error.
    Thanks in advance.

  • Problem with fonts in forms when deployed on web

    Hi everybody out there! Please help me out. My problem is:
    I have used developer server to deploy forms on web, but when a
    form is shown on web, it takes some default settings for fonts
    and colors instead of retaining the original colors and fonts
    that i chose during creating forms. I want that forms retain
    their original colors and fonts when deployed on web. How would
    i do that ?? Someone told me to check the Registry.dat file but
    i do not how to change the settings in registry.dat file. So
    help me out and tell me how would i change color and font
    settings for forms being shown on web by web app. server.
    Thanking you in anticipation,
    Cheema
    null

    Hello Neeraj!
    The problem is no resolved:) In the Visual Attribute Group I changed the Font Weight to Bold in the Property Palette.
    Thanks a lot for showing interest for my problem.
    Regards
    Roar

  • App Insights for web application not working when deployed to Dev server

    App Insights is not sending telemetry data for ASP.NET MVC web *requests* (page views from the JS instrumentation are fine) when the app is deployed to the Dev or Test IIS servers.  On local IIS express it works perfectly fine.    I have
    no idea how to troubleshoot this problem.
    Bert Jackson

    - the AI.config file is both in the root of the site, and the /bin folder (which was confusing the other day).  Both are correct.
    - it looks like a local browser can go to https://dc.services.visualstudio.com (it results in a 403 since its just a GET to the root).  During this test, I found that this server did NOT have the Root trust certificate (Baltimore cybertrust), which
    would cause problems when using IE locally to browse the app; the javascript AI logging was not working, because it couldnt fetch the ai.0.js file).  I got the proper root certificate installed on the server, but request logging still not working.  I
    dont believe the firewall is a problem.
    - I've verified that all binaries are indeed deployed in to the bin folder on the server
    - web.config does have the AI http module; I've verified via logging that the ApplicationInsightsWebTracking is loaded.  However, I have custom Context/Telemetry initializers, and their Initialize() methods are *NOT* being called when deployed on the
    server.  I've tried both ways of registering the initializers; via code in the Application_Start() event and also in the ApplicationInsights.config file.
    I don't know how to troubleshoot any further, to figure out if AppInsights is actually *trying* to send telemetry out and failing, or if its not actually even trying.
    Bert Jackson

  • Applet works in JDeveloper, but not when deployed to OC4J

    I am working on an applet version of the BI Beans java client application. It works fine when running in JDeveloper (applet viewer), but fails when deployed to OC4J. The applet shows a red X, with a message in the status bar saying "Loading Java Applet Failed...". Contents of java console are as follows:
    java.lang.NoClassDefFoundError: oracle/dss/selection/step/Step
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Any one have any ideas how to chase this one down?
    Here is the message that JDeveloper shows when it runs the applet. I have gone thru this and ensured that all these references are selected in my .deploy settings:
    C:\JDeveloper\jdk\bin\javaw.exe -ojvm -Xbootclasspath/a:C:\dev\jdev\Workspace1\TestClientApp\classes;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\biaddinsrt.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\biamlocal.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bicmn.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bidataclt.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bidatacmn.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bidatasvr.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\biext.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bipres.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bidata-nls.zip;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bipres-nls.zip;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\bicmn-nls.zip;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\biaddins-nls.zip;
    C:\JDeveloper\jdev\lib\ext\..\..\..\jlib\LW_PfjBean.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\jlib\share.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\jlib\jewt4.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\jlib\jewt4-nls.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\infobus\lib\infobus.jar;
    C:\JDeveloper\BC4J\lib\bc4jmt.jar;C:\JDeveloper\BC4J\lib\collections.jar;
    C:\JDeveloper\BC4J\lib\bc4jct.jar;
    C:\JDeveloper\lib\xmlparserv2.jar;
    C:\JDeveloper\jlib\jdev-cm.jar;
    C:\JDeveloper\j2ee\home\lib\jndi.jar;
    C:\JDeveloper\jlib\regexp.jar;
    C:\JDeveloper\jlib\share.jar;
    C:\JDeveloper\jlib\uix2.jar;
    C:\JDeveloper\jdbc\lib\classes12.jar;
    C:\JDeveloper\jdbc\lib\nls_charset12.jar;
    C:\JDeveloper\j2ee\home\lib\ojsp.jar;
    C:\JDeveloper\j2ee\home\jsp\lib\taglib\ojsputil.jar;
    C:\JDeveloper\j2ee\home\oc4j.jar;
    C:\JDeveloper\j2ee\home\lib\servlet.jar;
    C:\JDeveloper\jdev\lib\ojc.jar;
    C:\JDeveloper\jdev\lib\ext\..\..\..\bibeans\lib\olap_api_92.jar;
    C:\JDeveloper\jdev\lib\jdev-rt.jar;
    C:\JDeveloper\BC4J\lib\bc4jhtml.jar;
    C:\JDeveloper\BC4J\lib\datatags.jar;
    C:\JDeveloper\BC4J\lib\bc4juixtags.jar;
    C:\JDeveloper\BC4J\lib\bc4j_jclient_common.jar
    Any assistance would be appreciated.
    s.l.

    i have the same problem
    i cant load my applet on OC4J , i am wondering know how Oracle canot solve this problem

  • Unable to load data / NullReferenceException only on certain tables when deployed

    I have a LightSwitch app that works fine when being debugged locally. But it has a strange issue when deployed as a Cloud Service to Azure. I have two Silverlight grid controls on the page which display a red x and give the error, "Unable to load data.
    Please check your network connection and try loading again."
    Several other queries are running on this page and correctly pull data from other tables in the database. The queries that run correctly are tied to label or text box controls.
    The queries that fail, return an HTTP Status code 500 (Internal error). If I try and pass the query to a constructor as an IVisualCollection,
    and I wrap the call in a Try block,
    the Inner Exception is "Object reference not set to an instance of an object." So, a Null Reference Exception. Checking for null before the constructor call and popping up a message box if the query was null as a means of debugging yielded nothing. I
    create these helpers all over. Only two are causing an issue and only when deployed. In addition, running the query in the Management Portal also completes fine.
    Try
    'Check for nulls
    If (Me.qQuoteByFirm Is Nothing) Then
    Me.ShowMessageBox("qQuoteByFirm", "Error", MessageBoxOption.Ok)
    End If
    If (Me.qQuoteByFirm.Screen Is Nothing) Then
    Me.ShowMessageBox("Screen", "Error", MessageBoxOption.Ok)
    End If
    If (New ModalWindowHelper(Me.qQuoteByFirm, "mwAddQuote", "Quote") Is Nothing) Then
    Me.ShowMessageBox("Modal", "Error", MessageBoxOption.Ok)
    End If
    'Create helper
    Me.HelperAddQuote = New ModalWindowHelper(Me.qQuoteByFirm, "mwAddQuote", "Quote")
    Catch ex As Exception
    Dim err As String = ""
    For Each item In ex.Data
    err = err & item.ToString()
    Next
    err = err & ex.InnerException.ToString() & vbCrLf & _
    ex.Message.ToString() & vbCrLf & _
    ex.StackTrace
    Me.ShowMessageBox(err, "Error", MessageBoxOption.Ok)
    End Try
    'Constructor
    Public Sub New(ByVal visualCollection As IVisualCollection, _
    ByVal dialogName As String, _
    Optional entityName As String = "")
    _collection = visualCollection
    _dialogName = dialogName
    _entityName = If(entityName <> "", entityName, _collection.Details.GetModel.ElementType.Name)
    _screen = _collection.Screen
    End Sub
    The actual construction of the queries does not seem to matter. I've tried several variations along with requesting the entire table. Same result. However, this only occurs on two specific tables. Grid controls displaying other tables on other screens work
    properly.
    Here's the weird part. If I comment out the call to the constructor, I can gain access to the gird control and add data to it even through the red box remains. If I refresh the grid control, the data disappears as if it wasn't saved or isn't there. But inspecting
    the table in SQL Azure Management Portal shows that the data was properly populated in the table.
    The app and the database are clearly connected and able to communicate fine. So why when reading from these two tables (but not writing to) are my grid controls throwing exceptions? Why does this only happen when deployed? What other techniques can I use to
    get more information?

    I am not very familiar with Lightswtich. But 500 is a server side error. Do you manually code the server side, or does Lightswitch automatically generates the server side code? If you manually coded, then please try to catch exceptions in
    your server side code. If the code is automatically generated, you may want to consult a Lightswitch forum on how to troubleshooting such issues. What's more, when you refresh the grid, what code are invoked? Try to check that piece of code and see if there're
    any problems, such as you reload the grid with empty data.

  • Error When Deploying a planning application

    I've prepared a planning application in hyperion 9.3;
    Validation is successful but when deploying the application deployment fails with the message "Action aborted. Please check the Job Status for results."
    Job status shows:
    ===============================================================================
    Started Time : Sunday, March 08, 2009 6:39:27 PM
    Submitted Time : Sunday, March 08, 2009 6:39:27 PM
    Last Updated Time : Sunday, March 08, 2009 6:39:29 PM
    User Name : amjad
    Process Name :
    Thread : 0
    Server : DimServer
    Detail : Initiating Product Action...
    Inspecting Deployment History...
    Generating Headers and Callback Information...
    Generating Application Data...
    Preparing Product Request...
    Posting Product Request...
    Product Response:550...
    Action aborted.
    ================================================================================
    any suggestion?

    Hi,
    If you are going to be using EPMA the first thing to do is to make sure you have installed all the patches for EPMA and Planning.
    They are available from [metalink3|https://metalink3.oracle.com/od/faces/index.jspx] , planning is at patch 9.3.1.1.10 and EPMA has around 5 patches.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Use Global Conditions when Deploying an Application to a User

    Hi,
    Use Global Conditions when Deploying an Application to a User:
    I would like to deploy App-V Application with User centic in mind. The problem is that when the user login to a specefic typ of desktop the application shall be deployed. But if the use login on there primary device or some other
    device with same SLA the Application shall not be deployed.
    I think I can use Global Conditions to solve this. I have read about GC and it looks like I could greate a GC rule that deploy the software if the computer is in an AD-group or maybe becas all this computer starts with same prefix, sp maybe
    if the computernamn starts with PC the application will get deployed.
    The issue is that there is differant SLA on the computers that the User login to. 
    Or what mor can I do?
    /SaiTech

    Just keep in mind this puts a load on AD, a Domain Controller can get tickled silly by these Global Conditions running from each of your Clients, depending on the scale of your environment it can have an impact. It's a great idea GC's, just need to consider
    what load you are putting on the infra when they run.
    Might not be an issue for\to you, worth nothing all the same.
    Robert Marshall | This forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs

Maybe you are looking for

  • My ipod shows up in itunes but

    but it doesn't seem to want to work when I disconnect it from my computer. I get the folder icon and its useless

  • Clone 24" iMac into Mac mini

    I plan to purchase a Mac mini for my entertainment center. I rather not go through installing everything I need (3rd party wise). I was thinking about cloning my late 06 iMac since it has everything I need already. The iMac is completely up-to-date.

  • Non-standarc character

    Hello, I am facing some issues with non-statdard characters. When the user copy and pasts information from MS word to text area of the form, it sometimes converts ' and " into curly ' or and curly " respectively. When this is entered into the databas

  • Where is the OCA605290.zip file ?

    Where can I download OCA605290.zip file in order to resolve the error message, "OCA-30002: ubofscr function not supported" for on my Oracle8i Lite trial CD-ROM, there is no OCA605290.zip file from the \WIN32 folder. null

  • Bad design

    I might be way off the mark here, but bear with me a second... Photoshop CS5, Camera Raw 6.1, and now Lightroom 3 can all use Lens Profiles to correct images. You can share profiles with the Photoshop community is if you have Lens Profile Creator, bu