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

Similar Messages

  • 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.

  • Updating app-v packages on clients already deployed to.

    hi
    I'm deploying a few app-v packages..  
    If I make some changes to the osd file for instance.. 
    how do I get this update through to the clients that already have the app-v package deployed?
    Kindest regards, Martin

    You need to supersede the application. So create a new application and then set supersede rules in the properties of the new application. Browse to the app to replace and then in the New Deployment Type drop down select the new application. 
    Once that is done remove the deployment of the old application as this is no longer required.
    Cheers
    Paul | sccmentor.wordpress.com

  • Deploying the FEP client (SCCM 2012 R2) on computers that already have the FEP client from a previouse failed site installation

    Hello All
    I am in the process of rebuilding our SCCM 2012 R2 site server (single site). The FEP client from the previous sccm 2012 r2 deployment was successfully installed on all of our endpoints and communicating with no issue with the site server. Since losing that
    server we are in the process of deploying a one. My question is, when I configure FEP and the site server attemtps to deploy the FEP client will the current one be reinstalled even though its same version? Or will SCCM just recognize there is already
    a compatible client installed. I asked a similar question about the SCCM client in another post which was very helpful.
    Any advice would be greatly appreciated
    Phillip
    http://social.technet.microsoft.com/Forums/en-US/84923512-b456-4850-b2ba-8d22bb54ab5c/deploying-sccm-2012-r2-clients-to-computers-that-already-have-the-sccm-2012-r2-client-from-failed?forum=configmanagerdeployment#ab630267-6f25-45ff-a732-231b8008876c
    Phil Balderos

    No, the Endpoint Protection client is still a separate client. By, enabling the client settings the ConfigMgr client will make sure that the Endpoint Protection client is installed and makes sure it will be 'managed'. After re-installing the ConfigMgr
    client, the ConfigMgr client will see that Endpoint Protection is already installed and the new ConfigMgr client will start 'managing' the Endpoint Protection client.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Deploying full Lync client when basic has already been deployed

    Hello all,
    I have recently purchased licensing for the full Lync client for my userbase. I have already deployed the Lync basic client. Has anyone done the full deployment after the basic? Will the full client remove/update the basic or will I have 2 versions installed?
    If so, how can I remove the basic client from the command line as part of the full client installation?
    Thanks!

    As i tested in my lab. These two version can be installed on the same computer.
    But when I install Office 2013, i can't find Lync basic client in All program.
    Type Lync basic 2013 in Search programs and files field, the full client starts.
    After i uninstall Office 2013, i type Lync Lync basic 2013 in Search programs and files field, Lync basic client starts.
    Lisa Zheng
    TechNet Community Support

  • Facing problem in creating socket in a method from an already deployed application exe while same method is working from another exe from same environment from same location.

    Dll Created In: - MFC VC
    6.0
    Application Exe Developed In:
    - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit
    / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component which
    has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting Error
    code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming on
    client side so what we did, we created a driver in C# which invokes same method from same environment(on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest: -
    We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not working,
    actually  it is not executing Create () method,
    I will give snippet of the code for understanding the problem because we are not finding any kind solution for it.
    Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
    DWORD errorCode = GetLastError();
    CString errorMessage ;
    errorMessage.Format("%lu",errorCode);
    ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
    return  IS_ERR_WINDOWS;
    Note: -
    CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
    ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
    if(!Create())
    ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
     n_Err = GetLastError();
     ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
    return NET_INIT;
    ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
    if(!AsyncSelect(0))
    n_Err = GetLastError();
    return NET_INIT;
    if(!Connect(strIP,n_Port))
    n_Err = GetLastError();
    ErrorLog(n_Err,0,"ConnectTS","");
    return SERVER_NOT_CONNECTED;
    Code description: -
    From
    int GETImage_MT() method we call Initialize() method and pass client machine IP and Port and there we call
    ConnectTS() method, In this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System 
    0
    Note: - According to logs, problem is coming in Create method().
    Here 0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll
    from different exe, it is working fine and we are facing any kind of problem. While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

    Pointer variable was already initialized; I have mention in code; kindly assist us.
    Dll Created In: - MFC VC 6.0
    Application Exe Developed In: - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component
    which has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting
    Error code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming
    on client side so what we did, we created a driver in C# which invokes same method from same environment (on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest:
    - We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not
    working, actually it is not executing Create () method, I will give snippet of the code for understanding
    the problem because we are not finding any kind solution for it. Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage ;
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Note: - CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
                       ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
              n_Err = GetLastError();
              ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
                      return NET_INIT;
              ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
              if(!AsyncSelect(0))
                       n_Err = GetLastError();
                       return NET_INIT;
              if(!Connect(strIP,n_Port))
                       n_Err = GetLastError();
                       ErrorLog(n_Err,0,"ConnectTS","");
                       return SERVER_NOT_CONNECTED;
    Code description: - From int GETImage_MT() method
    we call Initialize() method and pass client machine IP and Port and there we call ConnectTS() method, In
    this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System  0
    Note: - According to logs, problem is coming in Create method(). Here
    0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll from different exe, it is working fine and we are facing any kind of problem.
    While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

  • Weblogic deploying an already deployed application!

    Hi,
    These are the following errors that I get. This is an already deployed application so not sure why weblogic deploys it again. This does not happen in all the machines.
    Can someone tell me why it is doing this and how to make the application come up?
    This is the error that I get when logging into the application:
    Error 503--Service Unavailable
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.4 503 Service Unavailable
    The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay may be indicated in a Retry-After header. If no Retry-After is given, the client SHOULD handle the response as it would for a 500 response.
    Webserver console errors:
    Unable to deploy EJB: jar from jar:
    Compiler failed executable.exec(java.lang.String[javac, -nowarn, -classpath, D:\bea\user_projects\ESMdomain\t
    mp_ejbSramamoorthy7001myserver\-au306wtcrywq;D:\bea\user_projects\ESMdomain\applications\esm.ear\jar;D:\bea\j
    dk131_06\jre\lib\rt.jar;D:\bea\jdk131_06\jre\lib\i18n.jar;D:\bea\jdk131_06\jre\lib\sunrsasign.jar;D:\bea\jdk1
    31_06\jre\classes;D:\bea\jdk131_06\jre\lib\tools.jar;D:/bea/weblogic700\server\lib\weblogic_sp.jar;D:/bea/web
    logic700\server\lib\weblogic.jar;D:\bea\jdk131_06\jre\jre\lib\rt.jar;JAVA_HOME\lib\dt.jar;D:/bea/weblogic700/
    server/lib/mbeantypes/wlManagement.jar;D:/bea/weblogic700/server/lib/mbeantypes/ESMSecurityProviders.jar;D:/b
    ea/user_projects/ESMdomain/applications/esmconfig;D:/bea/user_projects/ESMdomain/applications/esm.ear/jar;D:/
    bea/user_projects/ESMdomain/esmlib/avalon.jar;D:/bea/user_projects/ESMdomain/esmlib/batik.jar;D:/bea/user_pro
    jects/ESMdomain/esmlib/bsh-1.2b7.jar;D:/bea/user_projects/ESMdomain/esmlib/comm.jar;D:/bea/user_projects/ESMd
    omain/esmlib/multipartrequest.jar;D:/bea/user_projects/ESMdomain/esmlib/crimson.jar;D:/bea/user_projects/ESMd
    omain/esmlib/fop.jar;D:/bea/user_projects/ESMdomain/esmlib/gnu-regexp-1.1.4.jar;D:/bea/user_projects/ESMdomai
    n/esmlib/jdom.jar;D:/bea/user_projects/ESMdomain/esmlib/oracle.jar;D:/bea/user_projects/ESMdomain/esmlib/repo
    rting.jar;D:/bea/user_projects/ESMdomain/esmlib/xerces.jar, -d, tmp_ejbSramamoorthy7001myserver\-au306wtcrywq
    , @C:\DOCUME~1\SRAMAM~1\LOCALS~1\Temp\compileList29351.tmp])
    at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:249)
    at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:344)
    at weblogic.ejb20.deployer.EJBDeployer.runEJBC(EJBDeployer.java:489)
    at weblogic.ejb20.deployer.EJBDeployer.compileEJB(EJBDeployer.java:819)
    at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1268)
    at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:232)
    at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:1570)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:737)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:458)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareAllStagedApplications(SlaveDeployer.java:490
    at weblogic.management.deploy.slave.SlaveDeployer.initialize(SlaveDeployer.java:253)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.initialize(DeploymentManagerServer
    LifeCycleImpl.java:150)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    <Jul 29, 2004 11:44:23 AM EDT> <Error> <Deployer> <149231> <The slave deployer was unable to set the activati
    on state to true for the application appsdiresm_ear-0
    weblogic.management.ApplicationException: activate failed forwar
    Module Name: war, Error: weblogic.j2ee.DeploymentException: Could not setup environment - with nested excepti
    on:
    [weblogic.deployment.EnvironmentException: Could not resolve ejbLink: RackManager]
    TargetException:
    Unable to deploy EJB: jar from jar:Error 503--Service Unavailable
    Thanks in advance and any help will be greatly appreciated!
    Message was edited by sssd at Jul 29, 2004 10:56 AM

    Hi,
    These are the following errors that I get. This is an already deployed application so not sure why weblogic deploys it again. This does not happen in all the machines.
    Can someone tell me why it is doing this and how to make the application come up?
    This is the error that I get when logging into the application:
    Error 503--Service Unavailable
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.4 503 Service Unavailable
    The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay may be indicated in a Retry-After header. If no Retry-After is given, the client SHOULD handle the response as it would for a 500 response.
    Webserver console errors:
    Unable to deploy EJB: jar from jar:
    Compiler failed executable.exec(java.lang.String[javac, -nowarn, -classpath, D:\bea\user_projects\ESMdomain\t
    mp_ejbSramamoorthy7001myserver\-au306wtcrywq;D:\bea\user_projects\ESMdomain\applications\esm.ear\jar;D:\bea\j
    dk131_06\jre\lib\rt.jar;D:\bea\jdk131_06\jre\lib\i18n.jar;D:\bea\jdk131_06\jre\lib\sunrsasign.jar;D:\bea\jdk1
    31_06\jre\classes;D:\bea\jdk131_06\jre\lib\tools.jar;D:/bea/weblogic700\server\lib\weblogic_sp.jar;D:/bea/web
    logic700\server\lib\weblogic.jar;D:\bea\jdk131_06\jre\jre\lib\rt.jar;JAVA_HOME\lib\dt.jar;D:/bea/weblogic700/
    server/lib/mbeantypes/wlManagement.jar;D:/bea/weblogic700/server/lib/mbeantypes/ESMSecurityProviders.jar;D:/b
    ea/user_projects/ESMdomain/applications/esmconfig;D:/bea/user_projects/ESMdomain/applications/esm.ear/jar;D:/
    bea/user_projects/ESMdomain/esmlib/avalon.jar;D:/bea/user_projects/ESMdomain/esmlib/batik.jar;D:/bea/user_pro
    jects/ESMdomain/esmlib/bsh-1.2b7.jar;D:/bea/user_projects/ESMdomain/esmlib/comm.jar;D:/bea/user_projects/ESMd
    omain/esmlib/multipartrequest.jar;D:/bea/user_projects/ESMdomain/esmlib/crimson.jar;D:/bea/user_projects/ESMd
    omain/esmlib/fop.jar;D:/bea/user_projects/ESMdomain/esmlib/gnu-regexp-1.1.4.jar;D:/bea/user_projects/ESMdomai
    n/esmlib/jdom.jar;D:/bea/user_projects/ESMdomain/esmlib/oracle.jar;D:/bea/user_projects/ESMdomain/esmlib/repo
    rting.jar;D:/bea/user_projects/ESMdomain/esmlib/xerces.jar, -d, tmp_ejbSramamoorthy7001myserver\-au306wtcrywq
    , @C:\DOCUME~1\SRAMAM~1\LOCALS~1\Temp\compileList29351.tmp])
    at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:249)
    at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:344)
    at weblogic.ejb20.deployer.EJBDeployer.runEJBC(EJBDeployer.java:489)
    at weblogic.ejb20.deployer.EJBDeployer.compileEJB(EJBDeployer.java:819)
    at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1268)
    at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:232)
    at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:1570)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:737)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:458)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareAllStagedApplications(SlaveDeployer.java:490
    at weblogic.management.deploy.slave.SlaveDeployer.initialize(SlaveDeployer.java:253)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.initialize(DeploymentManagerServer
    LifeCycleImpl.java:150)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    <Jul 29, 2004 11:44:23 AM EDT> <Error> <Deployer> <149231> <The slave deployer was unable to set the activati
    on state to true for the application appsdiresm_ear-0
    weblogic.management.ApplicationException: activate failed forwar
    Module Name: war, Error: weblogic.j2ee.DeploymentException: Could not setup environment - with nested excepti
    on:
    [weblogic.deployment.EnvironmentException: Could not resolve ejbLink: RackManager]
    TargetException:
    Unable to deploy EJB: jar from jar:Error 503--Service Unavailable
    Thanks in advance and any help will be greatly appreciated!
    Message was edited by sssd at Jul 29, 2004 10:56 AM

  • Adding file to Application deployment content after client deployment

    Hi,
    I have been testing deploying Visio 2013 via Application deployment and am having troubles with running an uninstall.
    After deploying the software successfully to my test client, I needed to make a change to the uninstall process & have added an new file that is now used during an uninstall.
    When running the uninstall on my test client, I can see the correct commandline being used; however it fails because the additional file has not been downloaded to the CCMCache folder on the client.
    I have run an 'update content' for the distribution type, cleared the clients cache & re-run the uninstall from Software Center. The client redownloads the source files, however it is still missing the new file that it needs.
    Checking on the distribution points, I can see the new file referenced in the SCCMContentLib folder.
    I tried removing previous revisions from the Application via the console & now when running the uninstall on the client it fails immediately without downloading the source files. Checking AppEnforce.log, it looks like the uninstall is referencing the
    old revision of the Application Deployment still (which didn't contain the additional file, and no longer exists in the revision history).
    Can anyone point me in the right direction to get this resolved?
    And also, what is the correct procedure for updating/adding files to an already deployed application?
    Thanks in advance!

    If you're confident that the DP contains the new file, try deleting the deployment and re-doing it (not the deployment type - just the deployment to your test collection).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Accessing EJB in already deployed jar

    Hi
    I have an .jar file already deployed into my weblogic server. Am getting an error when trying to access an EJB in the .jar from my web application(.war).
    Even if i package the .jar and .war together am gettign a JNDI exception for the EJB's
    Is there any work around to access an EJB in .jar from a jsp /servlet in .war file

    Hi
    I have an .jar file already deployed into my weblogic server. Am getting an error when trying to access an EJB in the .jar from my web application(.war).
    Even if i package the .jar and .war together am gettign a JNDI exception for the EJB's
    Is there any work around to access an EJB in .jar from a jsp /servlet in .war file

  • System Center 2012 Endpoint Protection Deployment State of Client= unmanaged

    Hello Everyone,
    We are facing issues deploying SCEP on machines. The deployment state for clients shows as un-managed. Client settings & AntiMalware policy have been configured properly. SCCM Client has been installed successfully, however the Endpoint Protect deployment
    state would not change to "To be Installed"/'Managed" from "unmanaged". Even after trying to install SCEP manually along with policy it shows as unmanaged. Please suggest how do i proceed further in this case.
    Thanks
    Sumit

    Below is what it shows in EndpointProtectionAgent.log
    =========
    Handle EP Deployment policy. EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    Failed to get EP event code under registry key SOFTWARE\Microsoft\CCM\EPAgent EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    Failed to get EP event message under registry key SOFTWARE\Microsoft\CCM\EPAgent EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    start to send State Message with topic type = 2001, state id = 1, and error code = 0x00000000 EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    Start to send state message. EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    Send state message successfully EndpointProtectionAgent 06/05/2014 15:53:48 4648 (0x1228)
    Service startup notification received EndpointProtectionAgent 06/05/2014 15:54:54 2504 (0x09C8)
    Endpoint is triggered by CCMTask Execute. EndpointProtectionAgent 06/05/2014 15:54:54 2504 (0x09C8)
    File C:\Windows\ccmsetup\SCEPInstall.exe version is 4.1.522.0. EndpointProtectionAgent 06/05/2014 15:54:54 2504 (0x09C8)
    EP version 4.1.522.0 is already installed. EndpointProtectionAgent 06/05/2014 15:54:54 2504 (0x09C8)
    Expected Version 4.1.522.0 is exactly same with installed version 4.1.522.0. EndpointProtectionAgent 06/05/2014 15:54:54 2504 (0x09C8)

  • 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

  • Cannot deploy EAR.  There are already active sessions

    Hi WebDyn Pro's,
    I'm running NW SP14
    Sporadically, I cannot deploy my WebDynpro app to the NW server.  In NWDS, I indicate to Deploy and run.  I get an error in the console indicating:
    <b>"Cannot log in.  There are already active sessions.  Session id 0 An administrator logged in via API /"</b>
    I restarted the server and the NWDS workstations but that didn't help.  I've had this same error in the past.  Usually it goes away.  I thought I solved it, but evidently not.
    On the NW server, I cannot log into SDM GUI either.  I get the same error.
    As mentioned above, this error occurs sporadically.  I can deploy just fine 50 times.  And then all of sudden I start getting this error, even though no one has touched the server.
    Thoughts?
    Thanks,
    Kevin

    Hi,
    Have you checked if anyone else is actually using SDM to deploy?
    There are some quite significant deployment tasks that my basis team perform which will occupy the SDM tool for a long time and stop me and my other developers from deploying anything.
    I've also caused this problem myself when my SDM deployment has stalled - I've been deploying a custom B2B .ear file and the deployment has just got stuck in processing for ages.  In the end I've had to kill the SDM task from Windows Task Manager but this causes SDM to think someone is still logged in so I've then had to restart the SDM service from the SAP Management Console.
    If this is not the case I'd suggest raising it through OSS if you can't find any relevant messages on there.
    Hope this helps,
    Gareth Ryan.

  • Windows WSUS 3.276 on Windows Server 2008 R2 not deploying updates to Clients

    Update Services
    Microsoft Corporation
    Version: 3.2.7600.226
    Updates services is downloading Current updates for the platforms I selected.
    It is finding and interfacing with all windows computers are the network.
    I select updates to install to computer groups but they are not getting installed.
    You can see from the report it needs to install 41 updates but they are not being installed.
    Why are the not getting installed?
    "No events are available. This may be because the client has not yet sent the event or the events have been purged from the server. Please refer to %WINDIR%\WindowsUpdate.log on robtruet-pc.leopold.int for details."
    The Report for most of the Clients show. 
    0 updates failed to install.
    40 updates have not been installed
    0 updates have been install or not applicable.
    0 updates have unknown status.
    I login to the client and it shows Windows is up to date.  But I look at updates installed history and now updates exist for the last 60 days.
    I included the log from the client below for one day.
    2015-03-04    23:27:18:212    1184    ae8    Handler    Using CBS interface ICbsSession7
    2015-03-04    23:27:23:407    1184    ae8    Agent      * Found 0 updates and 77 categories in search; evaluated appl. rules of 1448 out of 2726 deployed entities
    2015-03-04    23:27:23:500    1184    ae8    Agent    *********
    2015-03-04    23:27:23:500    1184    ae8    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-03-04    23:27:23:500    1184    ae8    Agent    *************
    2015-03-04    23:27:23:578    1184    84c    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {D60CD7C9-6547-413B-AB87-35F737F8BA18}]
    2015-03-04    23:27:23:578    1184    84c    AU      # 0 updates detected
    2015-03-04    23:27:23:578    1184    84c    AU    #########
    2015-03-04    23:27:23:578    1184    84c    AU    ##  END  ##  AU: Search for updates [CallId = {D60CD7C9-6547-413B-AB87-35F737F8BA18}]
    2015-03-04    23:27:23:578    1184    84c    AU    #############
    2015-03-04    23:27:23:578    1184    84c    AU    Successfully wrote event for AU health state:0
    2015-03-04    23:27:23:578    1184    84c    AU    Featured notifications is disabled.
    2015-03-04    23:27:23:578    1184    84c    AU    AU setting next detection timeout to 2015-03-05 09:22:52
    2015-03-04    23:27:23:578    1184    84c    AU    Setting AU scheduled install time to 2015-03-05 08:00:00
    2015-03-04    23:27:23:578    1184    84c    AU    Successfully wrote event for AU health state:0
    2015-03-04    23:27:23:609    1184    84c    AU    Successfully wrote event for AU health state:0
    2015-03-04    23:27:28:539    1184    ae8    Report    REPORT EVENT: {1A5F7E5E-1B5A-4E13-A21C-489D2906CB75}    2015-03-04 23:27:23:485-0500    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2015-03-04    23:27:28:539    1184    ae8    Report    REPORT EVENT: {3FA6CBE2-31F4-4D8E-9E44-47EDCC077FCC}    2015-03-04 23:27:23:500-0500    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2015-03-04    23:27:28:555    1184    ae8    Report    CWERReporter finishing event handling. (00000000)
    2015-03-04    23:39:15:718    1184    ae8    Report    Uploading 2 events using cached cookie, reporting URL = http://192.168.1.24:8530/ReportingWebService/ReportingWebService.asmx
    2015-03-04    23:39:15:796    1184    ae8    Report    Reporter successfully uploaded 2 events.
    2015-03-05    03:00:09:814    1184    e88    AU    Forced install timer expired for scheduled install
    2015-03-05    03:00:09:814    1184    e88    AU    UpdateDownloadProperties: 0 download(s) are still in progress.
    2015-03-05    03:00:09:829    1184    e88    AU    Setting AU scheduled install time to 2015-03-06 08:00:00
    2015-03-05    03:00:09:829    1184    e88    AU    Successfully wrote event for AU health state:0
    2015-03-05    03:00:14:837    1184    2680    Report    CWERReporter finishing event handling. (00000000)
    2015-03-05    04:22:52:598    1184    e88    AU    #############
    2015-03-05    04:22:52:598    1184    e88    AU    ## START ##  AU: Search for updates
    2015-03-05    04:22:52:598    1184    e88    AU    #########
    2015-03-05    04:22:52:676    1184    e88    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {F615A07F-8986-4EB3-9D45-319F2AE1499A}]
    2015-03-05    04:22:52:676    1184    1864    Agent    *************
    2015-03-05    04:22:52:676    1184    1864    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-03-05    04:22:52:691    1184    1864    Agent    *********
    2015-03-05    04:22:52:691    1184    1864    Agent      * Online = Yes; Ignore download priority = No
    2015-03-05    04:22:52:691    1184    1864    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2015-03-05    04:22:52:691    1184    1864    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2015-03-05    04:22:52:691    1184    1864    Agent      * Search Scope = {Machine}
    2015-03-05    04:22:53:206    1184    1864    Setup    Checking for agent SelfUpdate
    2015-03-05    04:22:53:237    1184    1864    Setup    Client version: Core: 7.6.7600.320  Aux: 7.6.7600.320
    2015-03-05    04:22:55:952    1184    1864    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
    2015-03-05    04:22:56:092    1184    1864    Misc     Microsoft signed: NA
    2015-03-05    04:22:56:123    1184    1864    Misc    WARNING: Cab does not contain correct inner CAB file.
    2015-03-05    04:22:56:123    1184    1864    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
    2015-03-05    04:22:56:139    1184    1864    Misc     Microsoft signed: NA
    2015-03-05    04:22:56:170    1184    1864    Setup    Wuident for the managed service is valid but not quorum-signed. Skipping selfupdate.
    2015-03-05    04:22:56:186    1184    1864    Setup    Skipping SelfUpdate check based on the /SKIP directive in wuident
    2015-03-05    04:22:56:186    1184    1864    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2015-03-05    04:23:22:269    1184    1864    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2015-03-05    04:23:22:269    1184    1864    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://192.168.1.24:8530/ClientWebService/client.asmx
    2015-03-05    04:23:22:909    1184    1864    PT    WARNING: Cached cookie has expired or new PID is available
    2015-03-05    04:23:22:940    1184    1864    PT    Initializing simple targeting cookie, clientId = b4d326e5-c396-4ee2-b2c4-c7cd25795a63, target group = , DNS name = arm-pal-ws10.leopold.int
    2015-03-05    04:23:22:940    1184    1864    PT      Server URL = http://192.168.1.24:8530/SimpleAuthWebService/SimpleAuth.asmx
    2015-03-05    04:23:34:702    1184    1864    Handler    Using CBS interface ICbsSession72015-03-05    19:36:45:323    1184    2390  
     Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:45:432    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:45:744    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:45:869    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:45:978    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:087    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:181    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:306    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:399    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:680    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:789    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:46:883    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:47:086    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:47:179    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:020    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:207    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:301    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:410    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:504    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:597    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:722    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:862    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:49:956    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:065    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:159    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:299    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:393    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:518    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:611    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:705    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:814    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:50:908    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:017    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:142    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:251    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:360    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:454    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:547    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:844    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:51:953    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:062    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:156    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:249    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:358    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:530    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:624    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:717    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:842    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:52:951    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:060    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:170    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:263    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:372    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:497    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:606    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:700    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:794    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:53:934    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:028    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:121    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:230    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:340    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:433    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:527    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:714    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:901    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:54:995    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:088    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:182    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:322    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:416    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:510    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:603    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:697    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:790    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:884    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:55:978    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:56:336    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:56:446    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:56:539    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:56:648    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:56:836    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:57:007    1184    2390    Handler    Using CBS interface ICbsSession7
    2015-03-05    19:36:58:349    1184    2390    Agent      * Found 0 updates and 77 categories in search; evaluated appl. rules of 1448 out of 2726 deployed entities
    2015-03-05    19:36:58:489    1184    2390    Agent    *********
    2015-03-05    19:36:58:489    1184    2390    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-03-05    19:36:58:489    1184    2390    Agent    *************
    2015-03-05    19:36:58:552    1184    1540    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {60067F42-15BA-49A9-BB09-5DE40DC141E4}]
    2015-03-05    19:36:58:552    1184    1540    AU      # 0 updates detected
    2015-03-05    19:36:58:552    1184    1540    AU    #########
    2015-03-05    19:36:58:552    1184    1540    AU    ##  END  ##  AU: Search for updates [CallId = {60067F42-15BA-49A9-BB09-5DE40DC141E4}]
    2015-03-05    19:36:58:552    1184    1540    AU    #############
    2015-03-05    19:36:58:567    1184    1540    AU    Successfully wrote event for AU health state:0
    2015-03-05    19:36:58:567    1184    1540    AU    Featured notifications is disabled.
    2015-03-05    19:36:58:567    1184    1540    AU    AU setting next detection timeout to 2015-03-06 05:37:36
    2015-03-05    19:36:58:567    1184    1540    AU    Setting AU scheduled install time to 2015-03-06 08:00:00
    2015-03-05    19:36:58:567    1184    1540    AU    Successfully wrote event for AU health state:0
    2015-03-05    19:36:58:583    1184    1540    AU    Successfully wrote event for AU health state:0
    2015-03-05    19:37:03:559    1184    2390    Report    REPORT EVENT: {A94CF35E-0BD0-4E1F-9BF4-8263ED8ACAC8}    2015-03-05 19:36:58:474-0500    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2015-03-05    19:37:03:559    1184    2390    Report    REPORT EVENT: {B4FB174B-F3C9-4269-A9C7-180C1B25AEAC}    2015-03-05 19:36:58:489-0500    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2015-03-05    19:37:03:559    1184    2390    Report    CWERReporter finishing event handling. (00000000)
    2015-03-05    19:48:50:738    1184    2390    Report    Uploading 2 events using cached cookie, reporting URL = http://192.168.1.24:8530/ReportingWebService/ReportingWebService.asmx
    2015-03-05    19:48:50:801    1184    2390    Report    Reporter successfully uploaded 2 events.

    Hi,
    Please make sure that the update files have been downloaded on the WSUS server.
    Update will be available only if it has been downloaded.
    Also, please check if the Network Service has the Full Control permission on the WSUS content folder.
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • 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.

Maybe you are looking for