No method (within view controlle) to get reference to the window controller

Hello all,
I need to fire the exit plug of the window controller out of an embedded view.
All help I can find in the internet tell me to "easily" get a ref to the window controller and thus to fire its plug as follows:
data: L_REF_MAIN_WINDOW type ref to IG_MAIN_WINDOW .
L_REF_MAIN_WINDOW =   WD_THIS->GET_MAIN_WINDOW_CTR( ).
L_REF_MAIN_WINDOW->FIRE_MY_EXIT_PLUG_PLG(  ).
But my view-controller dos not implement a method like
GET_MAIN_WINDOW_CTR( )
How can I get this method generated? What am I doing wrong?
Thanks for your replies.
Edited by: iSD1977 on Aug 23, 2011 4:09 PM

Hello,
in the Properties tab of the View Controller, add Window Controller as Used Controller.
BR, Saravanan

Similar Messages

  • Hi,i am trying to edit a BP and i get this error;An attempt was made to execute a dynamic method callon an initial(NULL-) object reference. The reference must refer to an object. what could be missing?

    BP_....AccountActivitiesOV.htm....application BPBT.
    what could be wrong? An attempt was made to execute a dynamic method callon an initial(NULL-) object reference. The reference must refer to an object???

    Hi Dunamis,
    Please check if below links can help you;
    Error on execution of Web Interface
    Help! I meet this Business Server Page (BSP) error CX_SY_REF_IS_INITIAL
    Strange Error in Transformation of 2LiS_03_BF with 0IC_C03
    Regards,
    Kamfrk.

  • Reference to the component controller in the window

    Hello All,
    Can we get the reference of the component controller in the method of the window..
    Warm Regards,
    Smita

    Vinod..hard luck ...!!!...
    This is what i get..!!!...The interface IF_POWL_TABLE has no such method to retrieve the reference for the component controller...:-(....
    Web Dynpro Comp. / Intf. POWL_TABLE_COMP,Web Dynpro Window POWL_TABLE
    Pre-Exit PST46K50FS40BKOKLYAGE0SR3P6M for HANDLEDEFAULT
    Method "GET_COMPONENTCONTROLLER_CTR" is unknown or PROTECTED or
    PRIVATE.
    Web Dynpro Comp. / Intf. POWL_TABLE_COMP,Web Dynpro Window POWL_TABLE
    Pre-Exit PST46K50FS40BKOKLYAGE0SR3P6M for HANDLEDEFAULT
    Method "GET_COMPONENTCONTROLLER" is unknown or PROTECTED or
    PRIVATE.
    Web Dynpro Comp. / Intf. POWL_TABLE_COMP,Web Dynpro Window POWL_TABLE
    Pre-Exit PST46K50FS40BKOKLYAGE0SR3P6M for HANDLEDEFAULT
    Method "GET_COMPONENTCONTROLLE_CTR" is unknown or PROTECTED or
    PRIVATE.

  • Getting references to the objects in a VM to dynamically link MBeans

    Hi, I am dynamically generating MBeans and using Apache BCEL to change the resource classes to link themselves to the MBeans. The objective is to instrument applications wich we can't access the code and, if possible, do it on a running one.
    I could use the Instrumentation API to change the classes of the application and the Attach API to do it on a running application, but only new instances would be affected, so the previously created objects would not be managed. I can generate MBeans in many ways, but can't link them to already running application objects.
    So, what i want to know is in the title: is there a way to get references to the objects actually loaded in a Virtual Machine or another way to link an MBean to a running object?
    I saw McManus talk at Sun One 2006 about the different ways to link MBeans to application objects, but all of them look to need code changes or previous suport to dependency injection, for example.
    http://developers.sun.com/learning/javaoneonline/2006/coreplatform/TS-3523.html
    I need it to a technical writing, so an official word can be enough, or even more helpful than a solution.
    Thanks,
    Gustavo

    Gustavo,
    Assuming I understand your question correctly, the only way I can see that you can enumerate instances of objects in a Java VM without changing the classes of those objects in any way is to use JVMTI <http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#Heap_1_0>. That requires you to write native code somewhere as part of your solution. It is applicable to already-running apps via attach-on-demand <http://java.sun.com/javase/6/docs/jdk/api/attach/spec/index.html>. The MLet service from the JMX API might be convenient here to bridge from the jar file that the Attach API expects to the native code that you need to access JVMTI.
    As you can see this is pretty advanced stuff, but your ideas are interesting and I'd be interested in knowing how they work out.
    Regards,
    �amonn McManus -- JMX Spec Lead -- http://weblogs.java.net/blog/emcmanus

  • Oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID

    I implemented a save point in a task flow by creating a save point in a method action The following is the code from managed bean for creating the save point:
                 ControllerContext cc = ControllerContext.getInstance();
    if (cc != null) {
    SavePointManager mgr = cc.getSavePointManager();
    if (mgr != null) {
    String id = mgr.createSavePoint();
    savePointId = id;
    It worked fine in local (Integrated Weblogic server). It also worked fine initially when I deployed the changes to the DEV weblogic server. But after a couple of days, in DEV server I get the following error everytime when trying to create a save point:
    Caused By: oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID '4d233555-ea0c-4bae-9f17-cc6c
    7124870f'. oracle.adfinternal.controller.savepoint.SavePointUtil.createAndLogSavePointException(SavePointUtil.java:56)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:245)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.sun.el.parser.AstValue.invoke(Unknown Source)
            at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
            at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:173)
            at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:163)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:1035)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:926)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:824)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:554)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:158)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:115)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:84)
            at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
            at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
            at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
            at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
            at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
            at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
            at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:479)
            at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
            at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
            at java.security.AccessController.doPrivileged(AccessController.java:284)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: java.sql.SQLException: Connection has already been closed.
            at weblogic.jdbc.wrapper.PoolConnection.checkConnection(PoolConnection.java:58)
            at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:94)
            at weblogic.jdbc.wrapper.Connection.prepareCall(Connection.java:543)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:221)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
    At the bottom of the stack, this statement "Caused By: java.sql.SQLException: Connection has already been closed." intrigues me, but why this error occurs after a couple of days or after particular number of connections or access to the application.
    This same issue is also happening in all environments including PROD. Please help. JDeveloper version used is 11.1.2.1.0.

    We got the solution from Oracle support. 
    Passivation Fails With Error "Connection has already been closed" in PoolConnection.checkConnection() (Doc ID 1330271.1). Problem is caused by the WebLogic Server Connection Pool feature "Inactive Connection Timeout". When this parameter is set up, WLS will forcibly release reserved connections back into the pool. This is a problem for ADF BC that relies on keeping the JDBC connection associated to its
    Application Module instance.
    Set the "Inactive Timeout Session" to 0 (default), so that the JDBC connection stays active while
    the corresponding Application Module instance is active:
    Thanks....

  • When I try to open live hot mail I get this message:The Windows Live Network is unavailable from this site for one of the following reasons:

    When I try to open live hot mail I get this message: The Windows Live Network is unavailable from this site for one of the following reasons:
    * This site may be experiencing a problem
    * The site may not be a member of the Windows Live Network
    You can:
    * You can sign in or sign up at other sites on the Windows Live Network, or try again later at this site.
    However, when I open hot mail in IE it opens just fine. Tried changing the password as suggested but it did not help in Firefox.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • When I try to install icloud on my laptop running windows 7 home premieum I get message saying the windows installer package wont complete as a program run as part of setup did not finish as expected   the install then rolls back   I have tried  rein

    when I try to install icloud on my laptop running windows 7 home premieum I get message saying the windows installer package wont complete as a program run as part of setup did not finish as expected   the install then rolls back   I have tried  reinstall   deleting files signing on with another account etc  nothing works   I have read this is an apple programing problem  if so is there a fix  I need iclouds  thanks

    This other discussion may help: Re: how do I install icloud

  • HT201413 I have a Windows XP Home Edition computer.   I recently attempted to upgrade iTunes to v10.7.  It loaded and installed OK, but now it won't run.  When I try to launch it, it gets aborted by the windows Data Execution Prevention software.  Any ide

    I have a Windows XP Home Edition computer.   I recently attempted to upgrade iTunes to v10.7.  It loaded and installed OK, but now it won't run.  When I try to launch it, it gets aborted by the windows Data Execution Prevention software.  Any ideas?

    Yes, this did solve the problem.  But I had some trouble updating QuickTime.  It failed, with the installer complaining that it did not have the required permissions to install the files it needed in the program directory.  I got it to work by telling it to install the files to another directory.  All seems well now - Thanks!

  • FSIS host controller service getting stopped frequently on windows 2008 machine

    We have 6 Windows hosts out of which 1 is admin node for FSIS and other 5 have IMS instances running. Of late we observed that FSIS host controller service is getting stopped on many of these windows hosts almost every day and sometimes 5-6 times a day.
    From the event viewer we could not find much errors except messaging saying FSIS host controller service got terminated unexpectedly. below are the message from one of the host controller service log. I have enabled debug mode today so waiting for debug logs
    to give some more information
    2013-01-29T20:07:55.3371746-08:00 Warning [11] WcfReplicationManager - Exception in replication handler, backing off for 300 seconds
    System.ServiceModel.EndpointNotFoundException: Could not connect to net.tcp://srch-fsis-001-p.cisco.com:17001/ceres/hostcontroller/nettcp. The connection attempt lasted for a time span of 00:00:00.9961320. TCP error code 10061: No connection could be made because
    the target machine actively refused it 72.163.42.208:17001.
    Server stack trace:
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.BufferedConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)
       at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
       at System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Ceres.HostController.WcfTypes.IRepositoryVersionManagement.GetRepositoryGuid()
       at Microsoft.Ceres.HostController.WcfServer.WcfReplicationManager.get_PrimaryRepositoryGuid()
       at Microsoft.Ceres.HostController.Repository.Replication.ReplicationManager.ReplicationHandler()
    System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 72.163.42.208:17001
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.Sockets.Socket.Connect(EndPoint remoteEP)
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
    2013-01-30T07:55:05.1432766-08:00 Info    [5] ServiceRunner - Starting host controller service
    2013-01-30T07:55:05.1921066-08:00 Info    [5] ServiceRunner - Machine Configuration:
        Machine Name          : SRCH-FSIS-006-P
        Operating System      : Microsoft Windows NT 6.1.7601 Service Pack 1
        Runtime Version       : v2.0.50727
    2013-01-30T07:55:05.2057790-08:00 Info    [5] ServiceRunner - Service Configuration:
        Log Level             : Info
        Log Max FileSize      : 1 GB
        Log Max Log Volume    : 100 GB
        Log Retention Period  : 40320 minutes
        Log Rotate Daily      : True
        Log Rotate Hour of Day: 0
        EventLog Source       : FSIS Host Controller
        EventLog Level        : Info
        Runtimes              : C:\Program Files\FAST Search Server 2010 for Internet Sites\Runtime\
        Repository Path       : C:\Users\fsis.gen\AppData\Local\FSIS\Repository\
        Replicated From       : net.tcp://srch-fsis-001-p.cisco.com:17001/ceres/hostcontroller/nettcp
        Node Path             : C:\Users\fsis.gen\AppData\Local\FSIS\Nodes\
        Node Port Allocation  : Start = 17002, End = 17199, Block Size = 20
        Node Memory Limit     : Soft = 70%, Hard = 80% of installed physical memory
        On Shutdown           : Teminate all nodes
    2013-01-30T07:55:05.4196544-08:00 Info    [5] RepositoryManager - Initializing repository
    2013-01-30T07:55:05.7399792-08:00 Info    [5] RepositoryManager - Initializing repository journal
    2013-01-30T07:55:05.9519014-08:00 Info    [5] HostController - 16383 MB physical memory installed
    2013-01-30T07:55:05.9538546-08:00 Info    [5] HostController - 13106 MB physical memory available for nodes
    2013-01-30T07:55:06.1716364-08:00 Info    [5] ServiceRunner - Repository being replicated from the primary repository at net.tcp://srch-fsis-001-p.cisco.com:17001/ceres/hostcontroller/nettcp
    2013-01-30T07:55:06.4118800-08:00 Info    [5] ServiceRunner - Service available at
    http://srch-fsis-006-p:17000/ceres/hostcontroller
    2013-01-30T07:55:06.4128566-08:00 Info    [5] ServiceRunner - Service available at net.tcp://srch-fsis-006-p:17001/ceres/hostcontroller
    2013-01-30T07:55:06.4206694-08:00 Info    [5] WcfReplicationManager - Replication manager started
    2013-01-30T10:05:08.2641940-08:00 Warning [12] HostController - Failed to determine if the node running [System = Fsis, Node = InteractionEngineNode42]
    System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at Microsoft.Ceres.HostController.Controller.RuntimeProxy.InvokeControllerMethod(String method, Object[] args)
       at Microsoft.Ceres.HostController.Controller.RuntimeProxy.IsNodeOperating(String nodeRoot)
       at Microsoft.Ceres.HostController.Controller.RuntimeProxy.IsNodeOperating(String nodeRoot)
       at Microsoft.Ceres.HostController.Controller.HostController.IsNodeOperating(String systemName, String nodeName)
    System.ArgumentException: A node is not deployed at C:\Users\fsis.gen\AppData\Local\FSIS\Nodes\Fsis\InteractionEngineNode42
       at Microsoft.Ceres.CoreServices.Deployment.DeploymentController.ValidateDeployed(String nodeRoot)
       at Microsoft.Ceres.CoreServices.Deployment.DeploymentController.IsNodeOperating(String nodeRoot)

    Hello,
    The answer for this is in the error message:
    2013-01-29T20:07:55.3371746-08:00 Warning [11] WcfReplicationManager - Exception in replication handler, backing off for 300 seconds
    System.ServiceModel.EndpointNotFoundException: Could not connect to net.tcp://srch-fsis-001-p.cisco.com:17001/ceres/hostcontroller/nettcp. The connection attempt lasted for a time span of 00:00:00.9961320. TCP error code 10061:
    No connection could be made because the target machine actively refused it 72.163.42.208:17001
    Verify that you have connectivity from this server to server 72.163.42.208 in port 17001.
    You can test this with telnet:
    telnet 72.163.42.208 17001
    You can check the documentation for the list of ports used by SharePoint @
    http://technet.microsoft.com/en-us/library/cc262849.aspx
    Cheers

  • Mapping one node in a view context to many nodes in the component controlle

    Hi guys,
    I need to map an element (attribute) of a node in the View Context to an attribute of multi nodes of the same type:
    Context View:
    customer_no
          |
          | -> KUNNR
    Component Controller Context having two nodes:
      - Node1
         RFC1
            |
            |->KUNNR
      - Node2
          RFC2
             |
             |->KUNNR
    Above I need to map the (KUNNR) in customer_no node to KUNNR in the RFC1 RFC2 before i execute the two RFCs services.
    Note:
    if this is not possible would you mention another solution.
    Thanks,

    Hi,
       As per MVC you cannot map context from view controller to component controller.Mapping can happen from component
    controller to view controller.
    You cannot create mapping for context attributes. You can map nodes if both source node and destination node both has same structure and same number of attributes. If they dont contain same number of attributes the extra attributes from the source node gets copied to the destination node.
    In your case before the RFC execution you can read the value of attribute Kunnr from view and set it the RFC attribute Kunnr before the Function module execution.
    Regards
    Bala Baskaran.S

  • VI Scripting: get reference of the duplicate element

    In VI scripting I copy element (any type of indicator, control, constant) with Move method with duplicate property - true. The output top right terminal of the method is the reference to the source object, not the new one.
    Is there any straightforward way to get reference to that copy (other copy method, etc)?
    Not straightforward solutions (they may work on test examples, but not good)
    1) move to temporary cluster - easy to find a new element
    2) list all objects before, after and compare lists. But the source VI can be of any size and complexity.
    3) Create element copy manually - bad, the solution should work on all kinds of elements.
    Solved!
    Go to Solution.

    Good method.
    It is almost working!
    It can create controls and indicators, but fails with constants (Class conflict, when wiring constant reference to the Source Object Reference terminal)
    Besides, there is a wrong description of the method (LV 2011):
    LabVIEW help
    Create from reference method:
    Source Object Reference
    A reference to the object you want to duplicate on the target VI. If you use this parameter, you do not need to wire the _type descriptor and style fields_.
    There are no type descriptor and style fields at all, they are in other methods
    Who is failing, me or LV? =)
    Attachments:
    Duplicate constant fails.png ‏56 KB

  • Get reference to the stage in a AS Class

    Hello,
    I've created an AIR app with the minimeze() and close()
    options. Now these functions are handled in the MainApp.mxml of the
    application. But I want to move them to a class, so I don't have
    any AS in my MXML file.
    My app works like this now:
    MainApp.mxml creates a new instance the Main.as class (which
    extends MainVisual.mxml) by calling <mainVisual:Main /> in
    the MainApp.mxml
    MainVisual.mxml extends Canvas.
    There I handle all visual elements of my app, but I can't get
    a reference to the stage.nativeWindow here. Does anyone knows how
    to do this?
    Thanks!

    Every display object, including the Canvas, has a stage
    property. However, this property will be null until the Canvas
    object is added to the stage. You can use the ADDED_TO_STAGE event
    to detect when that happens.

  • How do I get DVD for the Windows 7 that should have come with my new laptop please

    This is my first message here so please bear with me. I have just bought a new Lenovo Essentials B570 laptop which has come with Windows 7 pre-installed. Previously I used to buy Dell laptops which used to come with OS Re-installation DVDs which check to see if they are being installed on the hardware it was bought for but would allow us to install the OS on a new hard disk if the original one crashed. Now Lenovo seems to be using a very complicated method to allow buyer's to re-install the OS - they are expected to retain the same hard disk - but what happens is the hard disk crashes and one wants to install the OS along with all the drivers? The Dell DVD allows me to do precisely that. Can I create a similar disk to install the OS on a new hard disk as and when I want/need it please? I have created two sets of DVDs using the OKR software - one set using the 'system presently on disk' and another set for 'resetting to factory defaults' - but from what I have read on these forums these OKR disks would not work if I put a completely new hard disk. So at least if I can get hold of the correct version of the Windows DVD - as I have paid for the license I would be very grateful. Thank you.
    Solved!
    Go to Solution.

    yigit wrote:
    http://forum.lenovo.com/t5/Lenovo-3000-and-Essential/How-to-create-quot-Factory-Default-Recovery-Dis...
    Thanks for the quick reply.
    But to me this looks more like a OKR solution and I have already created these Factory Reset discs.
    Will these discs work if I have installed a completely new hard disk in the dive? Because that is what I would need to do in the rare event that I have a complete hard disk failure.
    What is confusing is the fact that on these forums, I find many messages which indicate that the OKR solution would work only with the original hard disk and it would not work with a completely new hard disk and also that the OKR itself would not be able to change partitions on the hard disk - even when it is the original hard disk. To me this means any disks that are created using the OKR would be useless when the original hard disk has undergone severe change or a completely new hard disk is in its place. Correct me if I am wrong. (In fact I am hoping that I am wrong in that assumption.)
    My laptop has a 750GB hard disk and it has Windows 7, 64bit. I actually want to make this into a dual boot machine with KUbuntu. What is stopping me attempting that is the fact that C drive has bigger partition and D drive is a smaller partition (too small in fact - 30GB these days is practically nothing) and I learn that any modifications I do to drive partitions would render the OKR non functional.
    I can live without this simplistic one key rescue operation if I have recourse to the Windows 7 DVD and that is why I asked the question.

  • Everytime I go to get into Firefox the Windows Live Sign in comes up.This has been happening since I installed Windows 7 and it won't remember sign in details.How can I get rid of Windows Live sign in??

    I am currently using Windows 7 and when I go to try and get Fire fox up a running the Window Live Sig in site comes up. This never happened when I was using Vista.
    The Windows Live sign in site will not remember the sign in details.
    I use My MSN/Sympatico home page as my default site

    * Websites remembering you and automatically log you in is stored in a cookie.
    * Create an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep such a cookie, especially for secure websites and if cookies expire when Firefox is closed.
    * In [[Private Browsing]] mode all cookies are session cookies that expire if that session is ended, so websites won't remember you.
    * Do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.
    * http://kb.mozillazine.org/Cookies

  • When I try to run applications on my domain controller, I get error message, "The service cannot access control messages at this time."

    My domain controller is Windows Services 2008 R2.  I get this error message  when trying to open Active Directory, Group Policy, services, etc.  We had this problem previously.  Rebooted the server and it worked for awhile, but the problem
    has reoccurred.

    I would agree with others. Installing recent updates might solve the issue. Also, checking the errors in event viewer might help. 
    Have you tried to reboot the server? If no, you can start with that.
    If none of the propositions helped, you can consider doing the following if you have at least one additional DC/DNS/GC server:
    Run netdom query fsmo to identify the FSMO roles that the faulty DC is holding
    Transfer FSMO roles that the faulty DC is holding to another healthy DC
    Demote the faulty DC (If you are unable to do it, you can consider running
    dcpromo /forceremoval and running a metadata cleanup)
    Re-install the OS of the faulty DC and install the recent updates
    Promote the re-installed server as a DC/DNS/GC server
    Of course, you need to consider taking system state backups before proceeding.
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

Maybe you are looking for

  • Ora-00604 while installing Oracle 10g on Windows XP SP2

    I was installing Oracle 10g on Windows XP but the dbca was failling. So I tried to create a database manually. But every time I launch this: "SQL> startup nomount pfile="C:\oracle\product\10.2.0\admin\XP10G\scripts\initXP10G.ora";" I always had: ORA-

  • Want to retrieve lost contacts, but as a reboot and not an Outlook sync

    Hope this makes sense. Wife and I are both iPhone users, but access iTunes on a PC for updates. This point, as you will see, seems relevant. When I want to add new music I have to add it to my folder and sync my entire music collection instead of jus

  • Can Contribute edit a DW template and allow it to propagate?

    I've created a fairly straightforward html/css site in DW CS3 based around a template and have uploaded both the site and template to the client's web server. There's a little set of static text on the template which cross-populates all the html page

  • Black residue recurring at top of MBA screen

    I bought my MBA back in February and starting very soon after, a black, graphite like residue seems to be recurring just right and left of the iSight camera. It's not dirt, it will appear while the laptop is closed and create a black line across the

  • MDM Workflow and LDAP

    Hi Junta, We are on MDM 5.5 SP5 Patch2. Our MDM server is connected to LDAP for Authentication and Role to User assignment is stored in LDAP. Problem 1. Check in/ Chek out is not working in the repository. I think this is a known problem and rectifie