How to deploy hyperic agent as a package

Has anyone ever used VCM to successfully build and deploy a package to install the hyperic agent on all the servers in their environment?  Looking for guidance.
Steve

There is an unofficial procedure.
Test
Virtually Awesomeness: Deploy Hyperic Agents using vCenter Configuration Manager (vCM)

Similar Messages

  • How to deploy and execute SSIS 2012 packages when only SSDT is installed

    Hi, I am facing a weird situation where we did an upgrade for visual studio to vs 2102 on all the dev machines and as part of that moved to SSDT from BIDS but all the database is still SQL Server 2008 R2. Now I have a few SSIS 2012 packages which I cannot
    schedule & run because DTEXEC.exe is not compatible and I get all sorts of version & “Package Load error 0xC0010014 in CPackage::LoadFromXML” error even though I set it up in 32-bit mode and was trying to save it to msdb. I knew I will not be
    able to schedule this as a job in SQL Server Agent but even saving the package does not work.
    Thanks in advance............
    Ione

    I doubt 2012 ssis packages are backwards compatible with 2008r2. 2008r2 doesn't know anything about the project deployment model and i'm sure there's new tasks and connectors in 2012 so the package deployment model ssis packages won't work either.
    You will need a sql 2012 integration services service installed and running somewhere. You need this to execute your 2012 packages
    Jakub @ Adelaide, Australia Blog

  • How to deploy ODI package?

    hi,
    I have ODI package.How to deploy it ?

    http://docs.oracle.com/cd/E23943_01/core.1111/e10113/chapter_odi_messages.htm#sthref11191
    ODI-01444: The master repository signature specified by the client {0} does not match the master repository signature of the agent {1}.
    Cause: The client and the agent are not using the same master repository
    Action: Verify the client and the agent are using the same master repository. Verify that the client is calling the correct agent.
    Level: 1
    Type: ERROR
    Impact: Other
    Edit - Also see Oracle Support doc ID 1443453.1
    Edited by: PeakIndicators_Alastair on Sep 12, 2012 11:08 AM

  • How to deploy agent from windows 32bit to 64bit

    Hello,
    I have installed oem grid on windows 2003 32bit. I have a few remote boxes that are 64 bit windows. How can I use oem grid on 32 bit to deploy agent on the remote 64 bit boxes? I can install agent on 64 bit boxes manually but I want to know how to deploy from 32 bit to 64 bit if possible? Thank you.

    First, the bit version of the OEM OMS Host and the Target Agent Hosts is independent, i.e. you can have OMS on windows 32bit and have several 64bit target hosts, where you are running the 64bit agent.
    Unless you have a lot of target hosts, I would recommend either manually installing the agents (mount a share with the installation files and run setup locally) or using the agentDownload.
    Best regards,
    Martin Decker
    www.ora-solutions.net

  • How to deploy the native dll with the applet package by Sun Java Plugin

    I have an applet which use some native methods. I have written code for the native dll, but I don't know how to deploy the DLL with the applet jar file for Sun Java Plugin. What parameter do i should pass to System.loadLibrary()? I think the solution should don't care which browser used by the end client. How to do it? How to deal with the applet security problem?
    Thank for any comment!

    I have a similar problem.
    Trying to use the javax.comm package requires that the user have the win32com.dll located on their machine.
    I have solved the problem by using a signed applet that allows me to write the dll to the clients machine and then run the code but ideally I would like to run the code without writing the dll to the users machine...i.e. I want to load the dll directly through the applet in the same way the class files are loaded forthe applet are loaded without copying them to the clients machine. After trying everything I have come to the conclusion that it is NOT possible. The calls loadLibrary and load both require that the dll reside on the clients machine. If anyone has had a different experience please rebut this.
    Rob

  • How to deploy Client Configuration Manager on 400 workstations step by step

    Hi to all,
    I would like to know  how to install SCCM Clients on 400 Workstations which no longer have it.Our netwok have 2250 workstations and 400 workstations don't have the SCCM client installed.How to create the deployment package?Or where to find it?
    I tried to deploy it using the pushing methods.I've created a collection of workstations which don't have the client installed.theni tredthe pushing methods but no workstations received the clients.
    Can i create a package on software distribution then deploy it to the collection?I know that it is not good for the network to deploy 400 workstations at once.
    Thanks in advance for your suggestion.
    Regards,

    Can i create a package on software distribution then deploy it to the collection?I know that it is not good for the network to deploy 400 workstations at once.
    If the systems don't have the agent already, a package can't reach them as software distribution requires the agent first.
    Here's a very nice and detailed article on troubleshooting client push: https://support.microsoft.com/en-us/kb/925282
    Remember though, it's not magic. Certain pre-requisites must be in place like permissions and firewall ports. ConfigMgr can't just conjure some voodoo to make these go away.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • [Forum FAQ] How to deploy applications remotely

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • How to deploy Servlet Application in Weblogic 8.1

    Hi,
    I am new to BEA Weblogic 8.1 .
    I was trying to create a sample application using InelliJ IDea 5.1 , and IntelliJIdea 10.5 . i configured weblogic with IDE , but now i do not know how to deploy my application in weblogic .
    I am new in IntelliJ also .
    So Can anyone tell me how can i deploy a servlet application in any IDE like i also have eclipse indigo.
    Thanks & Regards
    Komi

    Hi Komi
    Basically you deploy your Servlet as a WAR File. I am not familiar with IntellJ IDE. But it should have a provision to export/create a WAR file that has your Servlet. Also I hope you already have web.xml file with 2 sections like this: First you mention full package of your servlet and give it a name. Then enter a mapping url. You will use this url to run your servlet like http://weblogichost:weblogicport/yourWebappcontextroot/myservlet
    <servlet>
         <servlet-name>MyServlet</servlet-name>
         <servlet-class>com.abd.def.MyServlet</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>MyServlet</servlet-name>
         <url-pattern>/myservlet</url-pattern>
    </servlet-mapping>
    Coming to deployment, I hope you already created a Weblogic Domain and have admin username/password. Start your domain. Login into weblogic console like http://host:port/console and use admin username/password. Then from Deployments section, deploy the above WAR file. In Weblogic you can deploy JAR (EJBs, java files), WAR (web jsp, html, webservices, servlets) or EAR (JAR + WAR). In your case its just a WAR file.
    Refer the online docs for more details on Deployments in Weblogic.
    http://docs.oracle.com/cd/E13196_01/platform/docs81/deploy/deploy.html
    Thanks
    Ravi Jegga

  • How to deploy hibernate application in Oracle Content Management  SDK?

    Hi All,
    I have a hibernate application which is perfectly working in Tomcat Server. I need to deploy the application under an OC4J Instance of Oracle Content Management SDK.
    I have deployed the application under one OC4J Instance, but when I submitting the login page of the application, some errors are coming. The error is given below.
    06/03/16 16:16:43 Started
    06/03/16 16:17:04 vidushiapp: jsp: init
    06/03/16 16:17:04 vidushiapp: LOGGING: init
    06/03/16 16:17:04 vidushiapp: LOGGING: [WebStarterAppServlet 1] init() called.
    06/03/16 16:17:04 vidushiapp: Started
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Oracle Content Management SDK
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Node Guardian 9.0.4.2.2
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Copyright (c) 2000, 2004 Oracle. All rights reserved.
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Domain = ifs://ritesh:1521:CMSDK.daffodildb.com:CM_SCHEMA
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Node = Sample2HttpNode
    06/03/16 16:17:06 vidushiapp: NodeGuardian: ProcessId = 1456
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Guarded = false
    06/03/16 16:17:06 vidushiapp: NodeGuardian: JavaCommand = java
    06/03/16 16:17:06 vidushiapp: NodeGuardian: LogLevel = 4
    06/03/16 16:17:06 vidushiapp: NodeGuardian: RemoterLogLevel = 2
    06/03/16 16:17:06 vidushiapp: NodeGuardian: LogRotationPeriod = 0
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Creating E:/OraHome/ifs/cmsdk\log\ritesh_1521_CMSDK_daffodildb_com_CM_SCHEMA\Sample2HttpNode_HTTPNodeGuardian.pid file
    06/03/16 16:17:06 vidushiapp: NodeGuardian: RemoterType = SocketRemoter
    06/03/16 16:17:06 vidushiapp: NodeGuardian: GuardianLocator = ifs_socket://admin:53153
    06/03/16 16:17:06 vidushiapp: SocketRemoter: Listening on 192.168.0.241:53153
    06/03/16 16:17:06 vidushiapp: SocketRemoter: Initialized
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Ready
    06/03/16 16:17:13 vidushiapp: NodeGuardian: Unguarded node manager started as Sample2HttpNode
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: Oracle Content Management SDK
    06/03/16 16:17:13 vidushiapp: NodeManager: Node Manager 9.0.4.2.2
    06/03/16 16:17:13 vidushiapp: NodeManager: Copyright (c) 2000, 2004 Oracle. All rights reserved.
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: Domain = ifs://ritesh:1521:CMSDK.daffodildb.com:CM_SCHEMA
    06/03/16 16:17:13 vidushiapp: NodeManager: Node = Sample2HttpNode
    06/03/16 16:17:13 vidushiapp: NodeManager: ProcessId = 1456
    06/03/16 16:17:13 vidushiapp: NodeManager: DomainController Locator = ifs_socket://admin:53140
    06/03/16 16:17:13 vidushiapp: NodeManager: Oracle Home = E:/OraHome
    06/03/16 16:17:13 vidushiapp: NodeManager: CM SDK Home = E:/OraHome/ifs/cmsdk
    06/03/16 16:17:13 vidushiapp: NodeManager: LogLevel = 4
    06/03/16 16:17:13 vidushiapp: NodeManager: RemoterLogLevel = 2
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: RemoterType = SocketRemoter
    06/03/16 16:17:13 vidushiapp: NodeManager: ManagerLocator = ifs_socket://admin:53154
    06/03/16 16:17:13 vidushiapp: SocketRemoter: Listening on 192.168.0.241:53154
    06/03/16 16:17:13 vidushiapp: SocketRemoter: Initialized
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Log level set to 4
    06/03/16 16:17:14 vidushiapp: NodeManager: Log level set to 4
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Remoter log level set to 2
    06/03/16 16:17:14 vidushiapp: NodeManager: Remoter log level set to 2
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Node manager registered
    06/03/16 16:17:14 vidushiapp: NodeManager: Ready
    06/03/16 16:17:14 vidushiapp: NodeManager: Initialize: determining default services and servers
    06/03/16 16:17:14 vidushiapp: NodeManager: Initialize: starting service IfsDefaultService
    06/03/16 16:17:53 vidushiapp: NodeManager: Service IfsDefaultService started
    06/03/16 16:17:53 vidushiapp: NodeManager: Initialize: loading server WebStarterAppServer
    06/03/16 16:17:54 vidushiapp: NodeManager: Server WebStarterAppServer loaded
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: setting priority of server WebStarterAppServer to 5
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: starting server WebStarterAppServer
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Requested to start
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: loading server DavServer
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Starting
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: WebStarterAppServer registered under WebStarterAppServer
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: Started
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: WebStarterAppServer: run called
    06/03/16 16:18:13 vidushiapp: NodeManager: Server DavServer loaded
    06/03/16 16:18:13 vidushiapp: NodeManager: Initialize: setting priority of server DavServer to 5
    06/03/16 16:18:13 vidushiapp: DavServer: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:18:13 vidushiapp: NodeManager: Initialize: starting server DavServer
    06/03/16 16:18:13 vidushiapp: DavServer: Requested to start
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: loading server ServiceWarmupAgent
    06/03/16 16:18:14 vidushiapp: DavServer: Starting
    06/03/16 16:18:14 vidushiapp: DavServer: Started
    06/03/16 16:18:14 vidushiapp: NodeManager: Server ServiceWarmupAgent loaded
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: setting priority of server ServiceWarmupAgent to 5
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: starting server ServiceWarmupAgent
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Requested to start
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: complete
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Started
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Service warmup starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: set administration mode
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: warming up Format cache
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: warming up Media cache
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Service warmup complete
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopping Service Warmup Agent
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Requested to stop
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopping
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Timer stopped
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: postRun
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopped
    06/03/16 16:18:50 vidushiapp: Servlet error
    javax.faces.FacesException: Error calling action method of component with id id32:id45
         at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
         at javax.faces.component.UICommand.broadcast(UICommand.java:106)
         at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
         at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:271)
         at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:94)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: javax.faces.el.EvaluationException: Exception while invoking expression #{UserValidation.validateUser}
         at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:153)
         at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
         ... 15 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.daffodilwoods.framework.queryexecuter.HibernateUtil.<clinit>(HibernateUtil.java:66)
         at com.daffodilwoods.framework.validation.UserValidation.validateUser(UserValidation.java:23)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:129)
         ... 16 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.mchange.v2.c3p0.PoolConfig.<clinit>(PoolConfig.java:93)
         at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:84)
         at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:80)
         at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:362)
         at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:60)
         at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1463)
         at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1004)
         at com.daffodilwoods.framework.queryexecuter.HibernateUtil.<clinit>(HibernateUtil.java:62)
         ... 22 more
    Caused by: java.lang.ClassCastException
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.extractPropsByKey(BasicMultiPropertiesConfig.java:150)
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.<init>(BasicMultiPropertiesConfig.java:101)
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.<init>(BasicMultiPropertiesConfig.java:39)
         at com.mchange.v2.cfg.MultiPropertiesConfig.read(MultiPropertiesConfig.java:64)
         at com.mchange.v2.cfg.MultiPropertiesConfig.readVmConfig(MultiPropertiesConfig.java:73)
         at com.mchange.v2.log.MLog.<clinit>(MLog.java:48)
         ... 30 more
    I think there is some thing missing in my configurations. Can you please tell how to deploy and run a hibernate application. Is there any problem occurs while accessing another DataBase from Oracle Content Management? What are the setting I have to do for running a hibernate application from Oracle CMSDK?
    Thanks in advance
    Basil

    Hi,
    I got the solution for my problem. The error came because of the hibernate pooling. I removed the hibernate pooling lines from my hibernate configuration file and it is working fine.lines
    Thanks
    Basil

  • How to Deploy UIX pages in AS

    Well iam working on an application made i ADF UIX. The JDeveloper version used is 10.1.2 and I want to deploy this application in Oracle 10G 10.1.2.
    Could some one tell me how do i go about it?

    Dear Sir...
    1- in the application navigator right click the view-controller project
    2- select New
    3- select Deployment profile then select WAR file
    4- click OK and select a name for the WAR file and click ok
    5- a window appears asking for settings of the WAR file.
    6- click on the Specify J2EE web context. and enter a name like /abc. select OK
    7- The deployment WAR file appear, select it and select create EAR file.
    what you have done so far is that you defined a packaging file that will contains all of your web pages and call the code. you also specifies how the context path of the application would be. i.e. you access you web application using the link http://servername/context-root/page1.do and in our case it would be http://servername/abc/page1.do.
    Now copy this EAR file and take it to the application server in order to install it there.
    1- The first step is to create an OC4J. The OC4J is a java virtual machine or a server that your application will be executed inside it. So create a new OC4J and give it a name.
    2- Open this OC4J and select the applications Tab. Here you should install your application.
    3- Select deploy EAR file.
    4- Give the path of your EAR file, and select a name for the application and finish the deployment operation.
    5- Now open the first tab of the OC4J and select start to start the java virtual machine and let your application start.
    6- Now you should be able to access your application using the link : http://servername/context-root/page1.do. In this example the link will be http://SV/abc/dataPage1.do where SV is the server name, abc is the context-root you specified already and dataPage1 is the name of the uix page you want to access.
    you might need some other settings such as specifying the data sources and the connection to the database. For any other details try to read about how to deploy applications to the application server in the otn.
    best regards

  • How to deploy a bunch of jar files

    All,
    I am just after downloading iPlanet App Server and have been trying to find information on how to deploy a bunch of packaged jar files.
    Basically if anyone can help it would be great, my problem is that I have a number of jar files that make up an application that I developed a while ago, I was using the 9ias app server but have decided to try out the iPlanet app server. Now what I need to know is how do I put the jar files onto the server for deployment???I had a look at the deployment tool but it would not allow me to deploy any of my jar files????Also a couple of the jar files I want to put into the class path, so where is that?
    Any help would be fantastic
    Thanks in advance
    J

    the first thing, that I suppose you know, is that iPlanet needs an extra xml file. If your jars have this exta xml file , the only thing is to use the iasdeploy command line to deploy your jars fles

  • How to deploy worker role to Azure cloud via portal

    Hi
    I have two worker roles in my VS Project and I need them to be running on Azure cloud. I have created the storage accounts, the worker roles are using Queues, that I created using c# code.
    I looked up some articles and they say I have to create a hosted services from top left corner, but I don't see any hosted service link on my portal. (I am thinking the new version of Azure Portal does not have hosted service link, probably been replaced
    with something else but I don't know what it is)
    Can someone please help me what to do after I create a package and have the config and package files in app.publish folder. How to deploy the  worker roles in cloud using the Portal
    Thanks
    -Sarah

    Hi,
    >>I looked up some articles and they say I have to create a hosted services from top left corner
    As far as I know, cloud service was called hosted service in old azure platform, see below old platform screenshot.
    About deploy your application to cloud service, please refer to
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-how-to-create-deploy/ for more detail information.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to execute external exe in SSIS Package

    Hi,
    I wanted to know how to execute external exe from SSIS Package can any one explain me or provide me valuable links.
    Regards ,
    Ajay

    There are few things you need to take care before executing exe from SSIS
    1. The arguments etc expected by exe should be clearly defined inside execute process task
    2. The Path where exe exists should be accessible to the account executing the package. SO you should grant account required permissions
    3. If executing from a job make sure you either define a proxy account with required permissions and configure it to run the job or give service account all access required for executing exe
    see
    http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to deploy OA-Framework files with ACMP 4.0 into $OA_JAVA?

    Hello All,
    this time I need your help. I am trying to package an OA-Framework patch with some custom objects in it. I have also AM.xml and VO.xml files as usual.
    When I choose the default xml file type within Customization Manager Package definition, I am getting this file deployed to XX_TOP. The other type alternatives are not relevant for OAF at all.
    How to deploy to $OA_JAVA?
    Has someone solved this topic already?
    Kr, Volker

    Hi Junaid,
    It would be helpful to others trying to do the same if you would post the error messages you are getting here. Then we can work through it so others can see the resolution.
    If the dep guide does not work for you then I'm sure the JSF team would like to know that too and make sure to update it so that it will work better for others in the future.

  • How to deploy Photoshop/Premiere Elements 13 with SCCM 2012 r2?

    Hi there
    I want to create a .msi package of Photoshop/Premiere Elements 13 for SCCM 2012 r2. Can me anyone give a tutorial or a tip?
    thx

    If you want to deploy lync by SCCM, you may utilize config.xml to do that. All the things you want to configure, you may find it can be achieved in config.xml
     Run the install by using the following command line:
    <path>\setup.exe /config <path>\config.xml
    http://technet.microsoft.com/en-us/library/jj204651.aspx
    How to deploy application by SCCM.
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Juke Chou
    TechNet Community Support

Maybe you are looking for