Host Interrupt Service Routine

Is there additional documentation for the host interrupt service routine? Specifically, if I set the NI PCI-7344 to interrupt the host on high speed capture events (flex_set_irq_mask(boardID, 0x0020)), what host function is called?

For more information on this function you might want to call our applications engineers by creating a service request at www.ni.com/ask.

Similar Messages

  • Interrupt Service Routines in Labview

    Hi
    I would like to write some Interrupt Service Routines, is it possible to
    do this in labview (running in Windows 95)?
    I would like to be able to attend the interrupts i receive from a custom
    ISA card (not supported by NI).
    Thanks
    Eduardo
    Eduardo Aldaz Carroll, tel: +41 22 7679153
    CERN, PS Division fax: +41 22 7678510
    CH-1211 Geneva 23, Switzerland.

    From what I know NI has not developed sub VI's for LabView to accomplish this task. If you have a driver for the card in the form of a DLL then you can use a Call Library Function to interface with the card.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

  • Using UTL_DBWS to contact IIS hosted Web Service

    Hello-
    A generous No-Prize to anyone with insight on this issue...
    I am using UTL_DBWS to contact an IIS hosted web service, relevant code here:
    FUNCTION call_gnr ( p_name IN varchar2 ) return varchar2 IS
    l_wsdl_url varchar2 ( 1024 ) := 'http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL';
    l_service_name varchar2 ( 200 ) := 'GNRDService';
    l_port varchar2 ( 200 );-- := 'GNRDServiceSoap';
    l_operation_name varchar2 ( 200 ) := 'Search';
    l_service utl_dbws.service;
    l_call utl_dbws.call;
    l_xml xmltype;
    l_xml_result xmltype;
    BEGIN
    l_service := utl_dbws.create_service (
    wsdl_document_location => urifactory.getURI(l_wsdl_url),
    service_name => l_service_name );
    l_call := utl_dbws.create_call (
    service_handle => l_service,
    port_name => l_port,
    operation_name => l_operation_name );
    l_xml := xmltype.createXML(
    '<urn:Search xmlns:urn="urn:GNRDService">' ||
    '<id>1</id>' ||
    '<name>' || p_name || '</name>' ||
    '<maxReply>1000</maxReply>' ||
    '<minPercent>1</minPercent>' ||
    '</urn:Search>' );
    l_xml_result := utl_dbws.invoke (
    call_handle => l_call, request => l_xml );
    utl_dbws.release_call ( call_handle => l_call );
    utl_dbws.release_service ( service_handle => l_service );
    return l_xml_result.getstringval;
    END call_gnr;
    This works like a charm a few times in a row, but once I get a few simultaneous sessions going, I get the following error:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
    ORA-06512: at "SYS.UTL_DBWS", line 193
    ORA-06512: at "SYS.UTL_DBWS", line 190
    Checking the stack trace in my Oracle dump file yields the following:
    ServiceProxy.get(-1261915448) = oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy@73f04687
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3c74ef49
    WSDL: http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL
    ERROR: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
    error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:180)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:178)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:160)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:99)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    CAUSE:
    oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:180)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:178)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:160)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:99)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Caused by: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:166)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:171)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:175)
         ... 8 more
    java.lang.IllegalAccessException: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    I'm totally stumped. Why do I suddenly get an HTTP connection error code 403 after a dozen valid calls? Any help appreciated.
    Dave

    Hello
    I think that something has changed in your environment between the moment the system was working and now that you get the HTTP-403 error.
    As you probably know the DB call is doing a simple HTTP call, so I believe the issue is coming from the URL that you are using that is probably now invalid.
    Could you take the furl URLs (WSDL and endpoint) and see from the server what will be the HTTP call result ? (directly from a browser or telnet session)
    Regards
    Tugdual Grall

  • Exchange 2013 The Microsoft Exchange Search Host Controller service terminates

    Hi Folks,
    at our Exchange Server ( Version 15.0 (Build 775.38 / 0.1 (8.0.535.0 ) we found over 200k entrys / day saying that:
    The Microsoft Exchange Search Host Controller service terminated unexpectedly.  It has done this 193270 time(s).  The following corrective action will be taken in 30 milliseconds: Restart the service.
    The Command:
    Get-MailboxDatabaseCopyStatus | fl 'Content*'
    shows the following:
    ContentIndexState            : Failed
    ContentIndexErrorMessage     : An internal error occurred for the database or its index
    ContentIndexVersion          :
    ContentIndexBacklog          :
    ContentIndexRetryQueueSize   :
    ContentIndexMailboxesToCrawl :
    ContentIndexSeedingPercent   :
    ContentIndexSeedingSource    :
    i investigated a bit further:
    RunspaceId                            : 06d7b8f6-969f-47f8-89ba-87b2fed639bb
    Identity                              : db_1\exch1
    Id                                    : db_1\exch1
    Name                                  : db_1\exch1
    DatabaseName                          : db_1
    Status                                : Healthy
    InstanceStartTime                     : 14.10.2014 21:03:38
    LastStatusTransitionTime              : 14.10.2014 21:03:45
    MailboxServer                         : exch1
    ActiveDatabaseCopy                    : exch2
    ActiveCopy                            : False
    ActivationPreference                  : 1
    StatusRetrievedTime                   : 15.10.2014 13:36:52
    WorkerProcessId                       : 2076
    ActivationSuspended                   : False
    ActionInitiator                       : Unknown
    ErrorMessage                          :
    ErrorEventId                          :
    ExtendedErrorInfo                     :
    SuspendComment                        :
    RequiredLogsPresent                   :
    SinglePageRestore                     : 0
    ContentIndexState                     : Failed
    ContentIndexErrorMessage              : An internal error occurred for the database or its index
    ContentIndexVersion                   :
    ContentIndexBacklog                   :
    ContentIndexRetryQueueSize            :
    ContentIndexMailboxesToCrawl          :
    ContentIndexSeedingPercent            :
    ContentIndexSeedingSource             :
    CopyQueueLength                       : 0
    ReplayQueueLength                     : 0
    ReplaySuspended                       : False
    ResumeBlocked                         : False
    ReseedBlocked                         : False
    MinimumSupportedDatabaseSchemaVersion : 0.121
    MaximumSupportedDatabaseSchemaVersion : 0.126
    So i read that the Database is OK, but the Index is broken somewhow ?
    I`ve read somewhere that i should delete the GUID Folder and restart the Hostcontroller service, can somebody explain HOW to do this ? where can i Find the GUID Folder ? Is it the correct way to solve this problem ?
    thx in advance!

    Hi,
    after i removed the suggested Folder, i disabled both "Microsoft Exchange Search service and Microsoft Exchange Search Host Controller service, than i restarted the Exchange Server.
    After that i restarted both services.
    Sadly nothing has changed, hostcontroller.exe is still crashing:
    The Microsoft Exchange Search Host Controller service terminated unexpectedly.  It has done this 153 time(s).  The following corrective action will be taken in 30 milliseconds: Restart the service.
    The sequence is like this:
    First the Search controller starts:
    Search HostController Starts: Service started successfully.
    After that the hostcontroller crashes:
    .NET Runtime: Application: hostcontrollerservice.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: Microsoft.Ceres.HostController.Controller.HostControllerException
    Stack:
       at Microsoft.Ceres.HostController.WcfServer.WcfService.StartService()
       at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
       at System.Threading.ThreadHelper.ThreadStart()
    Than we get this Application Error:
    Application Error:
    Faulting application name: hostcontrollerservice.exe, version: 16.0.775.0, time stamp: 0x5211bea8
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16864, time stamp: 0x531d34d8
    Exception code: 0xe0434352
    Fault offset: 0x0000000000047b8c
    Faulting process id: 0x2a08
    Faulting application start time: 0x01cfe90eb249f511
    Faulting application path: C:\Program Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\HostController\hostcontrollerservice.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: f2351e08-5501-11e4-940b-00155d203202
    Faulting package full name:
    Faulting package-relative application ID:
    So if anybody can help - feel free!

  • Cross Domain error for Silverlight + MVC application with self hosted WCF service on azure

    Hi,
    We are migrating existing Silverlight application to MVC; existing Silverlight application is hosted on
    Azure which is consuming self-hosted WCF service. For authentication we have implemented
    ADFS with WIF (passive). The cloud service (<myWebSite>.cloudapp.net) is C Name to (<myWebSite>.<myDomain>.com) and we 
    are consuming  WCF service at <myWebSite>.cloudapp.net/<myService>.svc, as we were getting “Cross Domain” error so we have added “clientaccesspolicy.xml” at the root of “WEB ROLE”.
    Existing Silverlight application works fine but the problem occurred when we deploy our migrated application to the same cloud service. We are getting a “Cross Domain” error.
    The same migrated application works fine on UAT environment, the only difference is UAT environment is
    without ADFS WIF implementation.
    Migrated application is half Silverlight and half MVC with initial landing page is Silverlight. MVC web role is used to host the service i.e. .SVC . To go to SL landing page , redirected from home controller. Following is being observed in fiddler for this
    application
    Existing Silverlight application -
    After authentication with ADFS it redirect to Silverlight landing page.
    Before calling service method it looks for “clientaccesspolicy.xml”
    In response header we are getting the content of “clientaccesspolicy.xml”
    And after this everything works fine
    Migrated Silverlight-MVC application –
    After authentication with ADFS it redirects to “HomeController” and from there we are redirecting to Silverlight landing page.
    Before calling service method it looks for “clientaccesspolicy.xml”
    In response header we are getting  following content - “https://federation-sts.<myDomain>.com/adfs/ls/?wa=wsignin1.0&amp;
    wtrealm=https%3a%2f%2f<myWebSite>.<myDomain>.com&amp;
    wctx=rm%3d0%26id%3dpassive%26ru%3d%252fclientaccesspolicy.xml&amp;wct=2014-03-17T10%3a36%3a04Z”
    4.Throw “Cross Domain” error.
    Also we have added filter in
    RouteConfig
    for .xml file
    routes.IgnoreRoute("{*allxml}",
    new { allxml = @".*\.xml(/.*)?" });
    NOTE: There is no configuration change apart from MVC configuration.
    We have done RDP to web role and found that “clientaccesspiolicy.xml” is present at “E:\approot” location and it is also accessible at “https://<myWebSite>.<myDomain>.com/clientaccesspolicy.xml”.
    Please help
    Thanks,
    Rahul P

    Hi,
    Please try to configure the cross domain policy file to allow public read access (that is, access it without federation requirement), make sure you can access the address
    http://something/clientaccesspiolicy.xml directly in a browser
    without redirecting to check whether the cross domain policy file could be anonymous accessed (Please start a new browser session and make sure you're
    not logged in. Then test the cross domain policy file.).
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need hosted mail service for managing my 60 email accounts in one place.

    I have 60 mail accounts in my email client on personal computer (such as [email protected], [email protected], [email protected], etc.). I can retrieve mails from this accounts and send mails using their own SMTPs.
    Now I need do the same on server hosted email service. Is it possible with Microsoft Exchange 2013? Someone told me that this feature was removed in Microsoft Exchange 2013. Is it true?
    Also, hosted Office365 Outlook and Microsoft’s Exchanged Hosted service such as “Microsoft Exchange Online“ can add only 5 mail accounts (see here, I mean this feature https://tinyurl.com/lcs9aqg ).
    So, what to do? Is there any resolution?
    Or should I search other mail server hosting than Microsoft Exchange? Which one?

    Hi Smart River,
    Based on my knowledge, it is by design.
    Thanks
    Mavis Huang
    TechNet Community Support

  • 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

  • Does SBS not host sufficient services to provide 'Enhanced presence Privacy' to users homed on that server?

    Hello All,
    I have a question around Enhanced Presence Privacy mode. I understand from the Technet documentation that EPP can only be enabled Globally, at the Site Level or at the User Server Service level. Due to the fact that managing client-side
    EPP settings is not exposed in the Lync Control Panel or Shell the recommendation for enabling EPP for a subset of users is to have a separate pool for those users. 
    I’m working with a customer who needs to deploy EPP for a subset of their users but considering that we’re already planning to deploy a centralised enterprise pool of 4 front end servers they are reticent to deploy another enterprise pool
    to offer their EPP enabled users resiliency. Given that pool pairing only works with enterprise edition to enterprise edition or standard edition to standard edition I came up with the idea of deploying a Survivable Branch Server for the EPP enabled users
    assuming that this new site would provide a target for EPP policies for those users. However, in testing this idea in the lab I’ve found that although I can create a site level policy for the SBS site the users homed on the SBS do not pick up the policy -
    EPP does not work and in the Lync client Status settings the same options are offered that would be offered if EPP was not enabled.
    Questions:
    Is this expected behaviour? I.e. Does an SBS not host sufficient services to provide EPP to users homed on that server, even though it’s technically another site?
    What is meant by the documentation when it talks about assigning the policy to the “User Server Service”? I assume there is only 1 of these services per pool?
    Thank you in advance.

    Hi,
    I didn’t find any documents about the SBS limitation to provide EPP mode.
    Please try to set a user policy to test if EPP mode works for the branch site users.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Influxis to Host Collaboration Service

    Dear LCCS Customer,
    I’m pleased to announce Adobe and its partner Influxis have reached an agreement resulting in a hosted collaboration service offering based on Adobe’s LiveCycle Collaboration Service (LCCS) code. The new service will be known as Influxis Collaboration Service and is targeted to be up and running by early November, 2012. Influxis has been a trusted Adobe partner for 6 years, starting as a Flash Media Service hosting company and is now a leading interactive media delivery provider specializing in video solutions. Learn more about Influxis at http://ics.influxis.com/.
    Influxis Collaboration Service will be built to support the same framework and offer the same feature set currently available via LCCS. Influxis welcomes all Adobe LCCS customers to migrate to Influxis Collboration Service. Initial services will include dedicated servers for enterprise customers and others interested in having their own personal server environment. Shared server hosting will soon follow and be in place by December 2012.
    In order to minimize impact and in an attempt to make the transition from Adobe to Influxis as seamless as possible, Adobe will continue to run its LCCS service in parallel until December 31, 2012. During this time, Adobe will also provide Influxis with ramp-up support as needed.
    Transition planning is well underway. Influxis has already begun working with Adobe LCCS customers to exchange ideas on how best to achieve a successful transition. If you are interested in talking to Influxis about their service offering please contact Wesley Daggett at 661-775-3936 or via e-mail [email protected]. In the coming weeks Adobe and Influxis will provide additional detail about the specific transition plans on the LCCS Forum - http://forums.adobe.com/community/livecycle/lccs.
    Adobe and Influxis are excited about this new opportunity and will work together to ensure a successful transition for customers who choose to make the move from LCCS to Influxis Collaboration Service.
    Regards,
    Jeff Stanier
    Group Product Manager - LiveCycle

    Jeff,
    Is there anyway that I can get a LCCS account to develop with whilst there is this limbo period before  Influxis comes online with their paid service?
    I am literally just trying to get the skeleton working while waiting.
    Any help or insights from the community as well are welcome! :-)

  • Hosting WCF services on OSB 11G

    Hi there,
    I have been reading online to see if web services created through WCF can be hosted side by side in OSB 11G with Java services. I have found posts on how you can allow java web services hosted on OSB 11G to call wcf services, but i have found nothing on hosting WCF services.
    Is this possible? If so, what are the advantages /disadvantages?
    Thanks very much.
    Rita

    Oracle Service bus is all Java environment and I do not think you can host WCF web services(based on .NET) on Oracle Service Bus, however it may be possible for oracle service bus to inter operate with the WCF web services.
    jayesh@yagna

  • How to uninstall Application host helper service?

    Hi all,
    I have remove IIS features from my server 2008 R2 64bits sp1 but i still see this application host helper service. How can i remove this service from my system?
    Thanks

    HI,
    The ApplicationHost Helper Service in IIS 7.0 and above hosts IIS functionality that is needed even if IIS is not running.
    This service currently hosts the following functionality:
    l  Configuration
    history
    l  Application
    Pool account mapping
    For more information, please refer to the following Microsoft article:
    ApplicationHost Helper Service
    http://www.iis.net/learn/install/installing-iis-7/applicationhost-helper-service
    Source: http://social.technet.microsoft.com/Forums/windowsserver/en-US/33b02e01-acf6-4444-a7ed-5bebade77c10/iis-install-left-behind-application-host-helper-service?forum=winserver8gen
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

  • How to create a portlet through the hosted portal service?

    Hi!
    I'm currently working with Release 2, Portal Version 9.0.2.2.14.
    I read that it is possible to create a portlet (eg. survey portlet) through the hosted portal serviced (portal.oracle.com). How can I do this?

    The easiest way to provide search on just pages (not content areas) would be to crawl portal pages just like static pages. We have search partners on http://portalcatalog.oracle.com/ that can help you w/ this.

  • Are there are no weblogic hosted web services on the internet?

    I want to find a weblogic hosted web service for a demo. But I can't find a single internet based example that is explicitly hosted on weblogic.
    Does anyone have an example web service I can use ?
    Surely BEA would benefit from publishing a few examples...

    ONLY the carrier to which it is locked can legally unlock it.
    No one else at all can do this.
    As far as I know the Verizon iphone will only work with Verizon or foreign carriers if unlocked by Verizon.

  • Unable to login from IE to Azure hosted cloud service

    Hi 
    We have hosted cloud service on azure and not able to login with the existing users in it.
    While if we add SSL to the same service we can able to login to the site. 
    Will you please let us know what is the issue cause? Is azure restrict to login? 
    Do we need to add some code changes for the IE login?
    We have faces same problem on our local server but have resolved by installing patch from microsoft link "http://www.microsoft.com/en-in/download/details.aspx?id=39257"
    So please help us.
    Thanks,
    Rohit Jagtap.

    Hi,
    As you said, you have face the same problem on local server, so I think this issue is more related to your application, as far as I know, it is nothing to do with azure.
    To resolve this issue, I think the detail error message is necessary, I suggest you use diagnostics to log errors, refer to
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-dotnet-diagnostics/ for more details, or use remote debug to find issue, see more at:
    http://blogs.msdn.com/b/cie/archive/2014/01/24/windows-azure-remote-debugging.aspx
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PAM-KRB5: account:  unable to get host based service name for realm

    I want a custom service to authenticate via PAM with Microsoft Active Directory Services on Windows 2003. kinit appears to work:
    Myserver% klist
    Ticket cache: /tmp/krb5cc_200
    Default principal: [email protected]
    Valid starting Expires Service principal
    Tue 01 Aug 2006 10:42:23 AM CDT Tue 01 Aug 2006 08:42:23 PM CDT krbtgt/[email protected]
    renew until Tue 08 Aug 2006 10:42:23 AM CDT
    Running a sample PAM consumer using 'winsamp' as its service name complains that Kerberos doesn't know the user. syslog reports: PAM-KRB5: account: unable to get host based service name for realm 'EXAMPLE.COM'.
    I'm stuggling to get any additional logging out of either PAM or Kerberos. Any advice appreciated.
    /etc/pam.conf:
    winsamp auth required pam_krb5.so.1 debug
    winsamp password required pam_krb5.so.1 debug
    winsamp account required pam_krb5.so.1 debug
    winsamp session required pam_krb5.so.1 debug
    /etc/krb5/krb5.conf:
    [libdefaults]
    default_realm = EXAMPLE.COM
    default_tkt_enctypes = des-cbc-md5 ; or des-cbc-crc
    default_tgs_enctypes = des-cbc-md5 ; or des-cbc-crc
    [realms]
    EXAMPLE.COM = {
    kdc = mykdc.example.com:88
    admin_server = mykdc.example.com
    default_domain = EXAMPLE.COM
    [domain_realm]
    .example.com = EXAMPLE.COM
    [logging]
    default = FILE:/var/krb5/kdc.log
    kdc = FILE:/var/krb5/kdc.log
    kdc_rotate = {
    # How often to rotate kdc.log. Logs will get rotated no more
    # often than the period, and less often if the KDC is not used
    # frequently.
    period = 1d
    # how many versions of kdc.log to keep around (kdc.log.0, kdc.log.1, ...)
    versions = 10
    [appdefaults]
    kinit = {
    renewable = true
    forwardable= true
    PAM sample application synopsis:
    pam_start("winsamp", "someuser", &conv, &pamh);
    err = pam_authenticate(pamh, 0);
    if (err == PAM_USER_UNKNOWN)
    printf("don't know that user\n"); // <-- we always arrive here
    logout();
    }

    Part of the problem was that the Sun server's domain was not an exact match for the ADS domain. One was XXXX.EXAMPLE.COM and the other was just EXAMPLE.COM. Adding the equiv. domains in krb5.conf improved that situation.
    The sample PAM application still doesn't behave the way I want. When pam.conf is configured to authenticate against /etc/passwd, it works. Not when authenticating against ADS alone. I've come to the conclusion that PAM is for authenticating ONLY access to Solaris accounts.
    My application does not need a Solaris account. Am I using the wrong authentication API?

Maybe you are looking for

  • Deleting my current account

    Hi, I would like to know how do you delete your current skype account? As in totally out of sight. I have try out the following FAQ list that taught how to delete the account. As I went through the process of editing and changing the details.  I came

  • Facing problem for inserting the  RFC return response in JDBC

    Hi Can any one  share views for resulting my problem, This is my scenrio(JDBC>RFC>JDBC) logic follows like this: Design: 1. MT--X(request from JDBC(A)) 2. MT--Y(Response to JDBC(A)) 3. Defined Outbound Sync MI(Z) and given request as 'X' and response

  • 10.4.11 update causing macbook to overheat

    I had a mac genius install the 10.4.11 update and ever since my macbook has been overheating. itunes CPU usage has gone over 100%. Has anyone had similar problems? I can't take my macbook back to the apple store because I'm now traveling in Colombia.

  • How do I set a never lock

    I need to set the lock delay to Never temporarily

  • Trouble displaying referred value in Table component

    My need: I have a database table (call it Table A) that I'd like to display, row-by-row, but I have several columns (say, columns 1 and 2) that store integer values which, in turn, reference lookup tables (call them Tables B and C). Rather than displ