Skip to main content

Posts

Showing posts from February, 2013

What do you know about HKEY_LOCAL_MACHINE (HKLM)?

What is it? HKEY stands for " Handle to Registry Key ”. The HKEY_LOCAL_MACHINE subtree contains information about the local computer system, including hardware and operating system data, such as bus type, system memory, device drivers, and startup control parameters. It is one of several registry hives in the Windows Registry . HKEY_LOCAL_MACHINE contains the majority of the configuration information for the software you have installed and for the Windows operating system itself. It also contains information about currently detected hardware and, beginning in Windows Vista, information about your computer's boot configuration. HKLM components The following registry keys are located under the HKEY_LOCAL_MACHINE hive: HKEY_LOCAL_MACHINE\BCD00000000 HKEY_LOCAL_MACHINE\COMPONENTS HKEY_LOCAL_MACHINE\HARDWARE HKEY_LOCAL_MACHINE\SAM HKEY_LOCAL_MACHINE\Schema HKEY_LOCAL_MACHINE\SECURITY HKEY_LOCAL_MACHINE\SOFTWARE HKEY_LOCAL_MACHINE\SYSTEM No

Error of DeploymentPoller Deployment Could not activate endpoint for service in BPEL

Do you face this problem during implementing BPEL? ERROR [DeploymentPoller] Deployment of BPEL_yourbpelfilename failed, aborting for now. org.apache.ode.bpel.iapi.ContextException: Could not activate endpoint for service { http://pick.bpel.tps }PickService and port PickPort at org.apache.ode.axis2.BindingContextImpl.activateMyRoleEndpoint(BindingContextImpl.java:82) To solve it make sure there are no problems in the following: Redefine your ode server, and add your bpel files to it from add/remove . In “ bpelfilename.bpel ” make sure that you made the assign, reply, say good bye, and say hello right in properties view. In “ yourfilename.wsdl ” make sure in ‘ PickSamplePort ’ you typed ‘ ode/processes ’ as follow: http://localhost:8080 /ode/processes/ nameofyourbpelfile Restart Eclipse.

Set Administrator password for Tomcat

To enable access to the Manager Web application, you must either create a new username/password combination and associate one of the manager roles with it, or add a manager role to some existing username/password combination. To do that: 1.          Go to Tomcat installation directory > conf > tomcat-users.xml . Example C :\apache-tomcat-6.0.35\conf]\ tomcat-users.xml  Figure1 2.        Add the following two lines Figure 2: <role rolename="manager-gui"/> <user username="admin" password="admin" roles="manager-gui"/> 3.          Save it and restart tomcat. 4.        This will create a user called admin which used by the individual to log on, with the role of manager-gui Figure 1 Open tomcat-users.xml Figure 2 Add the highlighted two lines