Deployment and Redeployment

Hi, everyone.
          How are you deploying your apps? Are you using the weblogic.deploy tool (do
          you use -component with your cluster as a target?)? The console? Or do you
          just copy your archive to the applications directory? There really doesn't
          seem to be much in the WebLogic docs about clustered deployment; just an
          emphasis on homogeneity.
          Should redeployment across a cluster even work?
          I've been redeploying an application to my cluster by copying it to the
          applications directory for my domain (it's a .ear) on the box where my admin
          server is running. The first time I deployed it, I targeted it to my
          cluster.
          This pretty much works, but doesn't work great. Every time I redeploy (copy
          a new version of the file to the directory), I get errors on the cluster
          servers, which means they must be restarted for the redeployment to work.
          Thanks for any experiences.
          --Kevin
          

I'm guessing the only approved way to do this is to use the console. It
          doesn't seem that the weblogic.deploy tool likes cluster names as targets.
          I tried deploying with the deploy tool, targeting things with the console,
          and then updating with the deploy tool. However, on update, the deploy tool
          doesn't return for a while, then displays the error:
          Giving up after waiting more than 2 minutes
          Or, sometimes, the exception:
          javax.management.RuntimeErrorException: Error thrown by the setAttribute
          weblogi
          c.management.internal.WebLogicAttribute@516dedmethod of the Dynamic MBean
          <<no stack trace available>>
          java.lang.NullPointerException
          at weblogic.deploy.deployApplication(deploy.java:420)
          at weblogic.deploy.deploy(deploy.java:367)
          at weblogic.deploy.runBody(deploy.java:222)
          at weblogic.utils.compiler.Tool.run(Tool.java:81)
          at weblogic.deploy.main(deploy.java:1036)
          Overall, I'd say redeployment to a cluster needs some clarification. I
          don't think it works under any circumstance while the cluster is up.
          --Kevin
          "Kevin Lewis" <[email protected]> wrote in message
          news:[email protected]...
          > Thanks for the reply, Kumar.
          >
          > What do you recommend instead of copying to the applications directory?
          >
          > --Kevin
          >
          > "Kumar Allamraju" <[email protected]> wrote in message
          > news:[email protected]...
          > > Currently we will deploy any application we found in applications
          directly
          > > directly on admin server,
          > > no matter if admin server was chosen to be a target or not. We should
          > probably
          > > just discover
          > > the application, but then let somebody choose the targets from admin
          > server
          > > console
          > >
          > > The applications directory was designed to only work on the admin
          server.
          > The
          > > whole purpose
          > > of it was to have a place to quickly test stuff during development in a
          > single
          > > server mode.
          > >
          > > so, setting a target other than the admin server isn't supposed to work.
          > >
          > > --
          > > Kumar
          > >
          > > Kevin Lewis wrote:
          > >
          > > > Hi, everyone.
          > > >
          > > > How are you deploying your apps? Are you using the weblogic.deploy
          tool
          > (do
          > > > you use -component with your cluster as a target?)? The console? Or
          do
          > you
          > > > just copy your archive to the applications directory? There really
          > doesn't
          > > > seem to be much in the WebLogic docs about clustered deployment; just
          an
          > > > emphasis on homogeneity.
          > > >
          > > > Should redeployment across a cluster even work?
          > > >
          > > > I've been redeploying an application to my cluster by copying it to
          the
          > > > applications directory for my domain (it's a .ear) on the box where my
          > admin
          > > > server is running. The first time I deployed it, I targeted it to my
          > > > cluster.
          > > >
          > > > This pretty much works, but doesn't work great. Every time I redeploy
          > (copy
          > > > a new version of the file to the directory), I get errors on the
          cluster
          > > > servers, which means they must be restarted for the redeployment to
          > work.
          > > >
          > > > Thanks for any experiences.
          > > >
          > > > --Kevin
          > >
          >
          >
          

Similar Messages

  • War Files And Their Deployment and Redeployment

    Howdy
    I have a WAR file that a developer gave me which I deployed on a Linux box no problem.
    Now I would like to add a jsp file and custom tag to this application.
    This is what I tried:
    I turned the war file into a zip file extracted the contents and then added my jsp page the class file for the custom tag modified the web.xml file for the tag and added a tld file for the tag as well.
    Then I rezipped the files and renamed to a .war file and deployed it on the linux box. The previous existing files work but my new jsp page comes up with a HTTP 404 Not Found error.
    Now the new jsp and custom tag work on my development machine just not on the live server when reployed into the other existing app.
    What am I missing? Or am I totally off with trying to redeploy the app in this way?
    Any help appreciated.
    Adam

    For deployment you need to use ant

  • The best way to deploy and redploy of a multiple SOA application

    Hi all,
    I'm looking for the best way to deploy and redeploy a multiple SOA application.
    1) The multiple SOA application contains many projects. Some projects depend on another projects.
    2) WebLogic is in productive mode.
    I wound like automaticly deploy and redeploy my multiple SOA application.
    Does anyone have any experience of this?
    Many thanks
    PG

    We use ant scripts to automatically deploy and redeploy multiple composites.
    The ant scripts gets shipped along with the SOA installation. The ant script that is used for the deployment is:
    ${oracle.home}/bin/ant-sca-deploy.xml
    You can also use the same for your deployment.

  • HELP!! ClassCastException with custom module classloader hierarchy and redeployment

    Hi,
    I am defining custom module classloader hierarchy to avoid redeploying of the
    entire application mainly because we have so many EJBs and it takes a long time
    to deploy the entire app. I deploy my app using the exploded directory, add a
    new method to an EJB in my dal.jar, redeploy, run my unittest and I get ClassCastException.
    I am using weblogic.Deployer utility to reploy my module using "-targets dal.jar@accsserver"
    argument. I even tried undeploying that module and redeploy again with no luck.
    here is weblogic-application.xml definition of the custom class loader
    <classloader-structure>
    <module-ref>
         <module-uri>floghmi.war</module-uri>
         </module-ref>
    <module-ref>
         <module-uri>cts.jar</module-uri>
         </module-ref>
    <module-ref>
         <module-uri>fdbs.jar</module-uri>
         </module-ref>
    <classloader-structure>
         <module-ref>
              <module-uri>dml.jar</module-uri>
         </module-ref>
    <classloader-structure>
         <module-ref>
         <module-uri>dal.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </classloader-structure>
    thanks,
    Nasrin

    Rob,
    regarding your question on redeploying the whole app without the classloader
    structure, yes, that works fine. If I change a class and redeploy the whole app,
    things are ok. However, when I speocify the classloader structure, and try to
    redeploy the dal.jar, I get ClassClasException.
    You are right about dml.jar being in a separate classloader. I have changed my
    structure after I posted my question to load dml.jar from the application classloader.
    So Rob, is there a bug in Weblogic 8.1 that causes this exception?
    please let me know, I am anxiously waiting your response.
    thanks,
    Nasrin
    Rob Woollen <[email protected]> wrote:
    >
    >
    Nasrin Azordegan wrote:
    Rob,
    if I remove my classloader structure from weblogic-application.xml,I get an
    error during redeployment, saying "You must include all of<list ofmy module names
    here> in your files list to modify <dal.jar>. Yes, the server enforces constraints on partial redeployments. You must
    deploy all the modules in a given classloader and any modules in child
    classloaders.
    Just to make sure, if you initially deploy your app, or redeploy the
    whole thing, it works fine without the classloader-structure, right?
    The problem I am trying to solve is to minimize our deployment time.Our application
    has over 700 CMP 2.0 entity beans and 200 session beans. Our applicationdeployment
    follows the J2EE layer architecture. The data mapping layer which consistof 700
    entity beans are located in dml.jar. The data access layer which consistof 200
    session beans are located in dal.jar. We create our ear with thesetwo jar files
    plus some other framework jars and deploy on bea weblogic 8.1 SP2 andthat takes
    about an hour. I need to be able to modify a session bean, i.e. changethe implementation
    of a session bean or add a new method to a session bean interface andredeploy
    only data access layer, the dal.jar, not the entity beans. This explainswhy you
    see dml.jar in a classloader with a child classloader that loads dal.jar.
    I included the ClassCastException from weblogic server console below.What is
    happening is that I have a session bean with 6 methods that just doesa println.
    I deploy my session bean, ExerciseSessionBeanFactory, and run my unittest that
    invokes test1 through test6 methods. I modify my bean to add "test7"method and
    redeply dal.jar successfully. I run my unit test that invokes test1through test7
    methods and then I get a ClassCastException.
    I hope this helps. Please let me know if you need more details.If you push dml.jar into a subloader, that means you can change dml.jar
    without touching anything in the parent loader. However, it also means
    that you've isolated it's classes and other modules can't see them.
    -- Rob
    thanks,
    Nasrin
    in test method
    in test2 method
    in test3 method
    in test4 method
    in test5 method
    in test6 method
    <Apr 12, 2004 9:26:03 AM PDT> <Warning> <EJB> <BEA-010096> <The Message-Driven
    EJB: SimTimeListener is unable to connect
    to the JMS destination: cn=t.cms.cts.simTimeInfo. Connection failedafter 184
    attempts. The MDB will attempt to reconne
    ct every 10 seconds. This log message will repeat every 600 secondsuntil the
    condition clears.>
    <Apr 12, 2004 9:26:03 AM PDT> <Warning> <EJB> <BEA-010061> <The Message-Driven
    EJB: SimTimeListener is unable to connect
    to the JMS destination: cn=t.cms.cts.simTimeInfo. The Error was:
    [EJB:011011]The Message-Driven EJB attempted to connect to the JMSdestination
    with the JNDI name: cn=t.cms.cts.simTimeI
    nfo. However, the object with the JNDI name: cn=t.cms.cts.simTimeInfois not a
    JMS destination, or the destination found
    was of the wrong type (Topic or Queue).>
    in test method
    in test2 method
    in test3 method
    in test4 method
    in test5 method
    in test6 method
    <Apr 12, 2004 9:28:26 AM PDT> <Warning> <RMI> <BEA-080003> <RuntimeExceptionthrown
    by rmi server: com.trs.cv.infr.istr.
    sc.sim.factory.ejb.ExerciseSessionFactory_zhotso_EOImpl.test7()
    java.lang.ClassCastException.
    java.lang.ClassCastException
    at com.trs.cv.infr.istr.sc.sim.factory.ejb.ExerciseSessionFactory_zhotso_EOImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Rob Woollen <[email protected]> wrote:
    You'll have to give me some more information on the ClassCastException.
    Where does it happen? Print out the classnames and the
    classloaders of the 2 objects.
    Does everything work fine if you remove your classloader-structure?
    -- Rob
    Nasrin Azordegan wrote:
    Hi,
    I am defining custom module classloader hierarchy to avoid redeployingof the
    entire application mainly because we have so many EJBs and it takesa long time
    to deploy the entire app. I deploy my app using the exploded directory,add a
    new method to an EJB in my dal.jar, redeploy, run my unittest and
    I
    get ClassCastException.
    I am using weblogic.Deployer utility to reploy my module using "-targetsdal.jar@accsserver"
    argument. I even tried undeploying that module and redeploy again
    with
    no luck.
    here is weblogic-application.xml definition of the custom class loader
    <classloader-structure>
    <module-ref>
         <module-uri>floghmi.war</module-uri>
         </module-ref>
    <module-ref>
         <module-uri>cts.jar</module-uri>
         </module-ref>
    <module-ref>
         <module-uri>fdbs.jar</module-uri>
         </module-ref>
    <classloader-structure>
         <module-ref>
              <module-uri>dml.jar</module-uri>
         </module-ref>
    <classloader-structure>
         <module-ref>
         <module-uri>dal.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </classloader-structure>
    thanks,
    Nasrin

  • Deployment and .ear files

    I have two questions; one may relate to the other.
    First, I would like to know the best way to deploy Session beans which have dependencies on other EJBs, be they Entity Beans or other Session Beans. The dependency is limited to the implementation class, not the interfaces. I have tried just putting all my EJBs in the classpath in startWebLogic.sh, but I get the "bean cannot be redeployed while the server is running" warning. Is there another way?
    Second, I have read of .ear files, which seem to be a good way of dealing with many EJBs/JSPs en masse(I'm working with ~100 EJBs and ~2000 JSPs). However, I haven't found anything on exactly what they are, how to use them, or how to generate them.
    If anyone has these answers, or can point me to a good site on the matter, I'd appreciate it.
    Thanks, --Tom Seufert

    Hi Tom,
    The "best" way to generate EAR files is to use an IDE that has built-in
    tools to do it -OR- to use ANT (kind of an xml-based gnu-make-like utility
    for Java).
    Most dev groups that I've seen start by using .sh/.cmd (i.e. batch) files to
    generate the JAR/WAR/EAR files. ANT allows you to do things like
    dependency-based builds, to avoid re-generating parts that are not
    necessary. That was very handy with WL 5.1 when EJBC could take several
    minutes (even running locally with a fast compiler like JIKES). (I have
    only used ANT a tiny bit, but Jesse Tilly who frequents this newsgroup is an
    expert with it.)
    The EAR is just a means to bundle different parts of your application
    together. For example, your EJBs will be bundled into a JAR, and your JSPs
    will be bundled into a WAR, and you can put both into an EAR. WL6.0 will
    accept an EAR file for deployment, will auto-deploy, and will even re-deploy
    it if the EAR changes!
    The easiest way to build a JAR or WAR or EAR file within a batch or build
    file is to use the JAR command. If you have a directory structure that is
    exactly how the JAR file will be layed out, then I believe the command is
    "jar -cfm0 my.jar *" or "jar -cfm0 my.jar .".
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    +1.617.623.5782
    WebLogic Consulting Available
    "Tom Seufert" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    I have two questions; one may relate to the other.
    First, I would like to know the best way to deploy Session beans whichhave dependencies on other EJBs, be they Entity Beans or other Session
    Beans. The dependency is limited to the implementation class, not the
    interfaces. I have tried just putting all my EJBs in the classpath in
    startWebLogic.sh, but I get the "bean cannot be redeployed while the server
    is running" warning. Is there another way?
    >
    Second, I have read of .ear files, which seem to be a good way of dealingwith many EJBs/JSPs en masse(I'm working with ~100 EJBs and ~2000 JSPs).
    However, I haven't found anything on exactly what they are, how to use them,
    or how to generate them.
    >
    If anyone has these answers, or can point me to a good site on the matter,I'd appreciate it.
    >
    Thanks, --Tom Seufert

  • Deployment and Deployer Role; a question

    Hi All,
    I have a question about the Deployer Role in WLS8.1/WLI8.1. I was playing around
    with this Deployer Role and created a user with it. This is in WLS8.1. what i
    was thinking was that this user (a deployer user) could be able to deploy/undeploy/redeploy
    applications .....which worked fine.....BUT this is what i have found to be incorrect
    since i want this my Deployer user to have the priviledge for deployments ONLY.
    The user that i created can also change JMS, JDBC connection pool settings .........which
    in my case is incorrect.
    can somebody please suggest some workaround for this .....i want my Deployer user
    to do ONLY deployment stuff and not ANYTHING ELSE(like JMS,JDBC stuff or etc).
    -steve

    1. The AM agent can return ldap attributes after authentication. What you can do is use Sun Directory Server Proxy to provide a virtual view of both LDAP and your DB to AM.
    2. Sun Role Manager is a tool for role mining and attestation, ie it helps with compliancy verifications which is required by many businesses these days. Sun Identity Manager does not need Sun Role Manager if you just want to provision roles for your users, however, as it appears to be the case in your envirionment, the roles created by IDM are exported to SRM for compliance verifications.

  • Using asadmin to update and redeploy

    I am aware that, using deploytool, it is relatively straight forward to update files using the tools -> update module files...and then redeploy the component. However i want to do this using the asadmin tool from command line. Is this possible?
    I have tried a work around by recreating the war file using asant and deploying it but i am getting strange errors when trying to access the web services. I am obviously creating the war slightly differently. I copied the webservice.xml, web.xml, sun-web.xml and mapping.xml files from the deployed details in the AppServer directory structure.
    Any ideas on either of these two problems, obviously one will solve the other. Thanks, Brian.

    Hi, Brian
    I am aware that, using deploytool, it is relatively
    straight forward to update files using the tools ->
    update module files...and then redeploy the component.
    However i want to do this using the asadmin tool from
    command line. Is this possible?Yes, you will just do another asadmin deploy. Say, if the war you tried to deploy is "foo.war"
    1. First deploy command deploys the war
    asadmin deploy foo.war
    2. Modify the contents, repack the war file
    3. Any subsquent deploy commands redeploy the war
    asadmin deploy foo.war
    And I don't know if you are aware of directory deployment:
    http://docs.sun.com/source/817-6087/dgdeploy.html#wp52146
    It's an easier approach for development use, you don't need to pack the war then repack the war when you need to redeploy after modifying contents. What you do is have your original contents in a directory structure described as the above doc, say the location of the directory is "/usr/local/foo"
    1. asadmin deploydir /usr/local/foo (deploy the war initially)
    2. modify files you need to modify in the foo directory
    3. asadmin deploydir /usr/local/foo (redeploy the war with the modified contents)
    Hope this helps.
    - Hong

  • Capture and redeploy Server 2003 with 2 partitions?

    We have an old server than was installed many years ago and the people who set it up at the time partitioned the drive into C and D partitions with the C drive too small to allow for future growth.  Now there is a large software package that requires
    a service pack and there isn't enough room to complete the service pack installation.  Not sure why the large application was installed on the small C drive to begin with.  It is very complicated and slow (days long on the slow server) to reinstall
    the application, so they want to avoid an uninstall and reinstall of the software.
    So far, we have only used MDT 2012 to deploy Windows 7.
    Is it possible to use MDT to capture both partitions of this Server 2003 machine, keeping the drivers, then do a deployment task that partitions the drives with a larger C partition and redeploys the captured image back to both new partitions?
    Also since it is not being "cloned," but rather copied back to the same hardware, we do not want sysprep to be part of the process.  We want it to deploy back exactly the way it was and installed still joined to the domain with the same SID.
    If so, what additional steps and command syntax are required to capture and redeploy a multipartition image?
    Is there a better way to do this other than capturing and redeploying such as reliable software that can repartition a running Windows 2003 server?

    *THIS* is why I don't recommend creating large 2nd partitions on disk 0 (not talking about small recovery and/or Bitlocker boot patitions). Partition Fragmentation. :^)
    There may be some 3rd party tools out that could help (partition magic)? I wouldn't know, haven't really used them
    Best solution is to add a 2nd drive, migrate drive d: to the new disk, delete the 2nd partition, and expand the C: drive. All supported with in box tools.
    Do you have this problem on *multiple* machines, or just one?
    If just one, then boot to WinPE, archive the 2nd partition to external USB, delete the 2nd partition, extend the 1st c: partition to the new desired size, re-create the 2nd partition, and copy the files back.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Speeding up deploy and undeploy time

    Is there anyway to speed up the amount of time that it takes to deploy and
    undeploy an EAR file? We are deploying about 45 EJB in a EAR module and it
    take over 30 min for the process. If we find problems and need to undeploy
    and then deploy again, it is an overly time consuming process.
    Best Regards
    Suneet Shah
    Diamelle Technologies http://www.diamelletechnologies.com
    Cortlandt Manor, NY Dev Center: Bombay India
    Office: 914 739 4386 - Cell: (914) 837-0046
    -----------------------

    Hi Suneet.
    There really is no need to redeploy an app unless changes are made to deployment
    descriptors. Classfiles are extracted to install_dir/ias6/ias/APPS (the
    directory structure is pretty straightforward). You can replace classfiles
    directly and restart the server.
    The packaging article at
    http://developer.iplanet.com/docs/articles/packaging/packaging.jsp explains
    this in greater detail.
    Thx,
    - deepak
    Suneet Shah wrote:
    Is there anyway to speed up the amount of time that it takes to deploy and
    undeploy an EAR file? We are deploying about 45 EJB in a EAR module and it
    take over 30 min for the process. If we find problems and need to undeploy
    and then deploy again, it is an overly time consuming process.
    Best Regards
    Suneet Shah
    Diamelle Technologies http://www.diamelletechnologies.com
    Cortlandt Manor, NY Dev Center: Bombay India
    Office: 914 739 4386 - Cell: (914) 837-0046

  • Compactrio NI 9073 deploy and undeploy on Digital Module issue

    Hi all, i am new to compactrio systems. Currently I have developing some projects using NI crio9073 and I have a digital c series module. 
    Whenever i start my project explorer, I have to undeploy my digital module channels and redeploy again in order to work.
    If i do not do the above step, I cant control my digital outputs. If i do the above step, it works fine.
    Could anyone shed some light please?
    Attached is the screen shot file.
    Thanks!
    Attachments:
    NI 9073.jpg ‏58 KB

    Hi,
    Looks like you are having the same problem we have here.  I think there is a bug in the scan engine.  I've noticed that this dual purpose module has inconsistent numbering when compared to viewing the items in the Distributed System Manager.  Basically my program works just fine when I use a dedicated digital output module but when I try to use the 9375 it does not work.  This is big problem for me since I need to deploy the rt application and then the undeploy/deploy trick will not work.
    Have you gotten any help from NI on this?

  • Huge apple fan, have thousands invested in stock and products. I'm deployed and I want to know a way to play my PS3 through the thunderbolt connector to HDMI? is there any software to support this?

    I would like to start off by saying, that I'm a huge apple fan, even own 8 shares. I have everytihing apple, from multiple phones, two ipads, macbook air, macbook pro, time machine, and 2 apple tv's. So, I easliy have invested enough for a reponse. But, I'm really frustrated right now because I'm deployed and I would love nothing more than to be able to play my PS3 on my macbook pro. I know that this would be easily possible if mac devoted a week to a solution. Or maybe there is already software that would allow me to use my thunderbolt connection to HDMI to connect to my PS3. I have the hardware, all I need is a program that would reconize this. This would only help there sales, so I don't understand why you can't already do this. To be able to use your screen on your macbook pro as a TV for your game consoles would be a huge to boost sales. Please tell me if this is possible and what I need to do it? Or please tell me why this is not possible?

    Welcome to Apple Support Communities
    What you want is Target Display mode. This mode is only supported in Late 2009 and Mid 2010 27-inch iMacs, and Mid 2011 or newer iMacs, but MacBooks Pro are not supported, so you cannot use your MacBook as a display for your PlayStation 4.
    In the case of Late 2009 and Mid 2010 27-inch iMacs, there is an adapter called Kanex XD which allows you to use the iMac as a display for a Xbox 360 or PlayStation 3, but Xbox One and PlayStation 4 are not supported. In other words, you need an external monitor for your PlayStation 4.

  • Unable to Deploy and Run a WebDynPro Application in NWCE 7.1 DS

    I have successfully built a test application in WebDynPro within the NWCE 7.1, but every time I try to deploy and run the application I get the following error:
    No default system is configured in SAP System Registry [ERROR: Apr 24, 2008 10:32:51 AM /userOut/daView_category (eclipse.UserOutLocation) [Thread[Worker-19,5,main]] ]
    It seems like a straightforward error, but when I go to the System Registry I cannot see how to set up a default system for the application.  There is no "DefaultSystem" entry and so I am sure that I have to add one, but cannot find any documentation to help me do this.
    Thanks.

    First, thanks for the fast responses. 
    I had gone to SAP AS JAVA preference before, but couldn't figure out how to get my system to show up in the dropdown box.  When you put in the server name and the 0 instance, it then finds the system and all instances under the system.  That was my missing link.
    I can now deploy and run and move on to my next (inevitable) problem.
    Thanks again.

  • Error executing the Query after deploying and executing the application in WLS 6.1 SP3

    Hi,
    We are trying to run a application by deploying a war file on Web Logic Server
    6.1 SP3. After deploying and at the time of execution of the application, the
    server console displays this error message
    java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1],
    [0], [], [], [], [], [], []
    While debugging thru the application we found that this error comes at the time
    of execution of the query thru the Statement.executeQuery method of java.sql.Statement
    class.
    This same application when deployed on Web Logic Server 8.1 runs perfectly, without
    any hitches.
    Please, provide me the solution to this asap.

    Look for sometime around November. No exact date.
    Eric
    "Dominic Tulley" <[email protected]> wrote in message
    news:[email protected]..
    Thanks Eric,
    you know what I'm going to ask next right?
    Any ideas when SP4 comes out?
    Cheers,
    -Dominic
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]..
    The next version of Apache that we will support will be 2.0.42/2.0.43
    and
    the module for that will be included in the next Service Pack for6.1(SP4)
    and 7.0(SP2).
    The problem with Apache 2 is that when a new release comes out a newmodule
    needs to be compiled. Most of the time. For 2.0.42/2.0.43 this is notthe
    case.
    Regards,
    Eric
    "Dominic Tulley" <[email protected]> wrote in
    message
    news:3da3f246$[email protected]..
    I'm trying to set this up (initially just apache in front of a single
    WLS
    server but ultimately I want to put it in front of a cluster).
    I've installed Apache 2.0.40.
    I've copied the mod_wl_20.so file into the apache modules folder.
    I've edited the httpd.conf file and added the line:
    LoadModule weblogic_module modules/mod_wl_20.so
    When I run apache -t to check the configuration I get the following:
    C:\Program Files\Apache Group\Apache2\bin>apache -t
    Syntax error on line 173 of C:/Program Files/Apache
    Group/Apache2/conf/httpd.conf:
    Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_wl_20.sointo
    server: The specified procedure could not be found.
    So what's going on here?
    Looking at previous postings it sounds like there's an issue with
    versions
    of apache after 2.0.39 but I can't find a download for that version.Also,
    it sounded like the issues were for WLS 7, not 6.1. Can this work
    with
    2.0.40 or am I wasting my time?
    If I get the mod_wl_20.so from dev2dev I get the "incompatible plugin"
    message that has been mentioned in this group already.
    Any suggestions appreciated,
    -Dominic

  • HT3529 I am currently deployed and was using my iMessage to be able to talk to family back in the states and my iMessage stopped working. It will no longer select my number to use as the send/receive. How do I fix this so I can continue to talk to family?

    I am currently deployed and was using my iMessage to be able to talk to family back in the states and my iMessage stopped working. It will no longer select my number to use as the send/receive. How do I fix this so I can continue to talk to family?

    Read here:
    http://support.apple.com/kb/TS2755

  • Windows 8.1 Deploy and Capture stops with no error

    I have a standard deploy and capture TS for Windows 8.1 using the volume media 'install.wim' file.
    The only modification I have made is to add a few applications into the TS.
    Once started from WinPE, the TS goes smoothly, deploying the OS and the applications. It then restarts and just goes to the login prompt. The TS doesn't continue as expected, rebooting to WinPE and running the capture.
    I've checked the smsts.log file and I cant see any obvious errors or anything that could cause this behaviour. The only warning I can see is 'Active reqeust handle is empty, registering with new active request handle' though I'm not sure if this is even
    related.
    So the process I see is:
    Boot to PXE WinPE
    Select build and capture TS for windows 8.1
    Install OS
    Install Apps
    Restart
    Login screen
    Anyone have any ideas?
    SCCM 2012 R2
    Windows 8.1 Professional

    Found the solution.
    Was due to one of the apps I was installing requiring .NET 3.5. 

Maybe you are looking for

  • How to use lightroom with desktop PC and mobile with MacBook Pro ?hav

    At home I have a desktop PC with all my lr files stored on NAS drive I want to be able to access and edit on macbook when away from home. 1 Is it possible or do I need a Mac pc or change laptop to windows based ? 2 do I use remote access to NAS or us

  • HP all in one: can I connect a non-wireless mouse to the computer

    I have an all-in-one desktop computer (HP pavilion with Windows 8) with wireless keyboard and wireless mouse. What happens if the mouse drops to the floor and breaks? Do I need a new mouse or can I connect a normal mouse with a USB to the computer? O

  • Problem in continuous query cache with PofExtractor

    Hi, I am creating a CQC with a filter having PofExtractor. When I try to insert any record in cache it is giving me exception at server side. When I do not use PofExtractor it is working fine. If any one know about this prblem please help. I am using

  • Scanner on L7780 printer

    The scanner software will not load when installed with HP installer wizard.  I have download the software many times and nothing seems to work. It say HP Photosmart needs to be reloaded. I have done that many times does not work. Print and Scan Dr.  

  • Fatal error on installation Weblogic server

    I am following the instruction from -> http://www.oracle-base.com/articles/11g/GridControl11gR1InstallationOnOEL5.php#java_installation Step ->Middleware Installation Grid Control 11g Release 1 no longer bundles the middleware components, so we must