Repository Service Error: JMS primary node is down

Hi All
I have create a repository service which moves files from one folder to another and I am currently having a problem. Once I attach the service to the CM Repository the portal stops functioning. e.g. Portal Fav don't appear, Item not Found errors everywhere.
I have checked the log and get the following message:
May 3, 2006 1:42:37 PM com.sapportals.config.fwk.meta.MetaConfigArchiveManifest [SAPEngine_Application_Thread[impl:3]_28] Error      invalid name [News_CopyNews.prjconfig] for meta archive [NewsCopyNews.prjconfig] (expected CMA-name:NewsCopyNews.prjconfig): please, check the manifest of this CMA!
May 3, 2006 1:42:37 PM com.sapportals.config.fwk.meta.MetaConfigManager_V2 [SAPEngine_Application_Thread[impl:3]_28] Error      [meta_v2_config://local] error while migrating [metarchive_portal]. The configMetaArchive needs to be removed or migrated 'manually' : ConfigException: Configuration framework system error: "source [config://pcd/local/meta/lib] already contain the configMetaArchive."
May 3, 2006 1:46:34 PM com.sapportals.portal.prt.service.config.ConfigNotificationHandler [SAPEngine_Application_Thread[impl:3]_4] Fatal      An exception has been received from the JMS Connection
[EXCEPTION]
com.sap.jms.server.exception.JMSServerException: JMS primary node is down! Please recreate all used jms resources.
     at com.sap.jms.server.context.impl.ConnectionContextImpl.exit(ConnectionContextImpl.java:349)
     at com.sap.jms.server.JMSServerInstance.stop(JMSServerInstance.java:318)
     at com.sap.jms.server.JMSServerContainer.stopJMSServerInstance(JMSServerContainer.java:197)
     at com.sap.jms.server.JMSServerContainer.stop(JMSServerContainer.java:287)
     at com.sap.jms.server.JMSServerFrame.stop(JMSServerFrame.java:420)
     at com.sap.engine.core.service630.container.ServiceStopper.run(ServiceStopper.java:31)
     at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
     at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
     at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
Hope this makes some sense to some one, I have also included the code for my Service below.
Thanks in advance.
Phil
SERVICE CODE:
package newsCopy;
import com.sapportals.wcm.repository.service.AbstractRepositoryService;
import com.sapportals.wcm.repository.service.ServiceNotAvailableException;
import com.sapportals.wcm.repository.manager.IResourceEventReceiver;
import com.sapportals.wcm.repository.manager.IRepositoryManager;
import com.sapportals.wcm.util.events.IEvent;
import com.sapportals.wcm.crt.component.*;
import com.sapportals.wcm.crt.configuration.*;
import com.sapportals.wcm.WcmException;
import java.util.Collection;
// New SAP Imports
import com.sapportals.wcm.repository.*;
import com.sapportals.wcm.util.uri.RID;
import com.sap.tc.logging.Location;
import com.sapportals.wcm.repository.manager.ResourceEvent;
//Java Imports
import java.util.Iterator;
// implements IMyNewRepositoryService interface
  Note: IReconfigurable and IResourceEventReceiver interfaces are optional
public class newsCopy extends AbstractRepositoryService implements IReconfigurable, IResourceEventReceiver {
  private static final String TYPE = "newsCopy";
  public newsCopy() {
    super();
    // Do not add code here. Add it to startUpImpl() instead
  public String getServiceType() {
    return newsCopy.TYPE;
  protected void startUpImpl(Collection repositoryManagers) throws ConfigurationException, StartupException {
     //On Service Startup
     log.errorT("******* startUpImpl");
     try {
     }     catch (Exception e) {
          throw new StartupException(e.getMessage(), e);
     Iterator it = repositoryManagers.iterator();
     while (it.hasNext()){
     try {
          addRepositoryAssignment((IRepositoryManager) it.next());
     } catch (ServiceNotAvailableException e) {
          log.errorT("******* startUpImpl service not available"); }
  protected void shutDownImpl() { }
  protected void addRepositoryAssignment(IRepositoryManager mgr) throws ServiceNotAvailableException {
     log.errorT("******* addRepositoryAssignment");
       try{
            mgr.getEventBroker().register(this, new ResourceEvent(ResourceEvent.CREATE_CHILD, null));
       }     catch(WcmException e)      {
            log.errorT("******* addRepositoryAssignment_Exception");
  protected void removeRepositoryAssignment(IRepositoryManager mgr) throws WcmException {
     log.errorT("******* removeRepositoryAssignment");
  public void reconfigure(IConfiguration config) throws ConfigurationException {
    this.stateHandler.preReconfigure();
     log.errorT("******* Reconfigure");
    this.config = config;
    this.stateHandler.postReconfigure();
  private static final Location log = Location.getLocation(newsCopy.class);
  public void received(IEvent event) {
     IResource resource = (IResource)event.getParameter();
     IResource sourceResource = resource;
     RID destinationRid = null;
     try {
          destinationRid = RID.getRID("/arco_news/LatestNews/" + resource.getName());
     }      catch (ResourceException e1) {
          log.errorT("********** No. 1 Resource Exception!");
     ICopyParameter cp = new CopyParameter();
     cp.setIgnorePropertyFailures(true);
     cp.setOverwrite(true);
     if (sourceResource != null && destinationRid != null){
          try {
               sourceResource.copy(destinationRid,cp);     
          } catch (NotSupportedException e) {
               log.errorT("******* No. 2 NotSupportedException");
          } catch (AccessDeniedException e) {
               log.errorT("******* No. 3 AccessDeniedException");
          } catch (ResourceException e) {
               log.errorT("******* No. 4 ResourceException");
               log.errorT("******* No. 5 Completed");

Yes, basically there was a problem with the repository service. When I had created it and uploaded it to the portal, I had applied it to a KM folder. When I had removed the service I forgot to remove it from the KM folder.
Once this was done all worked fine!
Hope this helps
Phil

Similar Messages

  • Repository Service Error

    I get the following error during portal startup.
    Its happening on a unix installation only.
    Any clues?
    Thanks
    Sid
    Sep 21, 2004 5:20:21 PM # System_Thread_74     Fatal           [PortalServiceItem.startServices] service initialisation failed:EliLilly_Project|ArchiveService
    com.sapportals.portal.prt.core.broker.PortalServiceInstantiationException: Could not instantiate implementation class com.sap.elililly.km.ArchiveService of Portal Service EliLilly_Project|ArchiveService because: could not load the service
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.__createServiceInstance(PortalServiceItem.java:631)
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.createServiceInstance(PortalServiceItem.java:518)
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.startServices(PortalServiceItem.java:875)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.startLoadOnStartupServices(PortalAppBroker.java:1262)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.start(PortalAppBroker.java:1218)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.startNonCoreApplications(PortalAppBroker.java:1175)
    at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:369)
    at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit(PortalCoreInitializer.java:55)
    at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>(PortalInitializer.java:129)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortalInitializer.run(Dispatcher.java:160)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher(Dispatcher.java:358)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000(Dispatcher.java:40)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run(Dispatcher.java:113)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init(Dispatcher.java:391)
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.init(ServletContextFacade.java:3286)
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.init(ServletContextFacade.java:2528)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.createContext(ServletsAndJspImpl.java:725)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.<init>(ServletsAndJspImpl.java:201)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspServerFrame.start(ServletsAndJspServerFrame.java:124)
    at com.inqmy.core.service.application.ApplicationServiceRunner.startFrame(ApplicationServiceRunner.java:55)
    at com.inqmy.core.service.container.ServiceRunner.run(ServiceRunner.java:126)
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:153)
    Caused by: java.lang.ClassCastException: com.sap.elililly.km.ArchiveService
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.__createServiceInstance(PortalServiceItem.java:618)
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.createServiceInstance(PortalServiceItem.java:518)
    at com.sapportals.portal.prt.core.broker.PortalServiceItem.startServices(PortalServiceItem.java:875)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.startLoadOnStartupServices(PortalAppBroker.java:1262)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.start(PortalAppBroker.java:1218)
    at com.sapportals.portal.prt.core.broker.PortalAppBroker.startNonCoreApplications(PortalAppBroker.java:1175)
    at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:369)
    at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit(PortalCoreInitializer.java:55)
    at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>(PortalInitializer.java:129)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortalInitializer.run(Dispatcher.java:160)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher(Dispatcher.java:358)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000(Dispatcher.java:40)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run(Dispatcher.java:113)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init(Dispatcher.java:391)
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.init(ServletContextFacade.java:3286)
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.init(ServletContextFacade.java:2528)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.createContext(ServletsAndJspImpl.java:725)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.<init>(ServletsAndJspImpl.java:201)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspServerFrame.start(ServletsAndJspServerFrame.java:124)
    at com.inqmy.core.service.application.ApplicationServiceRunner.startFrame(ApplicationServiceRunner.java:55)
    at com.inqmy.core.service.container.ServiceRunner.run(ServiceRunner.java:126)
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:153)

    That is correct.
    The plugin generated these in the portalapp.xml
    The first is the WrapperService and the second one is the repository service (the error is thrown for this i guess). The Second entry does not extend the IService interface.
    I noticed that the WrapperService doesnt use the actual repository service anywhere! Then how does the implementation class for the repository service get executed?
    Also should i delete the second entry in portalapp.xml??
    Thanks
    Sid
    <?xml version="1.0" encoding="UTF-8"?>
    <application>
    <application-config>
    <property name="SharingReference" value="knowledgemanagement"/>
    </application-config>
    <components/>
    <services>
    <service name="ArchiveServiceWrapper">
    <service-config>
    <property name="className" value="com.sap.elililly.km.ArchiveServiceWrapper"/>
    <property name="startup" value="true" />
    </service-config>
    </service>
    <service name="ArchiveService">
    <service-config>
    <property name="className" value="com.sap.elililly.km.ArchiveService"/>
    <property name="startup" value="true" />
    </service-config>
    </service>
    </services>
    </application>

  • Informatica 9.0.1 Repository Service Shutdown Error when Running ETL in DAC

    Hi All,
    When I executed the ETL in DAC client for full data load, I got this error from log "PLP_LoyMemberTierMovementQtrAggr.log".
    "Failed to connect to the repository on Host : hkhgc01dvapp01, Port : 6315. System Error (errno = 111): Connection refused.)"
    Does it relate to the "Minimun Port Number" and "Maximun Port Number", I set both of them to 6315 in the node01's "Advanced Properties".
    Here list the full log:
    INFO : LM_36435 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Starting execution of workflow [PLP_LoyMemberTierMovementQtrAggr] in folder [PLP] last saved by user [Administrator].
    INFO : LM_44206 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Workflow PLP_LoyMemberTierMovementQtrAggr started with run id [481], run instance name [], run type [Concurrent Run Disabled].
    INFO : LM_44195 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Workflow [PLP_LoyMemberTierMovementQtrAggr] service level [SLPriority:5,SLDispatchWaitTime:1800].
    INFO : VAR_27085 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Parameter file [u01/app/oracle/biapps/dev/Informatica/9.0.1/server/infa_shared/Temp/PLP_LoyMemberTierMovementQtrAggr_5U627E] is opened for [workflow [PLP_LoyMemberTierMovementQtrAggr]].
    INFO : LM_44253 : (19218|1327462720) Workflow started. Clients will be notified
    INFO : LM_36330 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Start task instance [Start]: Execution started.
    INFO : LM_36318 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Start task instance [Start]: Execution succeeded.
    INFO : LM_36505 : (19218|1327462720) Link [Start --> PLP_LoyMemberTierMovementQtrAggr]: empty expression string, evaluated to TRUE.
    INFO : LM_36388 [Tue Aug 02 17:03:02 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] is waiting to be started.
    INFO : LM_36682 [Tue Aug 02 17:03:02 2011] : (19218|1344248128) Session task instance [PLP_LoyMemberTierMovementQtrAggr]: started a process with pid [19492] on node [node01_hkhgc01dvapp01].
    INFO : LM_36330 [Tue Aug 02 17:03:02 2011] : (19218|1344248128) Session task instance [PLP_LoyMemberTierMovementQtrAggr]: Execution started.
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6793 Fetching initialization properties from the Integration Service. : (Tue Aug 02 17:03:03 2011)]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [DISP_20305 The [Preparer] DTM with process id [19492] is running on node [node01_hkhgc01dvapp01].
    : (Tue Aug 02 17:03:03 2011)]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [PETL_24036 Beginning the prepare phase for the session.]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6721 Started [Connect to Repository].]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6722 Finished [Connect to Repository]. It took [1.89204] seconds.]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6794 Connected to repository [Oracle_BI_DW_Base] in domain [Domain_hkhgc01dvapp01] as user [Administrator] in security domain [Native].]
    INFO : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6721 Started [Fetch Session from Repository].]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_51490] Communication with client application on host [10.32.64.75] and port [6315] has failed because of network errors. [System Error (errno = 11): Resource temporarily unavailable].)]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12014 An error occurred while accessing the repository]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error (Connection to the Repository Service [Oracle_BI_DW_Base] is broken.)]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55101] Connection to the Repository Service [Oracle_BI_DW_Base] is broken.)]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55114] Reconnecting to the Repository Service [Oracle_BI_DW_Base]. The resilience time is 180 seconds.)]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:03:05 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_51147] Failed to connect to the repository on Host : hkhgc01dvapp01, Port : 6315. System Error (errno = 111): Connection refused.)]
    ERROR : LM_36488 [Tue Aug 02 17:04:09 2011] : (19218|1327462720) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:04:09 2011]]
    WARNING : LM_36371 : (19218|1335855424) Workflow [PLP_LoyMemberTierMovementQtrAggr] is aborting.
    ERROR : REP_12400 : (19218|1335855424) Repository Error ([REP_12164] Domain-related error: [[DOM_10164] [DOM_10164] Service [Oracle_BI_DW_Base] is disabled in domain [Domain_hkhgc01dvapp01]. [FAULT_PCSFINTERNALEXCEPTION]].)
    ERROR : REP_12400 : (19218|1335855424) Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : REP_12014 : (19218|1335855424) An error occurred while accessing the repository
    ERROR : REP_12400 : (19218|1335855424) Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : REP_12400 : (19218|1335855424) Repository Error ([REP_55102] Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : LM_36060 : (19218|1335855424) Detected a failure on the repository connection(s).
    ERROR : LM_36028 : (19218|1335855424) Failed to get a repository connection.
    ERROR : LM_36110 : (19218|1335855424) Folder [id = 8] not found.
    ERROR : REP_12400 : (19218|1335855424) Repository Error ([REP_12164] Domain-related error: [[DOM_10164] [DOM_10164] Service [Oracle_BI_DW_Base] is disabled in domain [Domain_hkhgc01dvapp01]. [FAULT_PCSFINTERNALEXCEPTION]].)
    ERROR : REP_12400 : (19218|1335855424) Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : REP_12014 : (19218|1335855424) An error occurred while accessing the repository
    ERROR : REP_12400 : (19218|1335855424) Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : REP_12400 : (19218|1335855424) Repository Error ([REP_55102] Failed to connect to repository service [Oracle_BI_DW_Base].)
    ERROR : LM_36060 : (19218|1335855424) Detected a failure on the repository connection(s).
    ERROR : LM_36028 : (19218|1335855424) Failed to get a repository connection.
    ERROR : LM_36110 : (19218|1335855424) Folder [id = 8] not found.
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55115] Still trying to connect to the Repository Service [Oracle_BI_DW_Base]. The remaining resilience time is 116 seconds.)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:04:15 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_12164] Domain-related error: [[DOM_10051] [DOM_10051] Service [Oracle_BI_DW_Base] is not available in domain [Domain_hkhgc01dvapp01]. [FAULT_PCSFTIMEOUTEXCEPTION]].)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:05:16 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55115] Still trying to connect to the Repository Service [Oracle_BI_DW_Base]. The remaining resilience time is 49 seconds.)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:05:23 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_12164] Domain-related error: [[DOM_10051] [DOM_10051] Service [Oracle_BI_DW_Base] is not available in domain [Domain_hkhgc01dvapp01]. [FAULT_PCSFTIMEOUTEXCEPTION]].)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55112] Unable to connect to the Repository Service [Oracle_BI_DW_Base] since the resilience time is up.)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12014 An error occurred while accessing the repository]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error (Failed to connect to repository service [Oracle_BI_DW_Base].)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [REP_12400 Repository Error ([REP_55102] Failed to connect to repository service [Oracle_BI_DW_Base].)]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [CMN_1761 Timestamp Event: [Tue Aug 02 17:06:06 2011]]
    ERROR : LM_36488 [Tue Aug 02 17:09:24 2011] : (19218|1335855424) Session task instance [PLP_LoyMemberTierMovementQtrAggr] : [TM_6224 Failed to fetch session information from the repository in folder [PLP] for session [PLP_LoyMemberTierMovementQtrAggr.PLP_LoyMemberTierMovementQtrAggr]...Unable to Fetch Mapping associated with the session
    ERROR : LM_44131 : (19218|1335855424) Failed to process the handle prepare done request for task [Session task instance [PLP_LoyMemberTierMovementQtrAggr]] since the task is in a terminating state.
    WARNING : LM_36322 [Tue Aug 02 17:09:34 2011] : (19218|1361033536) Session task instance [PLP_LoyMemberTierMovementQtrAggr]: Execution aborted.
    WARNING : LM_36322 [Tue Aug 02 17:09:35 2011] : (19218|1361033536) Workflow [PLP_LoyMemberTierMovementQtrAggr]: Execution aborted.
    Could any one help, thank you very mcuh!
    Best regards,
    Ryan

    what you are describing does not sound like a mapping issue. It sounds more like a network issue or issue with your client/server services. Did you try to stop/restart all services. First see if you can stop/restart everything (DAC, INFA) re-open a new client connection. Then see if you can open the mapping and validate it. Once this is complete, try to run just the workflow standalone. If that is successful, restart the execution plan. Overall, it sounds like a server or connectivity issue, not a mapping logic issue. if this was helpful, mark the response as correct.

  • Reporting Services Error after Interactive sorting and drill down in pps

    Hi 
    i have a report  that has a drill down option that shows all workgroups within a specific  parent group and an interactive sorting ass well on both columns  parent group &  workgroup 
    This is displayed  in pps combined with a SharePoint
    ---the problem is that after sorting the parent group column by name   i then press the drill through icon  (+) next to it hopping to see all workgroups related to each parent group
      - but instead 
    i receive this Reporting Services Error  :
    The value for parameter 'SortItem' is not specified. It is either missing from the function call, or it is set to null. (rsMissingParameter) Get
    Online Help       
    If I don't press the sorting and just drill through it works fine. the sorting itself also works fine. 
    any suggestions ?
     

    Hi Hyaron,
    I am unable to reproduce the issue in my test environment. How did you add the drilldown feature? Were you doing that by setting visibility of the column or of the group? Please ensure to add the drilldown functionality by set the visibility of the workgroup
    from the Grouping Pane in the Report Designer.
    How did you add the Interactive Sorting on the headers of the two columns? Based on the drilldown functionality, the Interactive Sorting on the second column doesn’t work. So, you can move the Interactive Sorting on the second column. When configuring the
    Interactive sorting on the first column, you should set the parent group to sort, and sort by the field that the parent group groups by.
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Community Support

  • Error while creating Repository Service in informatica

    Hi Guys,
    When i try to create repository service informatica8.1.1.I'm getting the below error
    driverconnect.exe has encountered a problem and needs to close.We are sorry for the inconvenience.

    since your error message is not completely represented over here,my guess is you are not providing the exact repository name as what you mentioned during the installation.please chek the repository name that you provided
    for example : during installation the defualt repository name might been 'PowerCenter' and you might be entering some other repository name while connecting i.e 'Oracle_BI_DW_Base' .
    check this and let me known.

  • Error while creating Informatica Repository Service

    I am installing OBIApps - Have done it previously so I know it is a complex installation.
    This time my server is a Linux RH 64bit... Informatica server installed ok. Using the administrator panel, I am now trying to create the repository service.
    I am getting error: Database driver event…Error occurred loading library [libclntsh.so.10.1: wrong ELF class: ELFCLASS32] Database driver event…Error occurred loading library [libpmora8.so]
    I know the infra structure guys installed Oracle client 32bit... Maybe this is the trouble ?
    I have LD_LIBRARY_PATH blank... if I point the LD_LIBRARY_PATH to the oracle client bin... it seems that informatica startup has trouble since administrator panel doesn´t start. went back to LD_LIBRARY_PATH blank and startup is ok and administrator is ok... but error in creating repository service persists...
    I appreciate any hints.
    Txs.
    Antonio

    Try with by execute relink all libraries:
    $relink all
    or else go with 64bit

  • I am receiving an error message "Error: 150:30" after having my computer serviced. Repair shop completely stripped down my machine and reloaded Operating system, Yosemite 10.10.1. tried to download a Licensing update, but can't get that to open.????

    Adobe Photoshop CS4
    I am receiving an error message "Error: 150:30" after having my computer serviced.
    Repair shop completely stripped down my machine and reloaded Operating system, Yosemite 10.10.1.
    I tried to download a Licensing update, but can't get that to open.????
    My machine had originally been a clone of another Mac. Not it looks like a brand new computer.
    Possibly there is something in system preferences to change? I turned off Firewall and allow downloads from all parties.
    Thank You for you help!
    joe

    150:30 means the licensing failed. Photoshop can't be moved like other programs from another drive or from backup.
    I would suggest a reinstall to fix it. Anytime you move Photoshop from from drive to another, it breaks licensing. A install is the quickest way. to fix it.
    When you are done with the install, apply all CS4 updates.  Product updates
    Gene
    (Remember to mark the answer that solved your issue by clicking on “correct”. This indicates the question is answered and credits those who took time to help you or followup if there are further questions)

  • 2 node cluster down and can't boot

    HI,
    Due to power problem my 2 node cluster (both the node) got down all of a sudden abruptly. Now i can not boot any node. Is giving following error:
    Rebooting with command: boot
    Boot device: /pci@1c,600000/scsi@2/disk@0,0:a File and args:
    SunOS Release 5.10 Version Generic_127127-11 64-bit
    Copyright 1983-2008 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    Hardware watchdog enabled
    Jun 25 13:54:55 svc.startd[8]: svc:/system/cluster/cl_boot_check:default: Method "/usr/cluster/lib/svc/method/svc_boot_check start" failed with exit status 1.
    Jun 25 13:54:56 svc.startd[8]: svc:/system/cluster/cl_boot_check:default: Method "/usr/cluster/lib/svc/method/svc_boot_check start" failed with exit status 1.
    Jun 25 13:54:56 svc.startd[8]: svc:/system/cluster/cl_boot_check:default: Method "/usr/cluster/lib/svc/method/svc_boot_check start" failed with exit status 1.
    Jun 25 13:54:56 svc.startd[8]: system/cluster/cl_boot_check:default failed: transitioned to maintenance (see 'svcs -xv' for details)
    Hostname: clnode1
    Requesting System Maintenance Mode
    (See /lib/svc/share/README for more information.)
    Console login service(s) cannot run
    Root password for system maintenance (control-d to bypass):
    Could any one suggest me how to solve this?
    Thanks in advance

    Following is the log file:
    root@clnode1 #
    root@clnode1 #
    root@clnode1 # svcs -l cl_boot_check
    fmri svc:/system/cluster/cl_boot_check:default
    name Sun Cluster boot check
    enabled true
    state maintenance
    next_state none
    state_time Wed Jun 25 15:02:20 2008
    alt_logfile /etc/svc/volatile/system-cluster-cl_boot_check:default.log
    restarter svc:/system/svc/restarter:default
    dependency require_all/none svc:/system/filesystem/usr:default (online)
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #
    root@clnode1 # cat /etc/svc/volatile/system-cluster-cl_boot_check:default.log
    [ Jun 25 15:02:14 Enabled. ]
    [ Jun 25 15:02:19 Executing start method ("/usr/cluster/lib/svc/method/svc_boot_check start") ]
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_failfast:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/rpc-pmf:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_ng_zones:default^J^J#^J# The following is the list of services that this script tries to disable^J# when booting a non-global zone in non-cluster mode. While booting in a^J# cluster mode nothing is done to change the state, thereby the following^J# services keeps the same state that it was in before the boot.^J#^JCLUSTER_LOCAL_ZONE_OTHER_SVCS=svc:/system/cluster/sc_restarter:default^J^J^Jif [ ! -f /lib/svc/share/smf_include.sh ]^Jthen^J^I#^J^I# This is an smf service. It should run only on Solaris 10 and above.^J^I#^J^Iexit 0^Jfi^J^J. /lib/svc/share/smf_include.sh^J^J#^J# Get the zone name.^J#^JZONENAME=global^JERROR=0^Jif [  -ne 0 ]; then^J^Iecho Error: not found
    [ Jun 25 15:02:20 Method "start" exited with status 1 ]
    [ Jun 25 15:02:20 Executing start method ("/usr/cluster/lib/svc/method/svc_boot_check start") ]
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_failfast:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/rpc-pmf:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_ng_zones:default^J^J#^J# The following is the list of services that this script tries to disable^J# when booting a non-global zone in non-cluster mode. While booting in a^J# cluster mode nothing is done to change the state, thereby the following^J# services keeps the same state that it was in before the boot.^J#^JCLUSTER_LOCAL_ZONE_OTHER_SVCS=svc:/system/cluster/sc_restarter:default^J^J^Jif [ ! -f /lib/svc/share/smf_include.sh ]^Jthen^J^I#^J^I# This is an smf service. It should run only on Solaris 10 and above.^J^I#^J^Iexit 0^Jfi^J^J. /lib/svc/share/smf_include.sh^J^J#^J# Get the zone name.^J#^JZONENAME=global^JERROR=0^Jif [  -ne 0 ]; then^J^Iecho Error: not found
    [ Jun 25 15:02:20 Method "start" exited with status 1 ]
    [ Jun 25 15:02:20 Executing start method ("/usr/cluster/lib/svc/method/svc_boot_check start") ]
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_failfast:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/rpc-pmf:default: not found
    /usr/cluster/lib/svc/method/svc_boot_check: svc:/system/cluster/sc_ng_zones:default^J^J#^J# The following is the list of services that this script tries to disable^J# when booting a non-global zone in non-cluster mode. While booting in a^J# cluster mode nothing is done to change the state, thereby the following^J# services keeps the same state that it was in before the boot.^J#^JCLUSTER_LOCAL_ZONE_OTHER_SVCS=svc:/system/cluster/sc_restarter:default^J^J^Jif [ ! -f /lib/svc/share/smf_include.sh ]^Jthen^J^I#^J^I# This is an smf service. It should run only on Solaris 10 and above.^J^I#^J^Iexit 0^Jfi^J^J. /lib/svc/share/smf_include.sh^J^J#^J# Get the zone name.^J#^JZONENAME=global^JERROR=0^Jif [  -ne 0 ]; then^J^Iecho Error: not found
    [ Jun 25 15:02:20 Method "start" exited with status 1 ]
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #
    root@clnode1 #

  • Problem in KM Repository Service

    hi Experts,
    I have created KM repository Service by Following this weblog,
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2654">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2654</a>
    Finally i have assigned My service to<b> document repository</b> (I found under CM Repository).... After restart of J2EE Engine ... KM Gets Down..
    I am Getting error like this <b>Item Not found Error</b> in WhereEver the KM Document Links available..
    Please help me, where i am doing wrong..
    Thanks,
    Chinnadurai.R (Points wil be rewarded)
    Message was edited by:
            chinnadurai R

    hi...
    This is the error i got in default trace file...
    D:
    usr
    sap
    EP1
    JC00
    j2ee
    cluster
    server0
    apps
    sap.com
    irj
    servlet_jsp
    irj
    root
    WEB-INF
    portal
    portalapps
    com.company.chinna.Repservice
    lib
    com.company.chinna.Repserviceapi.jar
    <b>The error occurred while trying to load "com.company.RepService.SimpleService".
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass</b>(ReferencedLoader.java:401)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at com.sapportals.wcm.crt.CrtClassLoaderRegistry.findClass(CrtClassLoaderRegistry.java:158)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.convertRS(CmConfigurationProvider.java:821)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.convertRepositoryServiceConfig(CmConfigurationProvider.java:786)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.readConfiguration(CmConfigurationProvider.java:203)
         at com.sapportals.wcm.crt.CrtSystemImpl.createComponentManager(CrtSystemImpl.java:108)
         at com.sapportals.wcm.repository.runtime.CmSystem.startUp(CmSystem.java:201)
         at com.sapportals.wcm.repository.runtime.CmSystem.getInstance(CmSystem.java:164)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:974)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
         at com.sapportals.wcm.portal.service.KMServiceImpl.afterInit(KMServiceImpl.java:215)
         at com.sapportals.portal.prt.core.broker.PortalServiceItem.__initServiceInstanceStep2(PortalServiceItem.java:867)
         at com.sapportals.portal.prt.core.broker.PortalServiceItem.startServices(PortalServiceItem.java:1081)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.startLoadOnStartupServices(PortalAppBroker.java:1610)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.start(PortalAppBroker.java:1565)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.startNonCoreApplications(PortalAppBroker.java:1516)
         at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:413)
         at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit(PortalCoreInitializer.java:54)
         at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>(PortalInitializer.java:129)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortalInitializer.run(Dispatcher.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher(Dispatcher.java:359)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000(Dispatcher.java:42)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run(Dispatcher.java:114)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.init(Dispatcher.java:392)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.addServlet(WebComponents.java:139)
    <b>and then,</b>
    com.sapportals.wcm.crt.configuration.ConfigurationException: <b>Repository service ID not found: com.company.RepService.SimpleService
         at com.sapportals.wcm.repository.runtime.CmRegistry.addRepository</b>(CmRegistry.java:182)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.convertRM(CmConfigurationProvider.java:566)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.convertRepositoryConfig(CmConfigurationProvider.java:428)
         at com.sapportals.wcm.repository.runtime.CmConfigurationProvider.readConfiguration(CmConfigurationProvider.java:204)
         at com.sapportals.wcm.crt.CrtSystemImpl.createComponentManager(CrtSystemImpl.java:108)
         at com.sapportals.wcm.repository.runtime.CmSystem.startUp(CmSystem.java:201)
         at com.sapportals.wcm.repository.runtime.CmSystem.getInstance(CmSystem.java:164)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:974)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
         at com.sapportals.wcm.portal.service.KMServiceImpl.afterInit(KMServiceImpl.java:215)
         at com.sapportals.portal.prt.core.broker.PortalServiceItem.__initServiceInstanceStep2(PortalServiceItem.java:867)
         at com.sapportals.portal.prt.core.broker.PortalServiceItem.startServices(PortalServiceItem.java:1081)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.startLoadOnStartupServices(PortalAppBroker.java:1610)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.start(PortalAppBroker.java:1565)
         at com.sapportals.portal.prt.core.broker.PortalAppBroker.startNonCoreApplications(PortalAppBroker.java:1516)
         at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:413)
         at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit(PortalCoreInitializer.java:54)
         at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>(PortalInitializer.java:129)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortalInitializer.run(Dispatcher.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher(Dispatcher.java:359)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000(Dispatcher.java:42)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run(Dispatcher.java:114)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.init(Dispatcher.java:392)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.addServlet(WebComponents.java:139)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:386)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:110)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    plz help regarding this...
    thanks and regards,
    Chinnadurai.R

  • Problem with the Repository service

    Hi friends,
    In my info admin console web page among the repository service and the integration service, i can see the health of the two services as up.
    But when i clicked my repository service individually it showed like
    The powercenter repository service is available
    But it also showed the below error along with the above line like
    the following error occurred while performing a repository action. Error - [pcsf_1007] cannot connect to repository[oracle_BI_DW_Base] because \n[[rep_57071] unable to connect to the repository database. Please check repository agent configuration. Failed to connect to repository service [Oracle_BI_DW_Base].]
    But my integration service is up and fine.
    Since due to the above error, i couldnt connect with any of my info clients(as repository seems to be down from the above error message)
    But my informatica service is up.
    Im not sure with this problem, but i remember that my DBA's has overwritten with some snapshots on the DB(that im using with BIAPPS) whether that could be the problem
    Since im aware that snapshots also a recent one and it does not have any chances of destroying(my BIAPPS metadata)
    Couldnt get with the problem clearly. Kindly help me with this.
    Thanks in advance.
    Regards,
    Saro

    Svee,
    Yes you are right, i started this informatica service a long before(but dint stopped it), now when i tried to restart the informatica services, it is starting suddenly and all of a sudden after 5 seconds, it is going down.
    Again i restarted it in services.msc and after that if i refresh(@ the top of services.msc) it means then the informatica service is going down again.
    This problem started again. what could be the fix for this svee.
    Regards,
    Saro

  • Informatica 8.6.0 Repository Service fails with PCSF_10342 Exception

    Hi all,
    I am completing an Oracle BI Applications 7.9.6 install on Linux RH 5.0 and was f=getting on well until I have become stuck when trying to create the Informatica 8.6.0 Repository Service.
    Following the notes in Section 4.6.3 Creating the Informatica Repository Service of document Link:[Installation Guide for Informatica PowerCenter Users|http://download.oracle.com/docs/cd/E14223_01/bia.796/e14217/windows_ic.htm#CBHBAJIC].
    The first step was to install the Informatica PowerCenter 8.6.0 services + the HotFix 4.0. This completed successfully with a single Domain and Node installed on an application tier with the Domain repository stored in schema INFA on an Oracle database 10.2.0.4 (DWHD). I then moved onto creating a new schema (INFA_RESP) for the Repository. Unfortunately, after trying to create a Repository Service in the Domain folder I received the following error:
    +The Repository Service was created, but the service could not be enabled. You must enable the service to create the content. The following error occurred while attempting to create the content. Error - [PCSF_10342] Exception occurred: [Unable to start service [INFADevRepository] on any node specified for the service.].+
    Note I have tried creating both a Local and Global Repository and receive the same error message. I suspect it has something to do with the database connection. When I review the Domain properties it details each value for the Database Host, Port, Name and User. However, in the Repository Service it prompts for the ConnectString. The Informatica Administration documentation details using dbname.world for Oracle although I would have expected to have a connection string of Host:Port:ServiceName.
    Any suggestions or help greatly appreciated.
    Many thanks,
    Gary.

    When your repository service is created, it will default to Exclusive operating mode. You need to set it to Normal before creating the Integration Service. If this is documented anywhere, I haven't found it.

  • CM Repository stops after assigning custom repository service

    Dear all,
    I have created a repository service which sets the document creator as the permission owner of the document.
    This service is deployed in DEV & QA systems and is working fine. But when I moved the same to Production and assigned this service to the documents repository, it started giving error (before the restart itself)
    I am getting the following error.
    Item not found
    /documents
    The item you are attempting to access is not available. Check that the name or link is correct. You might also check whether the associated repository is currently accessible.
    Note: Our production & QA systems have 2 server nodes and DEV has only one server node. We are on EP 7.0 SP 16.
    Please help!
    Best Regards,
    Aparnna

    Hi Yoga,
    The error from the default trace is given below
    Due to this error we removed the Par from Portal now. Isn't there a solution for this?
    unexpected exception - java.lang.NullPointerException
    at com.sapportals.wcm.repository.manager.cm.CmRepositoryManager.getResource(CmRepositoryManager.java:995)
    at com.sapportals.wcm.repository.RMAdapter.getResource(RMAdapter.java:228)
    at com.sapportals.wcm.repository.runtime.CmAdapter.findResource(CmAdapter.java:1349)
    at com.sapportals.wcm.repository.runtime.CmAdapter.findManagerAndResource(CmAdapter.java:1322)
    at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:979)
    at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
    at com.sapportals.wcm.rendering.control.cm.WdfProxy.createResource(WdfProxy.java:2267)
    at com.sapportals.wcm.rendering.control.cm.WdfProxy.createResource(WdfProxy.java:2249)
    at com.sapportals.wcm.rendering.control.cm.WdfProxy.getUnsafeResource(WdfProxy.java:2222)
    at com.sapportals.wcm.rendering.control.cm.WdfProxy.getLayoutController(WdfProxy.java:2202)
    at com.sapportals.wcm.rendering.control.cm.WdfProxy.isPreviewEnabled(WdfProxy.java:2618)
    at sun.reflect.GeneratedMethodAccessor840.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:62)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.sapportals.wdf.serialize.PersistenceManager.createPropertyTable(PersistenceManager.java:83)
    at com.sapportals.wdf.serialize.PersistenceManager.store(PersistenceManager.java:48)
    at com.sapportals.wdf.serialize.PersistenceComponentManager.store(PersistenceComponentManager.java:79)
    at com.sapportals.wdf.stack.Control.renderPersistentProperties(Control.java:315)
    at com.sapportals.wdf.stack.Pane.renderPersistentControls(Pane.java:127)
    at com.sapportals.wdf.stack.PaneStack.renderPersistentControls(PaneStack.java:112)
    at com.sapportals.wdf.stack.Pane.renderPersistentControls(Pane.java:121)
    at com.sapportals.wdf.stack.PaneStack.renderPersistentControls(PaneStack.java:112)
    at com.sapportals.wdf.stack.Pane.renderPersistentControls(Pane.java:121)
    at com.sapportals.wdf.stack.PaneStack.renderPersistentControls(PaneStack.java:112)
    at com.sapportals.wdf.stack.Pane.renderPersistentControls(Pane.java:121)
    at com.sapportals.wdf.stack.PaneStack.renderPersistentControls(PaneStack.java:112)
    at com.sapportals.wdf.stack.PaneStack.renderPersistentGrid(PaneStack.java:89)
    at com.sapportals.wdf.WdfCompositeController.doInitialization(WdfCompositeController.java:308)
    at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:660)
    at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:33)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.portal.htmlb.PrtContext.render(PrtContext.java:406)
    at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:237)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doOutput(KMControllerDynPage.java:134)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:77)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
    at java.security.AccessController.doPrivileged(AccessController.java:246)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(AccessController.java:219)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Best Regards,
    Aparnna

  • I can't create repository service in Informatica

    Hi All
    Informatica Powercenter 8.6.1
    I has try creating Repository Service in Informatica Powercenter Adminstration Console, but have error
    The Service Manager could not start the service due to the following error:
    Error - [PCSF_10342] Exception occurred: [Unable to start service [DB] on any node specified for the service.].
    please help
    best regards
    saranporn Phutta
    Edited by: user1108635 on 8 ก.ค. 2553, 19:36 น.

    hii all
    i have Informatica 8.6.1 and oracle 10g
    I has try creating Repository Service in Informatica Powercenter Adminstration Console, but have error
    The Service Manager could not start the service due to the following error:
    Error - [PCSF_10342] Exception occurred: [Unable to start service [DB] on any node specified for the service.].
    I restarted my system and tried again the repository service..and also i turned off the firewall in my system....
    but i have the same error...
    so please help to my solve this problem.
    thanks in advance..
    shankar

  • Services of all the databases goes down

    Hi ,
    2 days back, Services of all the databases goes down on one of the PROD server.
    When i tried to start the services using SRVCTL command .
    I was getting the error below.
    oracle@shbaorc07b bin]$ srvctl status database -d EDW
    PRKH-1010 : Unable to communicate with CRS services.
    [Communications Error(Native: prsr_initCLSS:[3])]
    PRKO-2005 : Application error: Failure in getting Cluster Database Configuration for: EDWX
    PRKC-1056 : Failed to get the hostname for node + PRKH-1010 + prsr_initCLSS
    after this error, i came to know that there is some problem with the services.
    When i try to start the crs services, was not able to start the services
    as a root user user,
    I run the below command.
    crsctl start crs
    to my surprise the services of crs was not coming up,
    Finally I have to start the server and all the cluster services came up.
    I want to find out why this was happen, i need to find the bottle neck so this should not happen again as this is a PROD server and lots of prod database are residing on this server.
    Please find crsd.log below.
    2010-04-22 15:38:22.361: [  CRSRES][1539545408]0ora.shbaorc07b.LISTENER_UC4XPRD2.lsnr failed on shbaorc07b relocating.
    2010-04-22 15:38:22.397: [  CRSRES][1539545408]0Cannot relocate ora.shbaorc07b.LISTENER_UC4XPRD2.lsnrStopping dependents
    2010-04-22 15:38:22.407: [  CRSRES][1539545408]0StopResource: setting CLI values
    2010-04-22 15:38:27.318: [  CRSAPP][1539545408]0CheckResource error for ora.shbaorc07b.LISTENER_CTLGPRD2.lsnr error code = 1
    2010-04-22 15:38:27.321: [  CRSRES][1539545408]0In stateChanged, ora.shbaorc07b.LISTENER_CTLGPRD2.lsnr target is ONLINE
    2010-04-22 15:38:27.322: [  CRSRES][1539545408]0ora.shbaorc07b.LISTENER_CTLGPRD2.lsnr on shbaorc07b went OFFLINE unexpectedly
    2010-04-22 15:38:27.322: [  CRSRES][1539545408]0StopResource: setting CLI values
    2010-04-22 15:38:27.336: [  CRSRES][1539545408]0Attempting to stop `ora.shbaorc07b.LISTENER_CTLGPRD2.lsnr` on member `shbaorc07b`
    one more strange thing happen while restarting the 2nd server, the first server also restarted.
    Please help me regarding this?
    Thanks in advance.

    Hi,
    Thanks.
    please find the OS version
    Linux shbaorc07a.corp.shire.com 2.6.18-53.1.14.el5 #1 SMP Tue Feb 19 07:18:46 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
    database version:
    10.2.0.4.0
    Node 2:
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGDPAXPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(IGDPAXPRDALL) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGGMCXPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGEASYPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(IGEASYPRDALL) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGCTRMPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.438 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(IGCTRMPRDALL) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGEDWXPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGNUSBPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGETLXPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(IGETLXPRDALL) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGCTXXPRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(IGCTXXPRDALL) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGVVC30PRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock IGVUM30PRDALL type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupGrocks: cleaning up grock #CSS_CLSSOMON type 2
    [    CSSD]2010-04-22 19:41:19.439 [1273047360] >TRACE: clssgmCleanupOrphanMembers: cleaning up remote mbr(1) grock(#CSS_CLSSOMON) birth(2/0)
    [    CSSD]2010-04-22 19:41:19.445 [1273047360] >TRACE: clssgmEstablishConnections: 3 nodes in cluster incarn 5
    [    CSSD]2010-04-22 19:41:19.449 [1231087936] >TRACE: clssgmPeerListener: connects done (3/3)
    [    CSSD]2010-04-22 19:41:19.449 [1273047360] >TRACE: clssgmEstablishMasterNode: MASTER for 5 is node(3) birth(1)
    [    CSSD]2010-04-22 19:41:19.458 [1231087936] >TRACE: clssgmHandleDBDone(): src/dest (3/65535) size(72) incarn 5
    [    CSSD]CLSS-3000: reconfiguration successful, incarnation 5 with 3 nodes
    [    CSSD]CLSS-3001: local node number 2, master node number 3
    [    CSSD]2010-04-22 19:41:19.458 [1273047360] >TRACE: clssgmReconfigThread: completed for reconfig(5), with status(1)
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmConnComplete: probe from node 1, your version: 10.2.1.2
    , support PENDINA: 1
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmConnComplete: MSGSRC 1, type 5, node 1, flags 0x0001, con 0x2aaab01abb00, probe (nil)
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmConnComplete: node 1, shbaorc07a, con(0x2aaab01abb00), probcon((nil)), ninfcon((nil)), node unique 1271962158, prev unique 0, msg unique 1271962158 node state 0
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmsendConnAck: node 1, node state 0
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmConnComplete: connecting to node 1 (con 0x2aaab01abb00), ninfcon (0x2aaab01abb00), state (0)
    [    CSSD]2010-04-22 19:49:20.816 [1189128512] >TRACE: clssnmConnComplete: connected to node 1 (con 0x2aaab01abb00), ninfcon (0x2aaab01abb00), state (0), flag (1037)
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmDoSyncUpdate: Initiating sync 6
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmDoSyncUpdate: diskTimeout set to (57000)ms
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSetupAckWait: Ack message type (11)
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSetupAckWait: node(1) is ALIVE
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSetupAckWait: node(2) is ALIVE
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSetupAckWait: node(3) is ALIVE
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSetupAckWait: node(4) is ALIVE
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmSendSync: syncSeqNo(6)
    [    CSSD]2010-04-22 19:49:20.927 [1189128512] >TRACE: clssnmHandleSync: diskTimeout set to (57000)ms
    [    CSSD]2010-04-22 19:49:20.927 [1262557504] >TRACE: clssnmWaitForAcks: Ack message type(11), ackCount(4)
    [    CSSD]2010-04-22 19:49:20.927 [1189128512] >TRACE: clssnmHandleSync: Acknowledging sync: src[2] srcName[shbaorc07b] seq[1] sync[6]
    6911,1 99%
    node 1:
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >USER: clssnmHandleUpdate: SYNC(4) from node(4) completed
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >USER: clssnmHandleUpdate: NODE 1 (shbaorc07a) IS ACTIVE MEMBER OF CLUSTER
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >USER: clssnmHandleUpdate: NODE 2 (shbaorc07b) IS ACTIVE MEMBER OF CLUSTER
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >USER: clssnmHandleUpdate: NODE 3 (shbaorc07c) IS ACTIVE MEMBER OF CLUSTER
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >USER: clssnmHandleUpdate: NODE 4 (shbaorc07d) IS ACTIVE MEMBER OF CLUSTER
    [    CSSD]2010-04-22 18:56:00.996 [1189128512] >TRACE: clssnmHandleUpdate: diskTimeout set to (200000)ms
    [    CSSD]2010-04-22 18:56:01.008 [1273047360] >TRACE: clssgmReconfigThread: started for reconfig (4)
    [    CSSD]2010-04-22 18:56:01.008 [1273047360] >USER: NMEVENT_RECONFIG [00][00][00][1e]
    [    CSSD]2010-04-22 18:56:01.020 [1273047360] >TRACE: clssgmEstablishConnections: 4 nodes in cluster incarn 4
    [    CSSD]2010-04-22 18:56:01.096 [1231087936] >TRACE: clssgmInitialRecv: (0x2aaab4001310) accepted a new connection from node 2 born at 4 active (4, 4), vers (10,3,1,2)
    [    CSSD]2010-04-22 18:56:01.096 [1231087936] >TRACE: clssgmInitialRecv: conns done (4/4)
    [    CSSD]2010-04-22 18:56:01.096 [1273047360] >TRACE: clssgmEstablishMasterNode: MASTER for 4 is node(3) birth(1)
    [    CSSD]2010-04-22 18:56:01.138 [1231087936] >TRACE: clssgmHandleDBDone(): src/dest (3/65535) size(72) incarn 4
    [    CSSD]CLSS-3000: reconfiguration successful, incarnation 4 with 4 nodes
    [    CSSD]CLSS-3001: local node number 1, master node number 3
    [    CSSD]2010-04-22 18:56:01.138 [1273047360] >TRACE: clssgmReconfigThread: completed for reconfig(4), with status(1)
    [    CSSD]2010-04-22 19:40:00.531 [1231087936] >TRACE: clscsendx: (0x2aaab00fa3b0) Connection not active
    [    CSSD]2010-04-22 19:40:00.531 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab00fa3b0), client (0x2aaab00fa6b0), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.410 [1231087936] >TRACE: clscsendx: (0x2aaab02acd00) Connection not active
    [    CSSD]2010-04-22 19:40:19.410 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab02acd00), client (0x2aaab02ad7c0), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.410 [1231087936] >TRACE: clscsendx: (0x2aaab02ad570) Connection not active
    [    CSSD]2010-04-22 19:40:19.410 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab02ad570), client (0x2aaab02af660), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.438 [1231087936] >TRACE: clscsendx: (0x2aaab0295780) Connection not active
    [    CSSD]2010-04-22 19:40:19.438 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab0295780), client (0x2aaab02859f0), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.476 [1231087936] >TRACE: clscsendx: (0x2aaab029d150) Connection not active
    [    CSSD]2010-04-22 19:40:19.476 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab029d150), client (0x2aaab029dbb0), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.476 [1231087936] >TRACE: clscsendx: (0x2aaab029d890) Connection not active
    [    CSSD]2010-04-22 19:40:19.476 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab029d890), client (0x2aaab029e1b0), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.707 [1231087936] >TRACE: clscsendx: (0x2aaab02cdb30) Connection not active
    [    CSSD]2010-04-22 19:40:19.707 [1231087936] >TRACE: clssgmSendClient: Send failed rc 6, con (0x2aaab02cdb30), client (0x2aaab02cdf60), proc ((nil))
    [    CSSD]2010-04-22 19:40:19.710 [1231087936] >TRACE: clscsendx: (0x2aaab02ca9e0) Connection not active
    please help me on this.
    Thanks
    Edited by: user646034 on Apr 26, 2010 1:13 AM

  • Error when starting Netscape Calendar Server: Module: , Label: 355, Service error: #0x13209

    When starting Netscape Calendar Server, the following error message appears:
    <BR><P>
    Module: , Label: 355, Service error: #0x13209
    <P>
    The three ACIs listed below need to be present in the Directory Server in order
    for Calendar server to work properly. Check the properties on the Base DN to
    verify that the following ACIs exist. If they are not present, you will need
    to add them, and the Base DN will need to be modified for your enviroment.
    <P>
    <OL>
    <LI>ACI for allowing users to modify their own entries.<BR>
    <P>
    (targetattr = "*")(version 3.0; acl "Allow self entry modification";
    allow (write)userdn = "ldap:///self";)<BR>
    <P>
    <LI>ACI for allowing anyone permissions to Read, Search, and Compare.<BR>
    <P>
    (target="ldap:///o=basedn.com") (targetattr != "userPassword") (version
    3.0; acl "Anonymous access";
    allow (read, search, compare) userdn = "ldap:///anyone";)<BR>
    <P>
    <LI>ACI for allowing Calendar Server admins Write access to the Base DN
    (this is necessary in order for admins to add users and resources to the node).
    <BR><P>
    (target="ldap:///o=basedn.com") (targetattr = "*") (version 3.0; acl
    "Calendar Administrators Group";<BR>
    allow(all) groupdn = "ldap:///cn=Calendar Server Admins,ou=Netscape
    Servers,o=basedn.com";)<BR>
    </OL>

    Hi Trinidad,
    Thanks for your help!!!
    1.
    I didn't install EventSender and DIProxy yet, I tried first to upload and deploy the zip files, but I couldn't open the Itegration Application Explorer.
    2.
    The jvm.dll file is in in the folder pointed by the logs: C:\Program Files (x86)\SAP\SAP Business One Integration\jdk1.5.0_xx_sap\jre\bin\server
    and it is also in C:\Program Files (x86)\SAP\SAP Business One Integration\jdk1.5.0_xx_sap_64\jre\bin\server
    I tried running the file  java5w.exe, but I got an error message:
    Access is denied
    Unable to open the service tomcat5
    Thne I managed to open it by "rua as administrator".
    the Java Virtual Machine path is points to the java 1.5 version folder.
    Is it possible that the reason that the service can't start is related to administrator rigts??
    In the properties in the Integration Service (services.msc):
    It is set to be run with the local system account.
    all other properties looks fine.
    in the properties of the tomcat5.exe (and tomcat5w.exe  , I tried both)
    In the Compatibility tab I tried setting the flag "Run this program in compatibility mode for" to Vista, windows 7, and server 2008
    I didn't have the option of Windows XP.
    I have also set the Privilege level of: "Run this program as administrator" to true.
    But still the service won't start.
    What can be the problem?
    What else can I check?
    Thanks a lot,
    Chana

Maybe you are looking for

  • Extension Manager

    Thanks for the help with the 3D axis tool. I now have a problem with my extension manager. I downloaded materials from Adobe Marketplace. When I try to install them the extension manager comes on. When I click to install the extension manager tells m

  • Calling mobiles and landlines

    I've bought a monthly plan that includes 60 minutes to anywhere in North America. When I first got the plan, it worked great. But right now, I'm unable to make any calls or recieve them, and when I check it says that I have 45 minutes remaining for t

  • Exchange 2010 DAG's - 4 Mailbox Servers in 2 Datacenters with per site redundancy

    I recently came into a company with an Exchange 2010 sp1 environment where there are two data centers in two different subnets (10.70.62.0 and 10.80.56.0) Each datacenter has 2 mailbox servers (4 servers total) but their plan was to have only enough

  • Problems with Interaction Tab in BPEL Console

    Hello. We have just installed Oracle SOA Suite 10.1.3.1.0 and applied Patch 10.1.3.3.0. The problem is as follows: When we are debugging an BPEL Process instance, and try to see the interactions, the following error appears: Mensaje de Excepción: [ja

  • AppIntegrator zip file download path

    Dear All, I am using NW Portal 7 and want to use Appintegrator to connect yahoo and some other websites.Please let me know the path to download com.sap.portal.howtos.webapp.par file for EP7. I have gone through the following link but unable to get co