Services Running in CF

Our CF applications uses JDBC 3.5 and Microsoft JDBC driver
1.1. When I look in the Services running on the server, I see the
following:
ColdFusion MX 7 ODBC Agent
ColdFusion MX 7 ODBC Server
ColdFusion MX 7 Search Server
Do we need the above services running in CF if it they are
not being used I hope? because all the DB connections are through
JDBC for MS SQL Server 2005?
Thanks

eziokolo wrote:
> Do we need the above services running in CF if it they
are not being used I
> hope? because all the DB connections are through JDBC
for MS SQL Server 2005?
you don't even need to install them if you're not using them
(we pretty much
never install them in the first place) otherwise you can
disable them.

Similar Messages

  • Problem in Consuming a Web Service running on Remedy

    Hi All – We have a web service running on ARSystem (
    Remedy) and all we would like to do is –
    -Invoke this web service from our Coldfusion page
    -Send some parameters in a method call for ‘Remedy
    WS’
    -This Webservice returns a simple String object.
    The WSDL looks like this..
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions
    targetNamespace="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2"
    xmlns="
    http://schemas.xmlsoap.org/wsdl/"
    xmlns:s="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2"
    xmlns:soap="
    http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soapenc="
    http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="
    http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema">
    - <wsdl:types>
    - <xsd:schema elementFormDefault="qualified"
    targetNamespace="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2">
    <xsd:element name="OpCreate" type="s:CreateInputMap"
    />
    - <xsd:complexType name="CreateInputMap">
    - <xsd:sequence>
    <xsd:element name="Description" type="xsd:string" />
    <xsd:element name="Requester_Login_Name"
    type="xsd:string" />
    <xsd:element name="Requester_Name" type="xsd:string"
    />
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="OpCreateResponse"
    type="s:CreateOutputMap" />
    - <xsd:complexType name="CreateOutputMap">
    <xsd:sequence />
    </xsd:complexType>
    <xsd:element name="AuthenticationInfo"
    type="s:AuthenticationInfo" />
    - <xsd:complexType name="AuthenticationInfo">
    - <xsd:sequence>
    <xsd:element name="userName" type="xsd:string" />
    <xsd:element name="password" type="xsd:string" />
    <xsd:element minOccurs="0" name="authentication"
    type="xsd:string" />
    <xsd:element minOccurs="0" name="locale"
    type="xsd:string" />
    <xsd:element minOccurs="0" name="timeZone"
    type="xsd:string" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    </wsdl:types>
    - <wsdl:message name="OpCreateSoapOut">
    <wsdl:part element="s:OpCreateResponse" name="parameters"
    />
    </wsdl:message>
    - <wsdl:message name="ARAuthenticate">
    <wsdl:part element="s:AuthenticationInfo"
    name="parameters" />
    </wsdl:message>
    - <wsdl:message name="OpCreateSoapIn">
    <wsdl:part element="s:OpCreate" name="parameters" />
    </wsdl:message>
    - <wsdl:portType
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2PortType">
    - <wsdl:operation name="OpCreate">
    <wsdl:input message="s:OpCreateSoapIn" />
    <wsdl:output message="s:OpCreateSoapOut" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2SoapBinding"
    type="s:CHG_Change_WebService_OpCreate_DisplayOnly_v2PortType">
    <soap:binding style="document" transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="OpCreate">
    <soap:operation
    soapAction="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2/OpCreate"
    style="document" />
    - <wsdl:input>
    <soap:header message="s:ARAuthenticate" part="parameters"
    use="literal" />
    <soap:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2Service">
    - <wsdl:port
    binding="s:CHG_Change_WebService_OpCreate_DisplayOnly_v2SoapBinding"
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2Soap">
    <soap:address location="
    http://<ServerName>/arsys/services/ARService?server=<ServerName>&webService=CHG_Change_Web Service_OpCreate_DisplayOnly_v2"
    />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    My CF invocation is as given below..
    <cfscript>
    Ws=CreateObject("webservice","
    http://<servername>/arsys/WSDL/public/<servername>/CHG_Change_WebService_OpCreate_DisplayO nly_v2");
    result= ws.opCreate("test1","TEST2","test3");
    </cfscript>
    <cfoutput>|#result#|</cfoutput>
    AND I am getting this error below..
    Could not generate stub objects for web service invocation.
    Name:
    http://<servername>/arsys/WSDL/public/<servername>/CHG_Change_WebService_OpCreate_DisplayO nly_v2.
    WSDL:
    http://
    <servername>/arsys/WSDL/public/<servername>/CHG_Change_WebService_OpCreate_DisplayOnly_v2 .
    java.lang.NullPointerException It is recommended that you use a web
    browser to retrieve and examine the requested WSDL document for
    correctness. If the requested WSDL document can't be retrieved or
    it is dynamically generated, it is likely that the target web
    service has programming errors.
    Java Stack trace:
    java.lang.NullPointerException
    at
    org.apache.axis.wsdl.toJava.Utils.getNewQNameWithLastLocalPart(Utils.java:933)
    at
    org.apache.axis.wsdl.toJava.JavaStubWriter.writeOperationMap(JavaStubWriter.java:610)
    at
    org.apache.axis.wsdl.toJava.JavaStubWriter.writeFileBody(JavaStubWriter.java:169)
    at
    org.apache.axis.wsdl.toJava.JavaWriter.generate(JavaWriter.java:130)
    at
    org.apache.axis.wsdl.toJava.JavaBindingWriter.generate(JavaBindingWriter.java:147)
    at
    org.apache.axis.wsdl.toJava.JavaGeneratorFactory$Writers.generate(JavaGeneratorFactory.ja va:423)
    at org.apache.axis.wsdl.gen.Parser.generate(Parser.java:471)
    at org.apache.axis.wsdl.gen.Parser.run(Parser.java:395)
    at org.apache.axis.wsdl.toJava.Emitter.run(Emitter.java:611)
    at
    coldfusion.xml.rpc.XmlRpcServiceImpl$1.run(XmlRpcServiceImpl.java:213)
    at java.security.AccessController.doPrivileged(Native
    Method)
    at
    coldfusion.xml.rpc.XmlRpcServiceImpl.registerWebService(XmlRpcServiceImpl.java:198)
    at
    coldfusion.xml.rpc.XmlRpcServiceImpl.getWebService(XmlRpcServiceImpl.java:472)
    at
    coldfusion.xml.rpc.XmlRpcServiceImpl.getWebServiceProxy(XmlRpcServiceImpl.java:427)
    at
    coldfusion.xml.rpc.XmlRpcServiceImpl.getWebServiceProxy(XmlRpcServiceImpl.java:409)
    at coldfusion.runtime.CFPage.createObject(CFPage.java:5993)
    at coldfusion.runtime.CFPage.CreateObject(CFPage.java:5848)
    at coldfusion.runtime.CFPage.CreateObject(CFPage.java:5813)
    at
    cftest1252ecfm1199621501.runPage(D:\Inetpub\wwwroot\Pearsontc\sandytest\test125.cfm:11)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:105)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Would be sincerely thankful to ALL who could help me in
    resolving my problem as it’s a deadline for me today and I
    have some testing left to be done on some other modules as well.
    PLEASE PLEASE HELP!!
    Thanks.
    -S

    Ian, Thanks but service is running on REMEDY system and is
    written in Java. The new wsdl looks like this..( Please check the
    complex type input and return parameter). I cannot change the
    service permissions as its not in our control
    http://oldtas184/arsys/WSDL/
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions
    targetNamespace="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2"
    xmlns="
    http://schemas.xmlsoap.org/wsdl/"
    xmlns:s="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2"
    xmlns:soap="
    http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soapenc="
    http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="
    http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema">
    - <wsdl:types>
    - <xsd:schema elementFormDefault="qualified"
    targetNamespace="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2">
    <xsd:element name="OpCreate" type="s:CreateInputMap"
    />
    - <xsd:complexType name="CreateInputMap">
    - <xsd:sequence>
    <xsd:element name="Description" type="xsd:string" />
    <xsd:element name="Requester_Login_Name"
    type="xsd:string" />
    <xsd:element name="Requester_Name" type="xsd:string"
    />
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="OpCreateResponse"
    type="s:CreateOutputMap" />
    - <xsd:complexType name="CreateOutputMap">
    - <xsd:sequence>
    <xsd:element name="Description" type="xsd:string" />
    <xsd:element name="Requester_Login_Name"
    type="xsd:string" />
    <xsd:element name="Requester_Name" type="xsd:string"
    />
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AuthenticationInfo"
    type="s:AuthenticationInfo" />
    - <xsd:complexType name="AuthenticationInfo">
    - <xsd:sequence>
    <xsd:element name="userName" type="xsd:string" />
    <xsd:element name="password" type="xsd:string" />
    <xsd:element minOccurs="0" name="authentication"
    type="xsd:string" />
    <xsd:element minOccurs="0" name="locale"
    type="xsd:string" />
    <xsd:element minOccurs="0" name="timeZone"
    type="xsd:string" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    </wsdl:types>
    - <wsdl:message name="OpCreateSoapOut">
    <wsdl:part element="s:OpCreateResponse" name="parameters"
    />
    </wsdl:message>
    - <wsdl:message name="ARAuthenticate">
    <wsdl:part element="s:AuthenticationInfo"
    name="parameters" />
    </wsdl:message>
    - <wsdl:message name="OpCreateSoapIn">
    <wsdl:part element="s:OpCreate" name="parameters" />
    </wsdl:message>
    - <wsdl:portType
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2PortType">
    - <wsdl:operation name="OpCreate">
    <wsdl:input message="s:OpCreateSoapIn" />
    <wsdl:output message="s:OpCreateSoapOut" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2SoapBinding"
    type="s:CHG_Change_WebService_OpCreate_DisplayOnly_v2PortType">
    <soap:binding style="document" transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="OpCreate">
    <soap:operation
    soapAction="urn:CHG_Change_WebService_OpCreate_DisplayOnly_v2/OpCreate"
    style="document" />
    - <wsdl:input>
    <soap:header message="s:ARAuthenticate" part="parameters"
    use="literal" />
    <soap:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2Service">
    - <wsdl:port
    binding="s:CHG_Change_WebService_OpCreate_DisplayOnly_v2SoapBinding"
    name="CHG_Change_WebService_OpCreate_DisplayOnly_v2Soap">
    <soap:address location="
    http://oldtas184/arsys/services/ARService?server=OLDTAS184&webService=CHG_Change_WebServic e_OpCreate_DisplayOnly_v2"
    />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    I have modified my code a little to use a struct object and
    the code looks as below..
    <cfscript> CreateInputMap1 = structNew();
    CreateInputMap1.Description = "test";
    CreateInputMap1.Requester_Login_Name = "xxxxxx";
    CreateInputMap1.Requester_Name = "yyyyyyy";
    ws=CreateObject("webservice","
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 ?wsdl");
    result= ws.opCreate(CreateInputMap1);
    </cfscript>
    <cfoutput>#result#</cfoutput>
    But I still receive the same error..
    Error Occurred While Processing Request
    Could not generate stub objects for web service invocation.
    Name:
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 ?wsdl.
    WSDL:
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 ?wsdl.
    java.lang.NullPointerException It is recommended that you use a web
    browser to retrieve and examine the requested WSDL document for
    correctness. If the requested WSDL document can't be retrieved or
    it is dynamically generated, it is likely that the target web
    service has programming errors.
    The error occurred in
    D:\Inetpub\wwwroot\Pearsontc\sandytest\test125.cfm: line 18
    16 : CreateInputMap1.Requester_Name = "Vohra";
    17 :
    18 : ws=CreateObject("webservice","
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 ?wsdl");
    19 : // addSOAPRequestHeader(ws, "
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 /",
    "Description", "test", false);
    20 : // addSOAPRequestHeader(ws, "
    http://oldtas184/arsys/WSDL/public/OLDTAS184/CHG_Change_WebService_OpCreate_DisplayOnly_v2 /",
    "Requester_Login_Name", "John", false);
    Stack Trace (click to expand)
    at
    cftest1252ecfm1199621501.runPage(D:\Inetpub\wwwroot\Pearsontc\sandytest\test125.cfm:18)
    at
    cftest1252ecfm1199621501.runPage(D:\Inetpub\wwwroot\Pearsontc\sandytest\test125.cfm:18)
    java.lang.NullPointerException
    at
    org.apache.axis.wsdl.toJava.Utils.getNewQNameWithLastLocalPart(Utils.java:933)
    at
    org.apache.axis.wsdl.toJava.JavaStubWriter.writeOperationMap(JavaStubWriter.java:610)
    at
    org.apache.axis.wsdl.toJava.JavaStubWriter.writeFileBody(JavaStubWriter.java:169)
    at org.apache.axis.wsdl.toJava.JavaWriter.generate
    The REMEDY logs has this message - "Required element expected
    in the input XML document":

  • Outlook 2007 doesn't show icloud service running.  Does anyone know what the dll for this service is so it can be manually added to outlook?

    Outlook 2007 doesn't show the icloud service running in Windows 7 within outlook.  Does anyone know what the dll for this service is so it can be manually added to outlook?   I've installed the icloud control panel app and set it up to synch everything, but after initially downloading my icloud calendar, it won't process any calendar updates (new entries made on either iphone 4 on ios 5 or outlook). 
    So since the control panel installed, but the service doesn't show running in outlooks "trust center" add-ins list, anyone know the actual dll file it would point to so I can see if I can add it the hard way?

    I had the same issue and figured it out.  First you have to start Outook as administrator.  To do this, shift and right-click on outlook and click run as administrator.  Next you need to enable Hard-disabled add-ins:
    Hard-Disabled Add-Ins
    Hard disabling can occur when an add-in causes the application to close unexpectedly. It might also occur on your development computer if you stop the debugger while the Startup event handler in your add-in is executing.
    To re-enable an add-in
    In the application, click the File tab. 
    Click the ApplicationName Options button.
    In the categories pane, click Add-ins.
    In the details pane, verify that the add-in appears in the Disabled Application Add-ins list.  The Name column specifies the name of the assembly, and the Location column specifies the full path of the application manifest.
    In the Manage box, click Disabled Items, and then click Go.
    Select the add-in and click Enable.
    Click Close.
    Then you need to activate it. 
    To re-enable an add-in
    In the application, click the File tab.
    Click the ApplicationName Options button.
    In the categories pane, click Add-ins.
    In the details pane, verify that the add-in appears in the Inactive Application Add-ins list.  The Name column specifies the name of the assembly, and the Location column specifies the full path of the application manifest.
    In the Manage box, click COM Add-ins, and then click Go.
    In the COM Add-Ins dialog box, select the check box next to the disabled add-in.
    Click OK.

  • How to get the health , performance information and about the services run on devices that have connected to the system center?

    Hi All,
    I want to know how to get the health , performance information and about the services run on devices that have connected to the system center to my c# application. Also I need to know about the information of databases that have connected to system center.
    I will appreciate your feedback
    Thank you

    Hi,
    You can configure service monitor for the required service on the server
    refer below link for how to configure service monitoring
    http://www.bictt.com/blogs/bictt.php/2011/03/17/scom-monitoring-a-service-part3
    You can use SCOM SDK to connect to the scom server using c# and get required information
    http://msdn.microsoft.com/en-us/library/hh329086.aspx
    you can find the database in below registry path on management server
    HKLM:\SOFTWARE\Microsoft\Microsoft Operations Manager\3.0\Setup\DatabaseName
    Regards
    sridhar v

  • Unbeatable LOOP? flashplayer uninstall tool obeselete, 50%install error/cannot kill service running

    HELP ME PLEASE I CANNOT INSTALL FLASHPLAYER OR UNINSTALL THE PREVIOUS UPDATE.EXE FILE OR KILL THE SERVICE IN TASK MANAGER WTF?
    service running in task manager will not allow be to end it.
    Ive followed every guide, I cannot figure out the problem. Been up since 7 am its 10 am please help me

    You've posted the SAME question THREE TIMES in  LESS THAN  an hour,
    Understand that this is a "user to user" forum, We ARE NOT employees. We have jobs, families and lives of our own.
    There are "Instructions for a clean install" which work for hundreds of people here each week.
    If you remove Flash Player using your Control panel, download the offline installer  and reinstall it  (provided you haven't screwed your system up with all kinds of other junk) it should work exactly as it's supposed to. I have XP(x64), Vista(x86), Win 7 (x64) and Win 8(x64) ALL running the latest Flash Player and no problems. I use these machines for "testing" so I put them through all kind of garbage that most people don't but... if something really makes a mess, I GET RID OF IT, and put the system back to a stable state.
    When was the last time you defragged your hard drive?
    When was the last time you ran a "deep" disk cleanup?
    When was the last time you cleaned your registry?
    All of these can have an impact on how your system, and things you install, run (or don't).

  • Can I  kill services running behind photoshop?

    I can see the following services running behind photoshop even after exiting the application.
    VulcanMessageCmd.exe*32
    CS6ServiceManager.exe*32
    SwitchBoard.exe*32
    Can I force close them while bridge or photoshop running? This is my requirement in app-v because when I exit the bridge,photoshop these processes run behind which doesn't allow my virutal bubble to shutdown.
    So please suggest if I can close all these processes even if photoshop is running?
    Actually I killed these processes from task manager but didn't affect photoshop application. But just want to make sure force closing these processes wont break the running application.
    Thanks,
    Venkat.

    No risk in shutting them down when your environment is closed, anyway. They're just helper bunnies that provide access to web services and the Adobe ID and manage updates.
    Mylenium

  • What exactly do the national instrument​s citadel nt service and the lookout citadel nt service run

    We have WhatsUp monitoring software set to monitor NI Lookout and the PC it is on.  It pings the PC, and polls the Lookout Citadel Server NT service.  If either one fails, WhatsUp sends an email notification.  I was under the impression if the Lookout Citadel Server service is down, then NI Lookout won't graph or record data, but that's not the case.  If I shut Lookout Citadel Server or National Instruments Citadel Server down, NI Lookout still graphs and records.  What exactly do these two services run?
    Also, is there a possibility that NI Lookout can be viewed through palm OS software, like a Blackberry?

    Lookout Citadel Server is for Citadel 4, which is used by Lookout 5 and DSC 7.
    NI Citadel is for Citadel 5, used by Lookout 6 and DSC 8.
    If Citadel is stopped, Lookout will start it up automatically when launched. But if Citadel is stopped when Lookout is running, there might be some unexpected issues, although the data logging seems to be working well.
    So I strongely recommend you not to stop those Citadel service when Lookout is running.
    Lookout cannot be running on palm OS.
    Ryan Shi
    National Instruments

  • "Security error accessing url" - Accessing HTTP service   running on another machine

    Flex app is hosted as web service and is trying t access data
    from HTTP Service
    running on different machine. It throws following error
    [RPC Fault faultString="Security error accessing url"
    faultCode="Channel.Security.Error" faultDetail="Destination:
    DefaultHTTP"]
    at
    mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/securityErrorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio
    n()
    at flash.events::EventDispatcher/dispatchEvent()
    But when I run the HTTP Services (data provider) on same
    machine application
    works fine.
    Already used crossdomain.xml

    Sorted the cross domain problem by using mx:Webservice rather
    than an httpservice.

  • Want to get all the services running in the network

    I wish to get the details of all the services running in a Lan.
    I wish to get them through JSP headers. How to make it possible?
    From the server, just by running one JSP programme, i have to
    get all the details of all the services running in that network.
    Please help me to work it out.
    Thanking You.
    Faithfully
    Sathish Prabu C.K.

    hai if u got then please mail me immediately!
    bye,
    mega.

  • Portal Service running status

    Hi,
    I have deployed one portal service. After that I would like to know whether the deployed portal service is running or not.
    Please let me know if any one knows.
    Thanks

    Dear Tatayya:
    You can check your Portal Service running status in Service Configuration.
    System Administration->System Configuration->Service Configuration got to your Application. Right chick and selection Administration. You can check it and Change its status.
    Xiaoming Liu

  • I found a remote service running after the 10.10.3 update. ps -A|grep remote.  And I had remote management turned off in prefs.

    I found a remote service running after the 10.10.3 update.
    ps -A|grep remote. 
    And I had remote management turned off in prefs.
    I force quit the process with activity monitor.
    This looks as if it could be a problem.

    Well the term "hotlined" I have never heard before. In any case many states (like NY) just passed regulatory powers to the State Public Service Commission of which it may be called something different in your state. You could file a complaint with them. Or file a complaint with your state attorney generals office, they also take on wireless providers.
    The problem here is the staff you speak to are poorly trained, in days gone by it took one call to them and they pulled up your account and see the error and had the authority to remove any errors. They did not remove legitimate account actions, but used their heads instead of putting a customer off or worse lying to the customer.
    Its a shame you have to go through what you going through.
    Good Luck

  • Storage Spaces Tiering Service running forever, killing user performance

    I just installed a new Storage Server 2012 R2 OEM box, with a single mirrored storage space using 4x Samsung 840 Pro SSDs and 12x 3TB Toshiba 7200RPM HDDs. I used the wizard to configure this as a tiered space with a single large virtual drive, and it appears
    to have configured with 2 columns and a 1GB writeback cache on the SSDs, as well as a proper tiering scheme between the SSDs and HDDs.
    The scheduled task starts tiering maintenance at 10pm (I moved it back from 1am), and tiering runs all night with 100% disk activity at very low throughput (0.5 - 3.0 MBps), until I stop the Storage Spaces Tiering service in the AM when users arrive, as
    they report bad storage response times while it runs - very little data is added to the disk during the day (say, 5 - 10GB), and usage patterns don't change much, so I'm curious as to why this is happening.
    I've let the service run a few times over weekends, and it sometimes "finishes" a run, but the next night it will go right back to churning at low throughput and continue into the morning until a manual service stop.
    Any ideas?

    The below article talks about Performance of Storage Spaces , hope it's helpful.
    http://social.technet.microsoft.com/wiki/contents/articles/15200.storage-spaces-designing-for-performance.asp
    Here is more information about Storage Spaces Tiering :http://blogs.technet.com/b/josebda/archive/2013/08/28/step-by-step-for-storage-spaces-tiering-in-windows-server-2012-r2.aspx
    http://blogs.technet.com/b/kevinremde/archive/2013/06/19/new-storage-tiering-coming-in-server-2012-r2-teched-2013-favorites.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to allow access to web service running under ApplicationPoolIdentity

    Hi All,
    I have a WCF web service hosted in IIS 7 (or maybe 7.5, whichever comes with Windows server 2008 R2) using DefaultAppPool running under ApplicationPoolIdentity per Microsoft's recommendation. The web service needs to call a stored procedure to insert data
    to a db. The web server is on a different VM than the database server. The db server is running SQL 2008 R2. Both VMs run Windows server 2008 R2.
    When the web service tries to connect to db, it encounters this exception:
    Exception in InsertToDb()System.Data.SqlClient.SqlException (0x80131904): Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
    Here's the connection string in web.config:
    Application Name=somewebservice;Server=somewebserver;Integrated Security=SSPI;Database=somedatabase;Connection Timeout=60"
    How should I configure SQL security to make this work?
    Thanks in advanced.

    Thanks for the link Dan. Maybe I'm the one who cause the confusion :)
    If I understand you(and Erland) correctly, you suggest using a custom, domain account for application pool identity. However, if we do that, our IT will need to maintain those accounts, and they don't  want that. So I'm choosing a built-in account called
    ApplicationPoolIdentity as the application pool identity, but it's not working. Network Service, on the other hand, works, but my boss wants us to follow MS's best practice.
    What's puzzling is that according to this: http://learn.iis.net/page.aspx/624/application-pool-identities/, both Network Service and ApplicationPoolIdentity uses machine account to access network resource (like db in this case), but in my case, Network Service
    works, but not ApplicationPoolIdentity.
    Hallo Stephen,
    with respect - it seems to me that only idiots are working at your IT ;)... It is absolutely useful to work with "service accounts" created within the domain. That's the only way to manage and control accounts!
    If you want to "pass through" the identity of the web user (SSO) you have to check whether the app pool is set to "allow impersonate". As far as I understand the ApplicationPoolIdentity-function the app pool will create a unique user named as the service.
    I assume that will not work with the connection to the sql server because this user is unknown.
    Local Service will not work because it's restriction is located to the local machine.
    Network Service will work because access to network resources will be available.
    So my recommendation is to use a dedicated service account or impersonation:
    http://msdn.microsoft.com/en-us/library/xh507fc5.aspx
    Uwe Ricken
    MCITP Database Administrator 2005
    MCITP Database Administrator 2008
    MCITS Microsoft SQL Server 2008, Database Development
    db Berater GmbH
    http://www-db-berater.de

  • Setting up OIM to start as a Windows Service running under Weblogic 10.3.2

    Hi,
    On recommendation from our Oracle Rep. we have begun migrating our existing OIM installation on Oracle AS to a Weblogic Application Server. As such we are looking for a way to get the OIM application to run as a service in windows - so we dont have to start it manually after a reboot and so that system monitoring can alert us if/when the application crashes for some reason.
    I have asked Oracle support - which basically said that no such howto/documentation exists and that "One needs to debug on their own when face any issue." (whatever the h*** that means).
    I was thinking that we werent the first customers trying to get the OIM webapplication to start automatically under weblogic and that someone must have figured out a way to accomplish this ?
    Any advice on how to do this will be greatly appreciated.
    Thank you in advance.
    /Jacob

    Hi Jacob,
    See this post that I answered few time ago. Re: Keeping Remote Manager running - Windows
    Our OIM is running as a Windows Service.
    REnato

  • How to restrict only one instance of web service running at a time

    Hi All,
    Have a requirement to ensure that only one instance of java web service is active at any point of time.
    Using Application Server 10.1.3.4. Not the soa suite.
    Thanks
    Saikrishna

    Thanks for the reply..
    I have a java web service that pulls up some files produced periodically from remote machine and uploads them to some doc mgmt system and then update the database that what files are uplaoded successfully so that during next run it will ignore those files.
    so, if my web service executes second time before completion of first run. It would pick files that were already processed by first run since the first run might have not updated the databse yet.
    Thanks
    Saikrishna

Maybe you are looking for