WLW deployment of WebApp fails, where manual deployment succeeds

Hi,
I have installed WL Platform 8.1 SP4 on W/XP Professional.
I am attempting to do the most introductory task... i.e. deploy a web application consisting of two pages using WLW. The files are:
<pre>SimpleForm.html</pre>
<pre>SimpleFormHandler.jsp</pre>
I wanted to access the web app as follows:
http://localhost:7001/TestProj/SimpleForm.html
The <pre>SimpleFormHandler.jsp</pre> is registered as the form's action method. When the form is submitted, the JSP simply displays the form data.
It works as expected when I build the WAR file manually and deploy it by copying the file to the 'application' directory for autodeployment.
But I am baffled how to do this using WLW. Which is really the purpose of my experiment.
Hopefully, you can guide me here. I have listed the steps I've taken so maybe you can identify my misstep and set me back on the right path.
To keep things <i>real</i> simple, here is my Domain configuration, HTML form and JSP file.
<pre>-- TestDomain: Basic WebLogic Server Domain Template -----------
Custom: The only thing I customise is the Name = "adminserver".
I select JRockit and Development Mode.
Configuration Name: TestDomain
----------------------------------------------------------------</pre>
<pre>-- SimpleForm.html -----------------------------------------------
<html>
<head>
</head>
<body>
<h1>This is a test html file</h1>
<form action="SimpleFormHandler.jsp" method="get">
Enter first name: <input type="text" name="firstName">
<input type="submit">
</form>
</body>
</html>
-------------------------------------------------------------------</pre>
<pre>-- SimpleFormHandler.jsp ------------------------------------------
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<html>
<head>
<title>
Web Application Page
</title>
</head>
<body>
<p>
New Web Application Page
<% String firstName=request.getParameter("firstName");
out.println("Your first name is: " + firstName); %>
</p>
</body>
</html>
--------------------------------------------------------------------</pre>
Here is the steps I followed.
<b>01) WLW Menu: File->New->Application...</b>
-> Empty Application (I also tried "Default Application")
-> Directory: <devel_path> \TestApp
-> Server: <domain_path> \TestDomain
-> >>Create<<
<b>02) WLW Menu: File->New->Project...</b>
-> Web Project
-> Project name : TestProj
-> >>Create<<
<b>03) WLW Menu: File->New->JSP File</b>
-> JSP File
-> File name: SimpleFormHandler.jsp
-> >>Create<<
Edit the file to look like the file above.
<b>04) WLW Menu: File->New->JSP File</b>
-> HTML File
-> File name: SimpleForm.html
-> >>Create<<
Edit the file to look like the file above.
<b>05) WLW Menu: File->Save</b>
<b>06) WLW Menu: Tools->Weblogic Server->Server Properties...</b>
-> Hostname: localhost
-> Use credentials below:
Username: system
Password: weblogic
All other fields are correct.
This immediately results in a deployment error.
<pre>"ClassNotFoundException: weblogic.servlet.WlwJSPServlet"</pre>
This is the result of a bogus entry in weblogic.xml.
Edit <pre>weblogic.xml</pre> to comment out the WlwJSPServlet, so it becomes:
<pre> <!--
<jsp-param>
<param-name>jspServlet</param-name>
<param-value>weblogic.servlet.WlwJSPServlet</param-value>
</jsp-param>
--></pre>
<b>07) WLW Menu: File->Save</b>
F7 (to rebuild and redeploy)
More deployment errors, since web.xml also defines Listeners, Filters, and ....
<b>08) WL Builder: Open TestApp</b>
Servlets: Delete 'action'
Filters: Delete 'PageFlowJspFilter'
Listeners: Delete '...WebappContextListener'
Tag Libraries: Delete netui-tags-[html,databinding,template].tld
File->Save
<b>09) WLW Menu: F7 (to rebuild and redeploy)</b>
This time I get a new warning:
<pre><The current version 0 for DataIdentifier DataIdentifierID: 1 does not match with incoming version 4 for a one-phase update.></pre>
<b>10) Check the WLS Console</b> <pre>http://localhost:7001/console</pre>
Deployments -> General
          TestApp EXPLODED EAR
Deployments -> Descriptors -> application.xml
<pre> <application>
<display-name>TestApp</display-name>
<module>
<web>
<web-uri>TestProj</web-uri>
<context-root>TestProj</context-root>
</web>
</module>
</application></pre>
<b>11) Now try to access the web application:</b>
http://localhost:7001/TestProj/SimpleForm.html
     -> Enter first name: Artimus
     -> >> SUBMIT QUERY <<
This causes the following page to attempt to open:
http://localhost:7001/TestProj/SimpleFormHandler.jsp?firstName=Artimus
Back on the WLS console the following error:
<pre>NoClassDefFoundError: com/bea/wlw/runtime/core/debug/DebugContext</pre>
The full details:
<pre>-- ERROR LOG ---
<29/08/2005 08:47:11 PM EST> <Error> <HTTP> <BEA-101017> <[ServletContext(id=548
7457,name=TestProj,context-path=/TestProj)] Root cause of ServletException.
java.lang.NoClassDefFoundError: com/bea/wlw/runtime/core/debug/DebugContext
-----------------------------------------------------------------------</pre>
<b>12) WLW Menu: Tools->Weblogic Server->Deployment->Undeploy</b>
Verified no apps deployed via http://localhost:7001/console
<b>13) Now test a manual deployment:</b>
cd {TestProj}\
jar -cf TestProj.war *
copy TestProj.war (domain}\applications
<b>14) Verified TestProj deployed as Web Application via</b>
     http://localhost:7001/console
<b>15) Access the web application from browser with:</b>
http://localhost:7001/TestProj/SimpleForm.html
     -> Enter first name: Bach
     -> >> SUBMIT QUERY <<
<b>16) This opens the following page:</b>
http://localhost:7001/TestProj/SimpleFormHandler.jsp?firstName=Bach
<b>17) The JSP displays the following in the browser window:</b>
"New Web Application Page Your first name is: Bach "
So manual deployment succeeded!
--- end ---
I would really appreciate some suggestions.
Regards,
Matt.

Thanks for the response.
I find that if I don't perform step 8, (i.e. remove the action, filter, servlets, and pageflows), then the deployment fails, since it is expecting to find modules that perform these functions.
I am a little surprised that the Default Application, doesn't also provide default entries for these functions.
For instance, I naively (and wrongly) anticipated that if I create a Default Application and make no changes, then I should be able to immediately deploy it. Unfortunately, this is not possible, since it complains about the entries in web.xml and weblogic.xml.
Perhaps the minimum WebApp deployment requires that I provide the modules in the default descriptors?
I am beginning to wonder what the absolute minimum application is that WLW can be used to deploy.
Regards,
Matt.

Similar Messages

  • Packaging/deploying a webapp client to already deployed EJBs

    I have a webapp/ejb deployed on WLS 6.1. If it matters, the EJBs are
    deployed in jar files but the webapp component is deployed in exploded
    directory format.
    Now I want to deploy another webapp that uses the same EJBs. At this
    point in development, I am attempting to deploy this in exploded
    directory format as well. I have run ejbc manually against the original
    jars to create the EJB deployable units containing generated WL classes.
    This also created a ejb-client.jar, but it does not contain any impl
    classes for the home or remoted interfaces.
    I tried placing the ejb-client.jar in my WEB-INF/lib but it doesn't seem
    to be able to find the interface classes. Perhaps the exception I'm
    getting does not mean what I think it does. It is included below.
    I also tried adding the generated impl classes to the ejb-client.jar
    manually, but this didn't work either. I have read the
    packaging/deploying docs but don't seem to find this issue addressed
    directly. From all I know, I have done this correctly, but obviously I
    am missing something somewhere.
    Thanks in advance for your consideration.
    <May 10, 2002 1:53:57 PM CDT> <Error> <HTTP>
    <[WebAppServletContext(9605583,adminApp,/adminApp)] Servlet failed with
    Exception
    java.lang.ExceptionInInitializerError
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:42)
    at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:30)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:277)
    at java.lang.Class.newInstance0(Class.java:301)
    at java.lang.Class.newInstance(Class.java:254)
    at javax.rmi.CORBA.Util.createDelegateIfSpecified(Util.java:342)
    at javax.rmi.CORBA.Util.<clinit>(Util.java:54)
    at
    javax.rmi.PortableRemoteObject.createDelegateIfSpecified(PortableRemoteObject.java:182)
    at
    javax.rmi.PortableRemoteObject.<clinit>(PortableRemoteObject.java:61)
    at
    net.verizon.storm.util.DataBroker.initialize(DataBroker.java:102)
    at
    net.verizon.storm.util.DataBroker.getInstance(DataBroker.java:158)
    at
    net.verizon.storm.util.OrderDispatcher.<init>(OrderDispatcher.java:70)
    at
    net.verizon.storm.admin.OrderService.startOD(OrderService.java:159)
    at
    net.verizon.storm.admin.OrderService.processRequest(OrderService.java:104)
    at
    net.verizon.storm.admin.OrderService.doPost(OrderService.java:266)
    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(WebAppServletContext.java:2456)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Caused by: java.lang.RuntimeException: could not find or instantiate any
    UtilDelegate class
    at
    weblogic.iiop.UtilDelegateImpl.<clinit>(UtilDelegateImpl.java:72)
    ... 24 more

    Hi.
    I tried placing the ejb-client.jar in my WEB-INF/lib but it >>doesn't seem to beable to
    find the interface classes. Perhaps
    the exception I'm getting does not mean what I think it does. >>It is includedbelow.
    It seems fine since it is the way your webapp always to use its EJB client jar.
    I also tried adding the generated impl classes to the ejb-
    client.jar manually, but this didn't work either.Nope, you should never do this since Impl classes are used on Server Side ( webapp
    treated as client of EJB in this case ) only.
    It is so hard for us to analyze the problems without a test case, I would suggest
    you to create a support case via http://support.bea.com/welcome.jsp to BEA support
    for detailed work.
    Thanks.
    Ji Zhang
    Developer Relations Engineer
    BEA Support

  • Manual Deployment (Very Urgent)

    Hi,
    What is manual Deployment, Why do we use Manual deployment. I guess manual deployment is done after automatic deployment.
    What are the prerequisites for performing manual deployment.
    How is it different from automatic Pull/ Push deployment??
    Please help me out.
    Thanks,
    My

    Hi,
    Please Help. This is very urgent.
    I modified the above program in this manner:
    loop at IOBJ. (selection-screen variable)
    loop at it_RSZSELECT.
    it_result-iobj = iobj.
    it_result-iobjnm = it_RSZSELECT-iobjnm.
    select * from rszeltxref
    where teltuid = it_RSZSELECT-eltuid
    and objvers = 'A'.
    IF rszeltxref-laytp = 'FIX'.
    UPDATE rszeltxref SET laytp = 'AGG'.
    ENDIF.
    endselect.
    endloop.
    endloop.
    Rollback Work.
    Inclusion of this statement did not help in any way.
    Regards

  • Tomcat Manual Deployment

    Hi,
    I'm trying to manually deploy a project (form, servlet, java class, jsp) but I put the project into ROOT folder. I think I'm wrong because when the form executes post method on the servlet Tomcat cannot find it and gives me Error HTTP 404(resource not available). But if I try to put the project into a folder inside webapps - at the same level of ROOT- the server cannot find even the form .Must I change something into any configuration file (C:\Programmi\Apache Software Foundation\Tomcat 5.5\conf) ?
    Does somebody can explain me what is the right way to manually deploy? What configuration file have I to modify and in which way?
    Thank you!!

    The directory where you have to put all your project files is /var/lib/tomcat6/webapps/ROOT. - It is on ubuntu 9.10.
    You do not need to modify any files for deploying your project.
    I put my project files, which are:
    META-INF folder which has contex.xml and MANIFEST.MF files in it.
    WEB_INF folder which has classes, libraries and web.xml file in it.
    And all jsp, html, css and etc..
    And my project runs without any problem.
    Edited by: peliukasss on Apr 28, 2010 12:14 PM

  • Client Install Issue - SCCM 2012 R2 - Manual Deploy Installed ok

    Hello, I have sccm 2012 configured with 2,000 machine approx. It is been used mainly as a Software Deployment tool for now. On checking a recent IE10 upgrade, I noticed that there is a number of machines that do not have the client installed (and thus did
    not upgrade IE). I picked 1 machine, searched in SCCM - had no client. I checked all relevant settings:
    Boundary for Client in question - ok
    Local Client Settings (ip,dns,no firewall, ping sccm ok and vice versa etc).
    Once i right clicked to deploy the client, it installed no problem. I checked the ccmsetup log file and the only info it had was from the time that the client was manually deployed (I will attach the log below anyway). I am really puzzled as to why the client
    did not install and if this is the issue why IE is not upgrading (it is hard to pinpoint as there are 250 sites approx). The automatic install task works no problem on other machines once the machine goes online.
    Any help, would be great. Here is the log (I am fairly new to SCCM btw):
    SCCM 2012 R2 - Windows 7 SP1 32 Bit
    ==========[ ccmsetup started in process 7196 ]==========    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    Running on platform X86    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    Launch from folder C:\Windows\ccmsetup\    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    CcmSetup version: 5.0.7958.1401    ccmsetup    05/02/2015 16:28:39    4100 (0x1004)
    In ServiceMain    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    SslState value: 224    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPPORT:    80    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSPORT:    443    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSSTATE:    224    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMHTTPSCERTNAME:        ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    FSP:    COLSCCM01.LC-UK.ORG    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    CCMFIRSTCERT:    1    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Retry time:       10 minute(s)    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MSI properties:    INSTALL="ALL" SMSSITECODE="COL" FSP="COLSCCM01.LC-UK.ORG" SMSCACHESIZE="10240" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"  
     ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Source List:    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      \\COLSCCM01.lc-uk.org\SMSClient    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      \\COLSCCM01.LC-UK.ORG\SMSClient    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    MPs:    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
                      COLSCCM01.lc-uk.org    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    No version of the client is currently detected.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Updated security on object C:\Windows\ccmsetup\.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Sending Fallback Status Point message to 'COLSCCM01.LC-UK.ORG', STATEID='100'.    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Failed to get client version for sending messages to FSP. Error 0x8004100e    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    Params to send FSP message '5.0.7958.1401 Deployment '    ccmsetup    05/02/2015 16:28:39    500 (0x01F4)
    State message with TopicType 800 and TopicId {19607F6A-0C46-488C-B28D-36640FB0DF94} has been sent to the FSP    FSPStateMessage    05/02/2015 16:28:40    500 (0x01F4)
    Running as user "SYSTEM"    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Detected 434753 MB free disk space on system drive.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Checking Write Filter Status.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    This is not a supported write filter device. We are not in a write filter maintenance mode.    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=COL))'    ccmsetup    05/02/2015 16:28:40    500 (0x01F4)
    OperationalXml '<ClientOperationalSettings><Version>5.00.7958.1000</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F0308201D8A00302010202104A263F5C34E3AAAA4C178EF33CA94377300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303630383134343831315A180F32313134303531363134343831315A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100A4FF6866BC9622545F811F8008ABDC534E96C9699A3354E990CADB04B1399B29EB80FB844425DEEDD9FE680C57AA0FE05D42CF1D431BB69080D4E7ED91A8255739089A83E4836F28B09331C100B0BAD81AD795EFD01C9ECF8DCE2BE03B52EE3AC35E7003B728E0FA56F145279301189388F3FC90A6C3DA5342C61230550C2B79DECB64AC0958C6DE2D5BF83C3EA29126E231FBEAADBD632F65AF41AC3267DB3986929C46A08AF0BF925A40E15A346B38219CC62C6C0BAC8990C05EA04037458F1853E251D8C16946F845D46CB47884D9EB00543AC8B02A7C099B53F7DE1EBD11AA1272476E5AAF55B2CC38122B62C751D988C81A07D06F87A9F7980D2B3560A90203010001A3383036301E0603551D11041730158213434F4C5343434D30312E6C632D756B2E6F726730140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100A0DE29D627EB45EF2D0074AD578B62CE9007918B4316351DB2DBEFF2D0DF52C0FF58B6DE3405C88572ECCFAF2A7B335B234FE7D1E5B0FDA20548FEFE4B9E6AFB45E77627EDB70E2378A3135FB1FC34C2308F0FBD1ADD890DD08D8D6081B73FFF86DE87DBF678A7CAD73AE32BF6EB3B9D1E4E0380D7FBE3E9F9EF49339031636F2B3CC60989B8443B91F9F69F5837025B6CAE64E2D1837FAF712186A02567EA87F9E82FD170C4DEA61DC61C16226450FCBE062948F2219FB5801DF3AF73443349421A7228F5E1372B5CA165D8ABAB9D1B3FEAF22705A473AAAB034C2A289AA7A507550050D6516C2D7BECDE5686F17CC66FBB7D2C439F15644EBF9EF7E8402109</SiteSigningCert></SecurityConfiguration><RootSiteCode>COL</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=COL FSP=colsccm01.lc-uk.org SMSCACHESIZE=10240</CommandLine> </CCM><FSP> <FSPServer>COLSCCM01.lc-uk.org</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState"
    Value="0" /></Capabilities><Domain Value="lc-uk.org" /><Forest Value="lc-uk.org" /></ClientOperationalSettings>'    ccmsetup    05/02/2015 16:28:41    500
    (0x01F4)
    Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    The MP name retrieved is 'COLSCCM01.lc-uk.org' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>'    ccmsetup  
     05/02/2015 16:28:41    500 (0x01F4)
    MP 'COLSCCM01.lc-uk.org' is compatible    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Retrieved 1 MP records from AD for site 'COL'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Retrived site version '5.00.7958.1000' from AD for site 'COL'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    SiteCode:         COL    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    SiteVersion:      5.00.7958.1000    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Only one MP COLSCCM01.lc-uk.org is specified. Use it.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Searching for DP locations from MP(s)...    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Current AD site of machine is Millbank    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Local Machine is joined to an AD domain    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Current AD forest name is lc-uk.org, domain name is lc-uk.org    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    DhcpGetOriginalSubnetMask entry point is supported.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Begin checking Alternate Network Configuration    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Finished checking Alternate Network Configuration    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {743579BD-D66A-4BF9-B487-2AAC075B9473} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {8F25ACE0-AE8A-45DD-BF3D-F1315E2B9974} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {8AE4D673-90E8-4FCF-AE50-79474ADC6190} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Adapter {9AA2CA9C-0C0A-48E3-B67E-F9E574AE9DB2} is DHCP enabled. Checking quarantine status.    LocationServices    05/02/2015 16:28:41    500 (0x01F4)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="COL"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Millbank"/>
        <Forest Name="lc-uk.org"/>
        <Domain Name="lc-uk.org"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.103.38.0" Address="10.103.38.10"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    '    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{57972056-54D4-461F-B818-D3420A0B5C51}</ID><SourceHost>LCD14572</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:LCD14572:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>COLSCCM01.lc-uk.org</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2015-02-05T16:28:41Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1084"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'    ccmsetup    05/02/2015
    16:28:41    500 (0x01F4)
    CCM_POST 'HTTP://COLSCCM01.lc-uk.org/ccm_system/request'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Received header '<Msg SchemaVersion="1.1">
        <ID>{48D22538-0FEA-44E6-AAD2-1829DDED2223}</ID>
        <SourceID>GUID:A5143C3E-EA22-4B93-BFF5-B8B859F869F5</SourceID>
        <SourceHost>COLSCCM01</SourceHost>
        <TargetAddress>direct:LCD14572:LS_ReplyLocations</TargetAddress>
        <ReplyTo>MP_LocationManager</ReplyTo>
        <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
        <Priority>3</Priority>
        <Timeout>600</Timeout>
        <TargetHost>LCD14572</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2015-02-05T16:28:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="2378"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082019106092A864886F70D010702A08201823082017E020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015D30820159020101303630223112301006035504031309434F4C5343434D3031310C300A06035504031303534D5302106A638C8D6A89DE904525D14326BE4DB0300906052B0E03021A0500300D06092A864886F70D01010105000482010027BAE95F5B0DD9F75743E1E40A189091900F78F19367C2A8328F823C63F24229608E7CF02FF2FE76FC61C6A61EF0FE8F19AC75755B88124B13964AE58F971DAB67E47B4DDCAA943B4C27F7AF9B5A0AD1DE956A3AACA26965F5FDAC8659E6263DBB55E025FB305C665AC1AA49972CC937A757EC14F1097DA27AB9998D7CAE332EC135A937A80285C87448AD7B4F4ED059063BCB5032920C65CE16FD32475CD395B279021F62E5C3B534697EDCD68A98D2A654379CCA17056F7B4FAB0346242CE56681F405DB9700FD766FDBD584BB69A4AC088BF3B971BE8B05B723701A22B9D76BB5C063F1BD32B56DB7B3BDC6D827E3D90106F3C1145E04B0629528EA24BD37</Property><Property
    Name="AuthSenderMachine">COLSCCM01;COLSCCM01.lc-uk.org;</Property><Property Name="MPSiteCode">COL</Property></Hook></Hooks><Payload Type="inline"/></Msg>'    ccmsetup  
     05/02/2015 16:28:41    500 (0x01F4)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="COL" MasterSiteCode="COL"
    SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002" Signature="http://COLSCCM01.lc-uk.org/SMS_DP_SMSSIG$/COL00002"/><ADSite
    Name="Millbank"/><IPSubnets><IPSubnet Address="10.20.0.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property
    Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>COLSCCM01.lc-uk.org</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage
    FullPackageID="COL00002" FullPackageVersion="2" FullPackageHash="DB3D5D115FC93F6275817FB9791864D98D4AF6897339B9D4AB1C0DE456C240A8" MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="7" ProgramEnabled="false"
    LastModifiedTime="30376953;932870912" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'    ccmsetup    05/02/2015
    16:28:41    500 (0x01F4)
    Found local location 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Discovered 1 local DP locations.    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    PROPFIND 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Got 401 challenge Retrying with Windows Auth...    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    PROPFIND 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002'    ccmsetup    05/02/2015 16:28:41    500 (0x01F4)
    Using DP location http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    GET 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002/ccmsetup.cab'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Got 401 challenge Retrying with Windows Auth...    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    GET 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002/ccmsetup.cab'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    C:\Windows\ccmsetup\ccmsetup.cab is Microsoft trusted.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Successfully extracted manifest file C:\Windows\ccmsetup\ccmsetup.xml from file C:\Windows\ccmsetup\ccmsetup.cab.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Retrieved client version '5.00.7958.1000' and minimum assignable site version '5.00.7845.1000' from manifest    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Checking compatibility of site version '5.00.7958.1000', expect newer than '5.00.7845.1000'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Site version '5.00.7958.1000' is compatible. Client deployment will continue.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Location 'http://COLSCCM01.lc-uk.org/SMS_DP_SMSPKG$/COL00002' passed site version check.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Loading manifest file: C:\Windows\ccmsetup\ccmsetup.xml    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Successfully loaded ccmsetup manifest file.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Checking if manifest version '5.00.7958.1000' is newer than the ccmsetup version '5.0.7958.1401'    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Running from temp downloaded folder or manifest is not newer than ccmsetup.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/vcredist_x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/vcredist_x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/vc50727_x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/vc50727_x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/WindowsUpdateAgent30-x86.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/WindowsUpdateAgent30-x64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/msxml6.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/msxml6_x64.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/msrdcoob_x86.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/msrdcoob_amd64.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'pkgmgr.exe' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'dism.exe' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'wimgapi.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/MicrosoftPolicyPlatformSetup.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'x64/MicrosoftPolicyPlatformSetup.msi' is not applicable.    ccmsetup    05/02/2015 16:28:42    500 (0x01F4)
    Item 'i386/WindowsFirewallConfigurationProvider.msi' is applicable. Add to the list.    ccmsetup    05/02/2015 1

    Hi, Yes i had a look at the log yesterday. there are errors initially, but then the install completes. I can copy the whole log here, the machine in question is LCD14572. If you could take a look would be great. Still doesnt explain why i had to manually
    push the client though:
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154539    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154539    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Received request: "2097154539" for machine name: "LCD15000" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Stored request "2097154539", machine name "LCD15000", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154539, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:05:58    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x12d8. There are now 1 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Found CCR "2097154540.ccr" in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    ======>Begin Processing request: "2097154539", machine name: "LCD15000"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    4824 (0x12D8)
    Execute query exec [sp_CP_GetPushRequestMachine] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Successfully retrieved information for machine LCD14589 from DB    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineIP] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154540    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Received request: "2097154540" for machine name: "LCD14589" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Stored request "2097154540", machine name "LCD14589", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154540, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:00    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x1d10. There are now 2 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Found CCR "2097154542.ccr" in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    ======>Begin Processing request: "2097154540", machine name: "LCD14589"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    7440 (0x1D10)
    Execute query exec [sp_CP_GetPushRequestMachine] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Successfully retrieved information for machine LCD14571 from DB    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineIP] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushRequestMachineResource] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_GetPushMachineName] 2097154542    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Received request: "2097154542" for machine name: "LCD14571" on queue: "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Stored request "2097154542", machine name "LCD14571", in queue "Processing".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154542, 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:02    3648 (0x0E40)
    ----- Started a new CCR processing thread. Thread ID is 0x1768. There are now 3 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Submitted request successfully    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Getting a new request from queue "Retry" after 100 millisecond delay.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    Sleeping for 60 minutes for queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    3648 (0x0E40)
    ======>Begin Processing request: "2097154542", machine name: "LCD14571"    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:04    5992 (0x1768)
    Execute query exec [sp_IsMPAvailable] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:05    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> The device LCD15000 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:21    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> The device LCD14589 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:23    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> The device LCD14571 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571.lc-uk.org\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:26    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> The device LCD15000.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> Attempting to connect to administrative share '\\LCD15000\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> The device LCD15000 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> ERROR: Unable to access target machine for request: "2097154539", machine name: "LCD15000",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47  
     4824 (0x12D8)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154539, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Stored request "2097154539", machine name "LCD15000", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154539, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    Execute query exec [sp_CP_SetLatest] 2097154539, N'02/05/2015 16:06:47', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    <======End request: "2097154539", machine name: "LCD15000".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:47    4824 (0x12D8)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> The device LCD14589.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> Attempting to connect to administrative share '\\LCD14589\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> The device LCD14589 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> ERROR: Unable to access target machine for request: "2097154540", machine name: "LCD14589",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51  
     7440 (0x1D10)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154540, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Stored request "2097154540", machine name "LCD14589", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154540, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    Execute query exec [sp_CP_SetLatest] 2097154540, N'02/05/2015 16:06:51', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    <======End request: "2097154540", machine name: "LCD14589".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:51    7440 (0x1D10)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> The device LCD14571.lc-uk.org does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> Trying the 'best-shot' account which worked for previous CCRs (index = 0x0)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> Attempting to connect to administrative share '\\LCD14571\admin$' using account 'LC-UK\VAdmin'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account LC-UK\VAdmin (00000035)    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> The device LCD14571 does not exist on the network. Giving up    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    ---> ERROR: Unable to access target machine for request: "2097154542", machine name: "LCD14571",  access denied or invalid network path.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55  
     5992 (0x1768)
    Execute query exec [sp_CP_SetLastErrorCode] 2097154542, 53    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Stored request "2097154542", machine name "LCD14571", in queue "Retry".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154542, 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    Execute query exec [sp_CP_SetLatest] 2097154542, N'02/05/2015 16:06:55', 2    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    <======End request: "2097154542", machine name: "LCD14571".    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:06:55    5992 (0x1768)
    CCR count in queue "Retry" is 3.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:07:42    6564 (0x19A4)
    Sleeping for 634 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:07:43    6564 (0x19A4)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    ----- Terminated CCR processing thread. There are now 2 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:47    4824 (0x12D8)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    ----- Terminated CCR processing thread. There are now 1 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:51    7440 (0x1D10)
    Thread has been inactive too long. Closing thread    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    --- This thread is terminating due to inactivity    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    ----- Terminated CCR processing thread. There are now 0 processing threads    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:16:55    5992 (0x1768)
    Sleeping for 1 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:16    6564 (0x19A4)
    The Site Control File has not changed since the last parameter update.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:17    6564 (0x19A4)
    Updating Site Parameters    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    MP Ports: 80    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    IISPreferedPort: 80    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    MP SSL Ports: 443    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    IISSSLPreferedPort: 443    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP: COLSCCM01.lc-uk.org    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP Type: 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Default MP: [None]    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Selection Criteria:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Store:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    SSL State: 224    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Select First Certificate: 1    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Certificate Issuers:    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Checking configuration information for server: COLSCCM01.LC-UK.ORG.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Checking configuration information for server: COLSCCM01.LC-UK.ORG.    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Fallback Status Point: COLSCCM01.lc-uk.org    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Install on DC: False    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Option for installing using IP address: 0    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Sleeping for 1200 seconds...    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:18:18    6564 (0x19A4)
    Waiting for change in directory "D:\Program Files\Microsoft Configuration Manager\inboxes\ccr.box" for queue "Incoming", (30 minute backup timeout).    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:23:39  
     2876 (0x0B3C)
    Execute query exec [sp_CP_GetNewPushMachines] N'COL'    SMS_CLIENT_CONFIG_MANAGER    05/02/2015 16:28:09    2876 (0x0B3C)
    Execute query exec [sp_CP_SetPushRequestMachineStatus] 2097154468, 1    SMS_CLIENT_CONF

  • Deploying a WebApp using JMX

              IHAC who has the following problem while deploying a webapp in 6.1. I am including
              her description of the problem.
              Thanks in advance.
              i'm still playing around with deploying to the 6.1 beta wl server using the api
              calls. Although the
              following code executes, it makes the server crash when attempting to add the
              target MBean to the WebAppComponent...
              TargetMBean targetMBean = (TargetMBean)home.getMBean(managedSrv,
              "Server", domain);
              ApplicationMBean appMBean = (ApplicationMBean) home.findOrCreateAdminMBean(
              appNm, "Application", domain);
              appMBean.setPath(path);
              WebAppComponentMBean webappBean =
              (WebAppComponentMBean)home.createAdminMBean
              ( webAppNm,"WebAppComponent", domain, ppMBean);
              webappBean.setURI(warFile);
              if (targetMBean.isRegistered()){
              System.out.println("target is registered. Type is: " + targetMBean.getType());
              webappBean.addTarget(targetMBean);
              .. when the call to webappBean.addTarget(targetMBean) is made, the server console
              shows this error...
              java.lang.NullPointerException
              at java.io.File.<init>(File.java:180)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1708)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy9.findInputStream(Unknown Source)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1701)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy42.findInputStream(Unknown Source)
              at weblogic.management.configuration.ApplicationMBean_CachingStub.findInputStream(ApplicationMBean_CachingStub.java:694)
              at weblogic.j2ee.Application.retrieveEar(Application.java:425)
              at weblogic.j2ee.Application.<init>(Application.java:119)
              at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:110)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:329)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy40.addWebDeployment(Unknown Source)
              at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1066)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:315)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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(ConfigurationMBeanImpl.java:443)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:321)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              javax.management.MBeanException
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:323)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              This code attempts to deploy a war from a remote directory.
              The code in the war file is mostly the security web app sample in the wl examples
              directory roled into a war archive. this war deploys and runs ok using the console
              ("manually").
              If all the code is allowed run - crashing the server - then, after restarting
              the server
              (if the console was running), the deployment entries are in the config.xml and
              the
              'mirrored' copy of the war file shows up in the .wlnotdelete directory - from
              which it runs successfully.
              i'd appreciate any insight on what might be going on or whether the code is correct
              useage
              for deployment.
              

              IHAC who has the following problem while deploying a webapp in 6.1. I am including
              her description of the problem.
              Thanks in advance.
              i'm still playing around with deploying to the 6.1 beta wl server using the api
              calls. Although the
              following code executes, it makes the server crash when attempting to add the
              target MBean to the WebAppComponent...
              TargetMBean targetMBean = (TargetMBean)home.getMBean(managedSrv,
              "Server", domain);
              ApplicationMBean appMBean = (ApplicationMBean) home.findOrCreateAdminMBean(
              appNm, "Application", domain);
              appMBean.setPath(path);
              WebAppComponentMBean webappBean =
              (WebAppComponentMBean)home.createAdminMBean
              ( webAppNm,"WebAppComponent", domain, ppMBean);
              webappBean.setURI(warFile);
              if (targetMBean.isRegistered()){
              System.out.println("target is registered. Type is: " + targetMBean.getType());
              webappBean.addTarget(targetMBean);
              .. when the call to webappBean.addTarget(targetMBean) is made, the server console
              shows this error...
              java.lang.NullPointerException
              at java.io.File.<init>(File.java:180)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1708)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy9.findInputStream(Unknown Source)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1701)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy42.findInputStream(Unknown Source)
              at weblogic.management.configuration.ApplicationMBean_CachingStub.findInputStream(ApplicationMBean_CachingStub.java:694)
              at weblogic.j2ee.Application.retrieveEar(Application.java:425)
              at weblogic.j2ee.Application.<init>(Application.java:119)
              at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:110)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:329)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy40.addWebDeployment(Unknown Source)
              at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1066)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:315)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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(ConfigurationMBeanImpl.java:443)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:321)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              javax.management.MBeanException
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:323)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              This code attempts to deploy a war from a remote directory.
              The code in the war file is mostly the security web app sample in the wl examples
              directory roled into a war archive. this war deploys and runs ok using the console
              ("manually").
              If all the code is allowed run - crashing the server - then, after restarting
              the server
              (if the console was running), the deployment entries are in the config.xml and
              the
              'mirrored' copy of the war file shows up in the .wlnotdelete directory - from
              which it runs successfully.
              i'd appreciate any insight on what might be going on or whether the code is correct
              useage
              for deployment.
              

  • Anybody please help me in deploying my webapp

    Hi all,
    Can anybody let me know how to deploy an webapp on myjavaserver.com. I am using Sunone Studio 8. App built on JSP+Access.
    Using the Tomcat admin tool I was able to deploy it on localhost, but when I tried it on myjavaserver.com it came with an error
    Failed to connect to the url www.myjavaserver.com...
    I have the war file(myapp.war) and web.xml files on the server(myjavaserver.com). I think I am using wrong url's. Also I am not sure what needs to be updated in the xml file.(I believe its called deployment descriptor).
    The url's I used at the Tomcat admin tool was:
    www.myjavaserver.com/~xyz/myapp.war(xyz - myaccount at myjavaserver.com)
    www.myjavaserver.com/~xyz/web.xml
    Thanks a lot,
    Kits

    II believe you're supposed to use the URL ftp.myjavaserver.com, instead of www, to upload your WAR file to the server.

  • Problems with Shared Services Manual Deploy

    Hi everyone, I'm installing Oracle EPM 11.1.1.3 and deploying manually in a HPUX server, I only install in the Foundation Module, Shared Services, openLDAP and the common components, workspace, calculation manager and EPMA are out of this installation because, I only want to install Essbase, EAS and APS, but I have a problem, when I deploy the interop war I get failed on the deploy status with the next stack trace on weblogic console
    [HTTP:101216]Servlet: "HubFrameworkServlet" failed to preload on startup in Web application: "interop".
    java.lang.NullPointerException
         at com.hyperion.hub.struts.action.HUBActionServlet.initCSS(Unknown Source)
         at com.hyperion.hub.struts.action.HUBActionServlet.init(Unknown Source)
         at javax.servlet.GenericServlet.init(GenericServlet.java:256)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:278)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:507)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1723)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1700)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1620)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2770)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:889)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:333)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:26)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:139)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:815)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1222)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:433)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:891)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:333)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:26)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:139)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:815)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1222)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:433)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.NullPointerException
         at com.hyperion.hub.struts.action.HUBActionServlet.initCSS(Unknown Source)
         at com.hyperion.hub.struts.action.HUBActionServlet.init(Unknown Source)
         at javax.servlet.GenericServlet.init(GenericServlet.java:256)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:278)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:507)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1723)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1700)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1620)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2770)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:889)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:333)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:26)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
         at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:139)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:815)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1222)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:433)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    I can't past from this point, so I'm searching what's the reason, why this deployment can't work, I search with the validation tool and get the next log, it looks like theres something called hubRegistration that isn't configured and the other thing that I'm not sure is that I get a "Failed to connect to native directory." , Can someboyd help me with this?? I'll appreciate any kind of help that you can give me mates, thanks in advance and have a nice day.

    And the other part
    19:26:13,216 INFO [CSSLogger] Initializing CSS from Registry. - at com.hyperion.css.common.CSSLogger.getConfiguration(?:?)
    19:26:13,249 INFO [CSSLogger] Trying to get Registry Instance - at com.hyperion.css.common.CSSLogger.<init>(?:?)
    19:26:13,314 INFO [CSSLogger] Got Registry Instance - at com.hyperion.css.common.CSSLogger.<init>(?:?)
    19:26:13,435 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.cacheRefreshInterval has value 60 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,437 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.group.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,438 DEBUG [CSSLogger] Property Name: spi.provider.common.native.role.nameAttribute has value cn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,439 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.group.objectclass.entry has value group?member - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,441 DEBUG [CSSLogger] Property Name: spi.provider.common.native.ctxFactory has value com.sun.jndi.ldap.LdapCtxFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,442 DEBUG [CSSLogger] Property Name: logger.priority has value WARN - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,444 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.fnAttribute has value givenname - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,445 DEBUG [CSSLogger] Property Name: spi.provider.factory.msad has value com.hyperion.css.spi.impl.msad.MSADFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,446 DEBUG [CSSLogger] Property Name: spi.provider.factory.sap has value com.hyperion.css.spi.impl.sap.SAPFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,448 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.authType has value simple - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,449 DEBUG [CSSLogger] Property Name: spi.provider.common.native.role.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,450 DEBUG [CSSLogger] Property Name: spi.provider.common.sap.poolName has value CSS_SAP_POOL - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,452 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.objectclass.entry has value [person, organizationalPerson, inetOrgPerson] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,453 DEBUG [CSSLogger] Property Name: spi.provider.common.native.role.objectclass.entry has value [groupofuniquenames?uniquemember, cssRole] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,455 DEBUG [CSSLogger] Property Name: spi.provider.factory.db has value com.hyperion.css.spi.impl.db.DBFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,456 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.internalQueryBatchSize has value 50 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,458 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.loginAttribute has value cn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,459 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.emailAttribute has value mail - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,460 DEBUG [CSSLogger] Property Name: spi.provider.common.native.group.isActiveAttribute has value cssIsActive - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,462 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.snAttribute has value sn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,463 DEBUG [CSSLogger] Property Name: spi.provider.factory.ntlm has value com.hyperion.css.spi.impl.ntlm.NTLMFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,464 DEBUG [CSSLogger] Property Name: spi.provider.common.native.startupRetryInterval has value 3 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,466 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.objectclass.entry has value cssInetOrgPersonExtend - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,467 DEBUG [CSSLogger] Property Name: spi.provider.common.native.internalQueryBatchSize has value 50 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,468 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.group.nameAttribute has value cn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,470 DEBUG [CSSLogger] Property Name: hub.location has value http://ucadmty6:28080 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,471 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.identityAttribute has value dn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,473 DEBUG [CSSLogger] Property Name: searchOrder.el has value [Native Directory] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,474 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.group.objectclass.entry has value [groupofuniquenames?uniquemember, groupOfNames?member] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,475 DEBUG [CSSLogger] Property Name: spi.provider.common.native.authType has value simple - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,477 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.cacheRefreshInterval has value 60 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,478 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.group.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,479 DEBUG [CSSLogger] Property Name: spi.provider.factory.native has value com.hyperion.css.spi.impl.nv.NativeFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,481 DEBUG [CSSLogger] Property Name: spi.provider.factory.ldap has value com.hyperion.css.spi.impl.ldap.LDAPFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,482 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,484 DEBUG [CSSLogger] Property Name: spi.provider.common.native.maxGroupNestedLevel has value 21 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,485 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.fnAttribute has value givenname - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,487 DEBUG [CSSLogger] Property Name: spi.provider.common.native.role.url has value ou=Roles - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,488 DEBUG [CSSLogger] Property Name: spi.provider.common.native.startupRetryLimit has value 10 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,489 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.isActiveAttribute has value cssIsActive - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,491 DEBUG [CSSLogger] Value is map: - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,492 DEBUG [CSSLogger] Key is: spi.provider.type value is: native - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,494 DEBUG [CSSLogger] Key is: spi.provider.name value is: Native Directory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,495 DEBUG [CSSLogger] Property Name: spi.provider.Native Directory has value {spi.provider.type=native, spi.provider.name=Native Directory} - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,497 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,498 DEBUG [CSSLogger] Property Name: spi.provider.common.native.trusted has value true - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,500 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.snAttribute has value sn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,501 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.url has value ou=People - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,502 DEBUG [CSSLogger] Property Name: spi.provider.common.native.group.url has value ou=Groups - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,504 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.emailAttribute has value mail - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,505 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.authType has value simple - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,507 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.ctxFactory has value com.sun.jndi.ldap.LdapCtxFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,508 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,509 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.emailAttribute has value mail - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,511 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.identityAttribute has value dn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,512 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.ctxFactory has value com.sun.jndi.ldap.LdapCtxFactory - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,513 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.identityAttributeType has value String - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,516 DEBUG [CSSLogger] Property Name: spi.provider.common.native.cacheRefreshInterval has value 60 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,517 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.fnAttribute has value givenname - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,520 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.objectclass.entry has value user - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,521 DEBUG [CSSLogger] Property Name: spi.provider.common.native.user.loginAttribute has value cssDisplayNameDefault - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,523 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.internalQueryBatchSize has value 50 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,524 DEBUG [CSSLogger] Property Name: token.timeout has value 480 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,525 DEBUG [CSSLogger] Property Name: spi.provider.common.native.group.nameAttribute has value cssDisplayNameDefault - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,527 DEBUG [CSSLogger] Property Name: spi.provider.common.native.identityAttribute has value dn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,528 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.user.loginAttribute has value uid - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,530 DEBUG [CSSLogger] Property Name: spi.provider.common.native.group.objectclass.entry has value [groupofuniquenames?uniquemember, cssGroupExtend?cssIsActive] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,531 DEBUG [CSSLogger] Property Name: hub.dirPort has value 28089 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,532 DEBUG [CSSLogger] Property Name: spi.provider.common.ldap.group.nameAttribute has value cn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,534 DEBUG [CSSLogger] Property Name: spi.provider.common.sap.poolSize has value 20 - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,535 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.identityAttributeType has value String - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,536 DEBUG [CSSLogger] Property Name: spi.provider.common.native.role.productCodeAttribute has value cssProductCode - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,538 DEBUG [CSSLogger] Property Name: spi.provider.common.msad.user.snAttribute has value sn - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,539 DEBUG [CSSLogger] Property Name: spi.provider.common.native.group.descAttribute has value description - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,541 DEBUG [CSSLogger] Property Name: delegatedUserManagement.enabled has value false - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,749 INFO [CSSLogger] Got hub location from Registry:http://ucadmty6:28080 - at com.hyperion.css.common.CSSLogger.getHubLocationFromRegistry(?:?)
    19:26:13,950 INFO [CSSLogger] Got native directory location from Registry:ucadmty6:28089 - at com.hyperion.css.common.CSSLogger.getNativeProviderLocationFromRegistry(?:?)
    19:26:13,951 INFO [CSSLogger] URL constructed out of values in Registry database:ldap://ucadmty6:28089/dc=css,dc=hyperion,dc=com - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:13,953 DEBUG [CSSLogger] CSS Configuration intialized. : [612 ms] - at com.hyperion.css.common.CSSLogger.initConfiguration(?:?)
    19:26:14,028 DEBUG [CSSLogger] 20:3502:Missing file HSSLogger.properties. - at com.hyperion.css.common.CSSLogger.<init>(?:?)
    19:26:14,030 INFO [ExternalProvidersChecker] CSS initializing - at com.hyperion.cis.validation.checkers.impl.ExternalProvidersChecker.check(ExternalProvidersChecker.java:72)
    19:26:14,034 DEBUG [CSSLogger] 20:3502:Missing file HSSLogger.properties. - at com.hyperion.css.common.CSSLogger.<init>(?:?)
    19:26:45,426 ERROR [ExternalProvidersChecker] Error checking Shared Services: - at com.hyperion.cis.validation.checkers.impl.ExternalProvidersChecker.check(ExternalProvidersChecker.java:88)
    Error Code: -1
    com.hyperion.css.common.configuration.CSSConfigurationException: 20:3008:Failed to connect to native directory.      Error Code: 9
         at com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
         at com.hyperion.css.spi.CSSManager.initProviders(Unknown Source)
         at com.hyperion.css.spi.CSSManager.initialize(Unknown Source)
         at com.hyperion.css.spi.CSSManager.<init>(Unknown Source)
         at com.hyperion.css.spi.CSSManager.getInstance(Unknown Source)
         at com.hyperion.css.CSSSystem.initCSSSystem(Unknown Source)
         at com.hyperion.css.CSSSystem.getInstance(Unknown Source)
         at com.hyperion.cis.validation.checkers.impl.ExternalProvidersChecker.check(ExternalProvidersChecker.java:73)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.mozilla.javascript.MemberBox.invoke(MemberBox.java:142)
         at org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:201)
         at org.mozilla.javascript.optimizer.OptRuntime.callProp0(OptRuntime.java:117)
         at org.mozilla.javascript.gen.c7._c0(./scripts/extProvidersCheck.js:1)
         at org.mozilla.javascript.gen.c7.call(./scripts/extProvidersCheck.js)
         at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:337)
         at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2755)
         at org.mozilla.javascript.gen.c7.call(./scripts/extProvidersCheck.js)
         at org.mozilla.javascript.gen.c7.exec(./scripts/extProvidersCheck.js)
         at org.mozilla.javascript.Context.evaluateReader(Context.java:1175)
         at com.hyperion.cis.validation.RunningEnviroment.processSource(RunningEnviroment.java:223)
         at com.hyperion.cis.validation.RunningEnviroment.runScript(RunningEnviroment.java:274)
         at com.hyperion.cis.validation.RunningEnviroment.access$000(RunningEnviroment.java:40)
         at com.hyperion.cis.validation.RunningEnviroment$1.run(RunningEnviroment.java:131)
    19:26:45,726 DEBUG [JDBCChecker] Conexión con la base de datos jdbc:hyperion:oracle://ucadmy10.lac.nsroot.net:30670;SID=ORAC670 - at com.hyperion.cis.validation.checkers.impl.JDBCChecker.checkConnectivity(JDBCChecker.java:111)
    19:26:45,849 DEBUG [ConfigCompleteChecker] Check if all tasks configured successful for Hyperion Foundation - at com.hyperion.cis.validation.checkers.impl.ConfigCompleteChecker.check(ConfigCompleteChecker.java:59)
    19:26:45,852 DEBUG [ValidationContextFactory] Trying to get ValidationContext using: Studio - at com.hyperion.cis.validation.ValidationContextFactory.getValidationContext(ValidationContextFactory.java:41)
    19:26:45,885 DEBUG [ConfigCompleteChecker] Check if all tasks configured successful for Studio - at com.hyperion.cis.validation.checkers.impl.ConfigCompleteChecker.check(ConfigCompleteChecker.java:59)
    19:26:45,887 WARN [ConfigCompleteChecker] Todavía no se han completado algunas de las tareas de configuración sugeridas. - at com.hyperion.cis.validation.checkers.impl.ConfigCompleteChecker.check(ConfigCompleteChecker.java:96)
    19:26:46,240 INFO [ReportProcessor] Try to generate report for object: com.hyperion.cis.validation.reports.ReportDTO@7124af and template file name: ./templates/template.vm - at com.hyperion.cis.validation.reports.ReportProcessor.saveResultsToStream(ReportProcessor.java:77)
    19:26:46,242 INFO [ReportProcessor] Try to parse template [./templates/template.vm] - at com.hyperion.cis.validation.reports.ReportProcessor.parseTemplate(ReportProcessor.java:132)
    19:26:46,407 INFO [ReportProcessor] Report generated successfully - at com.hyperion.cis.validation.reports.ReportProcessor.saveResultsToStream(ReportProcessor.java:86)
    19:26:47,371 ERROR [HelpBrowser] java.io.IOException: firefox: not found - at com.hyperion.help.HelpBrowser.openURL(HelpBrowser.java:81)
    19:26:47,776 ERROR [HelpBrowser] Unable to load page in a System Browser - at com.hyperion.help.HelpBrowser.displayHelp(HelpBrowser.java:49)
    java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
         at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:159)
         at java.awt.Window.<init>(Window.java:317)
         at java.awt.Frame.<init>(Frame.java:419)
         at java.awt.Frame.<init>(Frame.java:384)
         at javax.swing.SwingUtilities$SharedOwnerFrame.<init>(SwingUtilities.java:1666)
         at javax.swing.SwingUtilities.getSharedOwnerFrame(SwingUtilities.java:1743)
         at javax.swing.JOptionPane.getRootFrame(JOptionPane.java:1624)
         at javax.swing.JOptionPane.showOptionDialog(JOptionPane.java:836)
         at javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:645)
         at javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:616)
         at javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:587)
         at com.hyperion.help.HelpBrowser.openURL(HelpBrowser.java:82)
         at com.hyperion.help.HelpBrowser.displayHelp(HelpBrowser.java:47)
         at com.hyperion.cis.validation.VTDisplaySilent.exec(VTDisplaySilent.java:25)
         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.hyperion.cis.validation.VTLauncher.main(VTLauncher.java:85)

  • Failed to unlock deployment list

    Hi guys!
    I need help because when I run a workflow that call several mappings, it stops in the middle of one of the mappings, looks like it ended up successfully (all green, 0 errors in the log). I have no log file in the $OWB_HOME/owb/log folder, and the only error message I can find is in the xterm where I launched OWB client :
    doAsynchronousExecution
    Task notification null PRC_DMT_MAIN
    Execute operation NativeExecution OWF_BIDEALERS_LOCATION PRC_DMT_MAIN
    Task notification null PRC_DMT_MAIN:MPG_DIM_SOCIETE_SITE_MARQUE
    Task notification OK PRC_DMT_MAIN
    Execute operation NativeExecution OWF_BIDEALERS_LOCATION PRC_DMT_MAIN
    Task notification OK PRC_DMT_MAIN:MPG_DIM_DMT_TEMPS
    Task notification OK PRC_DMT_MAIN:MPG_DIM_SOCIETE_SITE_MARQUE
    Task notification OK PRC_DMT_MAIN:MPG_DIM_DMT_TEMPS
    Failed to unlock deployment list
    Failed to unlock deployment list
    PRC_DMT_MAIN is my workflow, and all the MPG are the mappings is calls. Several are missing.
    A bit more about the context :
    - we have a dev. environment running on windows server and everything is fine,
    - we have a test environment running on linux SLES where I have this issue,
    - we have written an OMB*Plus script to perform the erport/import/deployment and it has run perfectly so far,
    - we already have been through the OS-specific problems (folder separator, case sensitiveness, ...)
    I googled the error message "Failed to unlock deployment list" but didn't get anything helpful.
    Can anybody please advise?
    Thanks in advance!
    Ced.

    Nigel,
    My fault, on the log : I renamed the log file, expecting OWB to create a new one but everything was actually logged in the renamed file.
    My client is working on the server. I use putty and XMing to get it displayed on my PC.
    I did not try with today delta load, but with the Monday full load, to run each part separately. It allowed me to complete the process. Thus it's not the workflow contents that fails.
    One weird thing is in the log file today. I have to explain a bit more:
    Both full and delta workflow contain 1 workflow for each layer (ODS, DWH, DMT) the difference is the DWH workflow that is not exactly the same. The two DWH workflows and the DMT workflow all call some mappings and also call a set of workflows.
    The strange thing is that the delta didn't reach the end of the ODS. The DWH and DMT weren't even started. But the log file reports a start of the DMT workflow called by the delta workflow at the same time as the ODS. The DWH isn't started, while the main workflow sequentially calls ODS, DWH and then DMT.
    The funny thing is that the DMT seems to run ( while it is not supposed to ) and to stop at the same place as in the full : I have a log for the same 2 DMT mappings.
    I believe that there is something somewhere that remains from former executions and that is re-executed for some reason.
    I also think that if my delta stops, it is not due to the ODS, but due to the fact that this ghost DMT session that runs in parallel says "stop" to the whole process while the ODS is running.
    2008/07/02-15:15:19-CEST      1DE0C09     Initializing execution for auditId= 227186 parentAuditId= 227181 topLevelAuditId=227181 taskName=PRC_SCH_DELTA:PRC_ODS_MAIN
    2008/07/02-15:15:19-CEST      1F2F70A     Initializing execution for auditId= 227205 parentAuditId= 227181 topLevelAuditId=227181 taskName=PRC_SCH_DELTA:PRC_DMT_MAIN
    Finally, I think that the issue isn't in the workflows themselves as the same issue happens on 2 different workflows.
    Can you please advise?
    Thanks for your help so far!
    Ced.
    Unfortunately I can't go any further :

  • Deploying base setup failed while configure BI

    OBIEE Verion : 11.1.1.6
    OS : Redhat 5.6
    When i try to install OBIEE 11.1.1.6, I faced the below error while I'm configure BI setup
    Deploying Base setup failed, I checked in log files
    2013-02-25 23:44:04,524 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - read domain from "/home/oracle/Oracle/Middleware/user_projects/domains/bifoundation_domain"
    2013-02-25 23:44:09,904 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: read domain from "/home/oracle/Oracle/Middleware/user_projects/domains/bifoundation_domain"
    2013-02-25 23:44:10,138 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    2013-02-25 23:44:10,156 INFO [main] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - /home/oracle/Oracle/Middleware/oracle_common is already in the list
    2013-02-25 23:44:11,672 INFO [main] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - /home/oracle/Oracle/Middleware/wlserver_10.3/common/lib/components.xml does not contain component elements and will be skipped
    2013-02-25 23:44:11,748 INFO [main] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Found unresolved prerequisite VKey type [UNRESOLVED] domainState [NOTINSTALLED] selectionState [NOTSELECTED] details [DEP for Oracle BI:11.1.1.6.0 [/home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar] (Oracle BI SYSMAN)]
    2013-02-25 23:44:11,749 INFO [main] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Found unresolved prerequisite VKey type [UNRESOLVED] domainState [NOTINSTALLED] selectionState [NOTSELECTED] details [DEP for Oracle BI:11.1.1.6.0 [/home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar] (Oracle BI JDBC)]
    2013-02-25 23:44:11,750 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    2013-02-25 23:44:11,750 ERROR [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    com.oracle.cie.domain.template.dependency.SelectionConflictException: The following prerequisites were found to be missing:
    Oracle BI SYSMANOracle BI JDBC
    at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:794)
    at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:265)
    at com.oracle.cie.domain.script.ScriptExecutor.addTemplate(ScriptExecutor.java:547)
    at com.oracle.cie.domain.script.jython.WLScriptContext.addTemplate(WLScriptContext.java:416)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyInstance.invoke(Unknown Source)
    at org.python.pycode._pyx3.addTemplate$20(/tmp/WLSTOfflineIni2235021489887898317.py:89)
    at org.python.pycode._pyx3.call_function(/tmp/WLSTOfflineIni2235021489887898317.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx47.f$0(/tmp/tmp1361825028587.py:15)
    at org.python.pycode._pyx47.call_function(/tmp/tmp1361825028587.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    Please let me know Where I did mistake

    http://mohamedazar.com/2013/04/01/oracle-as-provisioning-weblogic-asdomain-_addtemplateasdomain-java4224/                                                                                                                                                                                                                   

  • Automatic ejb redeploy when deploying a webapp

    Hi all,
    I' got a problem with bea 6.1 webapp deploy/redeploy.
    When, from console, I upload the war the server undeploy and redeploy an EJB,
    then try to deploy the war.
    The ejb is used by the webapp and in the war (in WEB-INF/classes) there are the
    EJB interfaces.
    Is this correct ?
    The real problem is that I have to deploy on a 2 node cluster. Deploying from
    console automatically target the admin server, the EJB fail the redeploy and the
    webapp is not deployed on the nodes.
    I tryed to undeploy the EJB before deploying the webapp and another EJB (not related
    to the webapp, developed here, not from bea) id redeployed ! :|
    Any idea ?
    Thanks
    Lorenzo

    Lorenzo,
    Have you considered using an Enterprise Application (EAR) which includes both your web
    app and your ejbs? This way you can undeploy and redeploy at the application level and
    let the server worry about the deployment order. See:
    http://edocs.bea.com/wls/docs61/programming/packaging.html#1029830
    You can turn off the automatic deployment to the admin server. Please read:
    http://edocs.bea.com/wls/docs61/adminguide/appman.html#1029683
    I hope this helps.
    Regards,
    Velvet
    Developer Relations Engineer
    BEA Systems
    "\"lorenzo bolzani\" lorenzo.bolzani-at-ethink.it" wrote:
    Hi all,
    I' got a problem with bea 6.1 webapp deploy/redeploy.
    When, from console, I upload the war the server undeploy and redeploy an EJB,
    then try to deploy the war.
    The ejb is used by the webapp and in the war (in WEB-INF/classes) there are the
    EJB interfaces.
    Is this correct ?
    The real problem is that I have to deploy on a 2 node cluster. Deploying from
    console automatically target the admin server, the EJB fail the redeploy and the
    webapp is not deployed on the nodes.
    I tryed to undeploy the EJB before deploying the webapp and another EJB (not related
    to the webapp, developed here, not from bea) id redeployed ! :|
    Any idea ?
    Thanks
    Lorenzo

  • Deployment of SAP_ESS Fails

    Hi all,
    We are trying to deploy the SAP_ESS component to our J2EE Engine. We have succesfully deployed the PCUIGP component, but the ESS fails. This is a snippet from the log:
    07/12/14 12:14:42 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Error occurred while deploying ear file ./temp/deploy/work/deploying/tc_sl.ut.content.erp.xss.ear.
                         Reason: None of the available containers recognized the components of application sap.com/tc~sl.ut.content.erp.xss; it is not possible to make deploy.
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:570)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
                         For detailed information see the log file of the Deploy Service.
    07/12/14 12:14:42 -  ***********************************************************
    Dec 14, 2007 12:14:42... Info: End of log messages of the target system.
    Dec 14, 2007 12:14:42... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Dec 14, 2007 12:14:42... Error: Aborted: development component 'tc/sl.ut.content.erp.xss'/'sap.com'/'MAIN_ERP05VAL_C'/'1254852'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_ERP05VAL_C'/'1000.600.0.11.0.20071128105758''/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while deploying ear file ./temp/deploy/work/deploying/tc_sl.ut.content.erp.xss.ear.
    Reason: None of the available containers recognized the components of application sap.com/tc~sl.ut.content.erp.xss; it is not possible to make deploy.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Dec 14, 2007 12:14:42... Info: Starting to save the repository
    Dec 14, 2007 12:14:43... Info: Finished saving the repository
    Dec 14, 2007 12:14:43... Info: Starting: Initial deployment: Selected software component 'SAP_ESS'/'sap.com'/'MAIN_ERP05VAL_C'/'1000.600.0.11.0.20071128105758''/'0' will be deployed.
    Dec 14, 2007 12:14:43... Error: Aborted: software component 'SAP_ESS'/'sap.com'/'MAIN_ERP05VAL_C'/'1000.600.0.11.0.20071128105758''/'0':
    Failed deployment of SDAs:
    development component 'tc/sl.ut.content.erp.xss'/'sap.com'/'MAIN_ERP05VAL_C'/'1254852'/'0' : aborted
    Please, look at error logs above for more information!
    Dec 14, 2007 12:14:43... Info: Starting to save the repository
    Dec 14, 2007 12:14:44... Info: Finished saving the repository
    Dec 14, 2007 12:14:44... Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Dec 14, 2007 12:14:44... Error: -
    At least one of the Deployments failed -
    This is the screenshot of the error in JSPM:
    http://tweakers.net/ext/f/qvNYs3LfQqyqe1doKhNbNvFK/full.jpg
    Any ideas on the reason for this?
    Best regards,
    Jan Laros

    Holger,
    The SDM shows a progress of 100%, but at the end we still encounter some errors:
    'ess/za/emergency/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432769'/'0' updates current                                              ly deployed development component 'ess/za/emergency/cfg'/'sap.com'/'MAIN_ERP05VA                                              L_C'/'1242468'/'0'.
    Jan 15, 2008 10:53:16... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/ess/za/emergency/cfg/MAIN_ERP05PAT_C/0/2432769/esszaemergency~cfg                                              .sda
    Jan 15, 2008 10:53:16... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:16... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:17... Info: Begin of log messages of the target system:
    08/01/15 10:53:16 -  ***********************************************************
    08/01/15 10:53:16 -  Start updating EAR file...
    08/01/15 10:53:16 -  start-up mode is lazy
    08/01/15 10:53:16 -  EAR file updated successfully for 5ms.
    08/01/15 10:53:16 -  Start updating...
    08/01/15 10:53:16 -  EAR file uploaded to server for 167ms.
    08/01/15 10:53:17 -  Successfully updated. Update took 314ms.
    08/01/15 10:53:17 -  Deploy Service status:
    08/01/15 10:53:17 -    Application : sap.com/esszaemergency~cfg
    08/01/15 10:53:17 -
    08/01/15 10:53:17 -    sap.comesszaemergencycfg.epa  - EP
    08/01/15 10:53:17 -  ***********************************************************
    Jan 15, 2008 10:53:17... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:17... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:17... Info: Finished successfully: development component 'ess                                              /za/emergency/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432769'/'0', grouped by
    Jan 15, 2008 10:53:17... Info: Starting to save the repository
    Jan 15, 2008 10:53:18... Info: Finished saving the repository
    Jan 15, 2008 10:53:22... Info: Starting: Update: Selected development component                                               'ess/za/fam'/'sap.com'/'MAIN_ERP05PAT_C'/'2433319'/'0' updates currently deploye                                              d development component 'ess/za/fam'/'sap.com'/'MAIN_ERP05VAL_C'/'1252138'/'0'.
    Jan 15, 2008 10:53:22... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/ess/za/fam/MAIN_ERP05PAT_C/0/2433319/esszafam.sda
    Jan 15, 2008 10:53:22... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:22... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:24... Info: Begin of log messages of the target system:
    08/01/15 10:53:22 -  ***********************************************************
    08/01/15 10:53:23 -  Start updating EAR file...
    08/01/15 10:53:23 -  start-up mode is lazy
    08/01/15 10:53:23 -  EAR file updated successfully for 8ms.
    08/01/15 10:53:23 -  Start updating...
    08/01/15 10:53:23 -  EAR file uploaded to server for 172ms.
    08/01/15 10:53:24 -  Successfully updated. Update took 252ms.
    08/01/15 10:53:24 -  Deploy Service status:
    08/01/15 10:53:24 -    Application : sap.com/esszafam
    08/01/15 10:53:24 -
    08/01/15 10:53:24 -    sap.com/esszafam  - WEBDYNPRO
    08/01/15 10:53:24 -  ***********************************************************
    Jan 15, 2008 10:53:24... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:24... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:24... Info: Finished successfully: development component 'ess                                              /za/fam'/'sap.com'/'MAIN_ERP05PAT_C'/'2433319'/'0', grouped by
    Jan 15, 2008 10:53:24... Info: Starting to save the repository
    Jan 15, 2008 10:53:25... Info: Finished saving the repository
    Jan 15, 2008 10:53:29... Info: Starting: Update: Selected development component                                               'ess/za/fam/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432771'/'0' updates currently dep                                              loyed development component 'ess/za/fam/cfg'/'sap.com'/'MAIN_ERP05VAL_C'/'125166                                              2'/'0'.
    Jan 15, 2008 10:53:29... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/ess/za/fam/cfg/MAIN_ERP05PAT_C/0/2432771/esszafam~cfg.sda
    Jan 15, 2008 10:53:29... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:29... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:34... Info: Begin of log messages of the target system:
    08/01/15 10:53:29 -  ***********************************************************
    08/01/15 10:53:29 -  Start updating EAR file...
    08/01/15 10:53:29 -  start-up mode is lazy
    08/01/15 10:53:29 -  EAR file updated successfully for 5ms.
    08/01/15 10:53:29 -  Start updating...
    08/01/15 10:53:30 -  EAR file uploaded to server for 170ms.
    08/01/15 10:53:34 -  Successfully updated. Update took 4314ms.
    08/01/15 10:53:34 -  Deploy Service status:
    08/01/15 10:53:34 -    Application : sap.com/esszafam~cfg
    08/01/15 10:53:34 -
    08/01/15 10:53:34 -    sap.comesszafamcfg.epa  - EP
    08/01/15 10:53:34 -  ***********************************************************
    Jan 15, 2008 10:53:34... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:34... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:34... Info: Finished successfully: development component 'ess                                              /za/fam/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432771'/'0', grouped by
    Jan 15, 2008 10:53:34... Info: Starting to save the repository
    Jan 15, 2008 10:53:35... Info: Finished saving the repository
    Jan 15, 2008 10:53:40... Info: Starting: Update: Selected development component                                               'ess/za/pdata'/'sap.com'/'MAIN_ERP05PAT_C'/'2433184'/'0' updates currently deplo                                              yed development component 'ess/za/pdata'/'sap.com'/'MAIN_ERP05VAL_C'/'1252003'/'                                              0'.
    Jan 15, 2008 10:53:40... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/ess/za/pdata/MAIN_ERP05PAT_C/0/2433184/esszapdata.sda
    Jan 15, 2008 10:53:40... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:40... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:41... Info: Begin of log messages of the target system:
    08/01/15 10:53:40 -  ***********************************************************
    08/01/15 10:53:40 -  Start updating EAR file...
    08/01/15 10:53:40 -  start-up mode is lazy
    08/01/15 10:53:40 -  EAR file updated successfully for 10ms.
    08/01/15 10:53:40 -  Start updating...
    08/01/15 10:53:40 -  EAR file uploaded to server for 185ms.
    08/01/15 10:53:41 -  Successfully updated. Update took 273ms.
    08/01/15 10:53:41 -  Deploy Service status:
    08/01/15 10:53:41 -    Application : sap.com/esszapdata
    08/01/15 10:53:41 -
    08/01/15 10:53:41 -    sap.com/esszapdata  - WEBDYNPRO
    08/01/15 10:53:41 -  ***********************************************************
    Jan 15, 2008 10:53:41... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:41... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:41... Info: Finished successfully: development component 'ess                                              /za/pdata'/'sap.com'/'MAIN_ERP05PAT_C'/'2433184'/'0', grouped by
    Jan 15, 2008 10:53:41... Info: Starting to save the repository
    Jan 15, 2008 10:53:42... Info: Finished saving the repository
    Jan 15, 2008 10:53:46... Info: Starting: Update: Selected development component                                               'ess/za/pdata/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432772'/'0' updates currently d                                              eployed development component 'ess/za/pdata/cfg'/'sap.com'/'MAIN_ERP05VAL_C'/'12                                              51663'/'0'.
    Jan 15, 2008 10:53:46... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/ess/za/pdata/cfg/MAIN_ERP05PAT_C/0/2432772/esszapdata~cfg.sda
    Jan 15, 2008 10:53:46... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:46... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:51... Info: Begin of log messages of the target system:
    08/01/15 10:53:46 -  ***********************************************************
    08/01/15 10:53:47 -  Start updating EAR file...
    08/01/15 10:53:47 -  start-up mode is lazy
    08/01/15 10:53:47 -  EAR file updated successfully for 5ms.
    08/01/15 10:53:47 -  Start updating...
    08/01/15 10:53:47 -  EAR file uploaded to server for 169ms.
    08/01/15 10:53:51 -  Successfully updated. Update took 3800ms.
    08/01/15 10:53:51 -  Deploy Service status:
    08/01/15 10:53:51 -    Application : sap.com/esszapdata~cfg
    08/01/15 10:53:51 -
    08/01/15 10:53:51 -    sap.comesszapdatacfg.epa  - EP
    08/01/15 10:53:51 -  ***********************************************************
    Jan 15, 2008 10:53:51... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:51... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:51... Info: Finished successfully: development component 'ess                                              /za/pdata/cfg'/'sap.com'/'MAIN_ERP05PAT_C'/'2432772'/'0', grouped by software co                                              mponent 'SAP_ESS'/'sap.com'/'MAIN_ERP05PAT_C'/'1000.600.0.11.3.20080103103844''/                                              '0'
    Jan 15, 2008 10:53:51... Info: Starting to save the repository
    Jan 15, 2008 10:53:52... Info: Finished saving the repository
    Jan 15, 2008 10:53:56... Info: Starting: Initial deployment: Selected developmen                                              t component 'tc/sl.ut.content.erp.xss'/'sap.com'/'MAIN_ERP05PAT_C'/'2432982'/'0'                                               will be deployed.
    Jan 15, 2008 10:53:56... Info: SDA to be deployed: /usr/sap/S98/JC82/SDM/root/or                                              igin/sap.com/tc/sl.ut.content.erp.xss/MAIN_ERP05PAT_C/0/2432982/tc~sl.ut.content                                              .erp.xss.sda
    Jan 15, 2008 10:53:56... Info: Software type of SDA: J2EE
    Jan 15, 2008 10:53:56... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE A                                              pplication) *****
    Jan 15, 2008 10:53:57... Info: Begin of log messages of the target system:
    08/01/15 10:53:56 -  ***********************************************************
    08/01/15 10:53:57 -  Start updating EAR file...
    08/01/15 10:53:57 -  start-up mode is lazy
    08/01/15 10:53:57 -  EAR file updated successfully for 3ms.
    08/01/15 10:53:57 -  Start deploying ...
    08/01/15 10:53:57 -  EAR file uploaded to server for 167ms.
    08/01/15 10:53:57 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Error occurred while deploying ea                                              r file ./temp/deploy/work/deploying/tc_sl.ut.content.erp.xss.ear.
                         Reason: None of the available containers recognized the com                                              ponents of application sap.com/tc~sl.ut.content.erp.xss; it is not possible to m                                              ake deploy.
                            at com.sap.engine.services.deploy.server.DeployServiceIm                                              pl.deploy(DeployServiceImpl.java:570)
                            at com.sap.engine.services.deploy.server.DeployServiceIm                                              plp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInter                                              nal(DispatchImpl.java:312)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(Disp                                              atchImpl.java:199)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProces                                              sor.request(P4SessionProcessor.java:129)
                            at com.sap.engine.core.service630.context.cluster.sessio                                              n.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.ja                                              va:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunn                                              er.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(Act                                              ionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessCon                                              troller.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute                                              (SingleThread.java:100)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(Sin                                              gleThread.java:170)
                         For detailed information see the log file of the Deploy Ser                                              vice.
    08/01/15 10:53:57 -  ***********************************************************
    Jan 15, 2008 10:53:57... Info: End of log messages of the target system.
    Jan 15, 2008 10:53:57... Info: ***** End of SAP J2EE Engine Deployment (J2EE App                                              lication) *****
    Jan 15, 2008 10:53:57... Error: Aborted: development component 'tc/sl.ut.content                                              .erp.xss'/'sap.com'/'MAIN_ERP05PAT_C'/'2432982'/'0', grouped by software compone                                              nt 'SAP_ESS'/'sap.com'/'MAIN_ERP05PAT_C'/'1000.600.0.11.3.20080103103844''/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy ser                                              vice:
    java.rmi.RemoteException: Error occurred while deploying ear file ./temp/deploy/                                              work/deploying/tc_sl.ut.content.erp.xss.ear.
    Reason: None of the available containers recognized the components of applicatio                                              n sap.com/tc~sl.ut.content.erp.xss; it is not possible to make deploy.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDepl                                              oyerImpl.performAction(DeploymentActionTypes).REMEXC)
    Jan 15, 2008 10:53:58... Info: Starting to save the repository
    Jan 15, 2008 10:53:58... Info: Finished saving the repository
    Jan 15, 2008 10:54:03... Info: Starting: Initial deployment: Selected software c                                              omponent 'SAP_ESS'/'sap.com'/'MAIN_ERP05PAT_C'/'1000.600.0.11.3.20080103103844''                                              /'0' will be deployed.
    Jan 15, 2008 10:54:03... Error: Aborted: software component 'SAP_ESS'/'sap.com'/                                              'MAIN_ERP05PAT_C'/'1000.600.0.11.3.20080103103844''/'0':
    Failed deployment of SDAs:
    development component 'tc/sl.ut.content.erp.xss'/'sap.com'/'MAIN_ERP05PAT_C'/'24                                              32982'/'0' : aborted
    Please, look at error logs above for more information!
    Jan 15, 2008 10:54:03... Info: Starting to save the repository
    Jan 15, 2008 10:54:04... Info: Finished saving the repository
    Jan 15, 2008 10:54:06... Info: J2EE Engine is in same state (online/offline) as                                               it has been before this deployment process.

  • Manual deployment

              is there any way to manually deployed an EAR or EJB JAR file
              without using the Admin Console?
              i've got large JAR files and would like to have them copied
              to staging directories on each managed servers prior to
              cut-over and have just a local file move during cut-over to
              minimize downtime.
              thanks,
              yan
              

    [att1.html]
              

  • "Failed to unlock deployment list" when deploying to another location

    Hi everybody
    I am deploying packages from a location test to a location prod, when i try to deploy the packages the stderr.txt gives me that
    "Failed to unlock deployment list"
    Any suggestions;
    Thanks Niko

    Hi everybody
    I am deploying packages from a location test to a location prod, when i try to deploy the packages the stderr.txt gives me that
    "Failed to unlock deployment list"
    Any suggestions;
    Thanks Niko

  • Jboss manual deployment

    If I choose to deploy to jboss ALL, as opposed to DEFAULT, it says it is a "manual deployment" What does that mean? Do I need to hack and copy the nitrox-application-service.xml file to the /server/all/deploy directory ?

    When choosing this option, is the NitroxDeploy mbean considered redistributable in the sense that I can share this code with multiple users on my team who do not have NitroX?
    I am building the web interface for a large project and others would like to be able to run our code from the latest copy in their workspace, but without NitroX licenses for them this is not presently possible.
    Your mbean seems to solve the problem. Can I use it?
    Thanks,
    Mike

Maybe you are looking for

  • Need Advanced Port Replicator III drivers to use it with my Portege M300

    Hi, I have a Portege M300 with an Advanced Port Replicator III. I've had to reinstall the operating system and now can't find any drivers for the port replicator. Can anyone help me out? I'm running Win XP thanks

  • Creating an unattended install of 10.6?

    Hello all! I'd like to create a DVD or USB stick with a version of the Mac OS 10.6 installer that will perform the installation of the os and, possibly, go through the setup steps in the setup assistant using pre-defined data for the various options.

  • Re : Business transaction category & Leading transaction category

    Hi All, if any one could differentiate between Business transaction category and leading transaction category, kindly give examples.I understood there is two business transaciton category( sales & business activity) for Standard sales order, please e

  • CRS Installation error while running vipca

    i'm trying to configure RAC on my laptop using VMWARE SERVER when vipca is running i get error saying that CRS-1006: No more members to consider CRS-0215: Could not start resource 'ora.rac1.vip'. when i check on RAC-1(node-1) ./crs_stat -t Name Type

  • Safari SIMBL ERROR

    SInce I installed the new Safari 3.04, I've been getting this error message: Safari 3.0.4 (v523.12) has not been tested with the plugin (null) (null) (v0.62). As a precaution, it has not been loaded. Please contact the plugin developer for further in