Start-CsWindowsService : Service RTCATS failed to start within the expected

Good morning gentleman. 
Any help will be very appreciated. 
I have a new Lync 2013 Enterprise deployment and I had  an error with the RTCATS service as below:
   └ ▼ RTCATS
12/03/2014 12:25:22
Failed
         └ 
Service start requested "Lync Server Audio Test Service (RTCATS)".
12/03/2014 12:25:22
         └ 
Waiting for service operation to complete.
12/03/2014 12:25:22
         └ 
ServiceStartFailed: Failed to start service within the expected timeframe.
12/03/2014 12:27:24
Error
         └ 
Error: System error.
▼ Details
└ Type: TimeoutException
└ ▼ Stack Trace
    └  
at Microsoft.Rtc.Management.Deployment.Core.NTService.Start(Boolean wait)
I already checked the database and it´s ok. Cheking the topology publishment i can see that´s installed as below:
Application: testbot   12/03/2014 13:16:32     
                         └    Created trusted service entry for type=Microsoft.Rtc.Applications.TestBot, port=5076, routable=True, gruuId=3e73c1c2-367b-5e45-8eeb-afebfa256a61 and FQDN=pool.domain.local.
  12/03/2014 13:16:32     
                         └    Contacts already exist for the application.   12/03/2014 13:16:32   
And with the Test-cscomputer:
Application "testbot" is ready on 
Databases are ok:
DatabaseName             : rtcab
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
DatabaseName             : rtcxds
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
DatabaseName             : rtcshared
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
DatabaseName             : rgsconfig
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
DatabaseName             : rgsdyn
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
DatabaseName             : cpsdyn
StateOnPrimary           : Principal
StateOnMirror            : Mirror
MirroringStatusOnPrimary : synchronized
MirroringStatusOnMirror  : synchronized
And already checked the get-csaudioTestServiceApplication and ADSI.edit the sip domain are ok 
Could you please help me?
Thank you in advance.

Hi,
Did you do any change after publishing Lync topology?
Please run Step 2- Setup or Remove Lync Server Components again and then test the issue.
You can try to restart FE server and then test again.
Best Regards,
Eason Huang
Eason Huang
TechNet Community Support

Similar Messages

  • He instance with number 4 on host could not be started within the specified timeout.

    Hi,
    We are upgrading our BW Java from 7.0 to 7.4 SPS 07 and are in now in Execution Phase.
    Java system is not getting started.
    An error has occurred during the execution of the Start Java step.
    Could not start SAP instance with number 4. The instance with number 4 on host <hostname> could not be started within the specified timeout.
    In error logs
    Jul 8, 2014 11:31:16 AM [Error ]: Start of instances exceeded the timeout of 7200s.
    Jul 8, 2014 11:31:16 AM [Warning]: The instance could not be started. Will retry after a pause of 15 seconds.
    Jul 8, 2014 11:31:31 AM [Error ]: The following problem has occurred during step execution: com.sap.sdt.util.diag.DiagException: Could not start SAP instance with number 4.
    The instance with number 4 on host <hostname> could not be started within the specified timeout.
    Can you please help
    Thanks & Regards
    Amit Shedge

    Hi Amit,
    Please check if the instance exists in the system instance list with number 4 and <hostname>.
    sapcontrol -nr 04 -function GetSystemInstanceList
    If so, add SAPLOCALHOST and SAPLOCALHOSTFULL parameters to the following Java and SCS instance parameter files.
    Java instance parameter file: /SUM/sdt/<SID>/SYS/profile/<SID>_JC04_<hostname>
    SCS instance parameter file: /SUM/sdt/<SID>/SYS/profile/<SID>_SCSXX_<hostname>
    After adding the parameters, restart the sapstartsrv services for both of the above instances:
    sapcontrol -nr 04 -function RestartService
    sapcontrol -nr XX -function RestartService
    Repeat the failed step.
    BR,
    Alper Somuncu

  • GetListItems() and "Value does not fall within the expected range"

    I have a sharepoint list (it's a task list).  I have the ID of the task - I can access the task like this :
     http://addr/EditForm.aspx?ID=<value>
    This works fine.  I would like to create a query so when I call GetListItems() from a web service, I can select this record.
    This is the code I'm using - when I set the ndQuery.innerxml to a blank string, it returns all records (correctly).  When I enable it, I get the wonderfully useful "Value does not fall within the expected range" error.  I have tried querying
    a number of different fields (besides ID) and every single one gives me that error.
            XmlDocument xmlDoc = new System.Xml.XmlDocument();
            XmlNode ndQuery = xmlDoc.CreateNode(XmlNodeType.Element, "Query", "");
            XmlNode ndViewFields = xmlDoc.CreateNode(XmlNodeType.Element, "ViewFields", "");
            XmlNode ndQueryOptions = xmlDoc.CreateNode(XmlNodeType.Element, "QueryOptions", "");
            ndQuery.InnerXml = "<Where><eq><FieldRef Name=\"ID\" />" + "<Value Type=\"Counter\">" + pTaskID.ToString() + "</Value></eq></Where>";
            ndViewFields.InnerXml = "<FieldRef Name=\"ID\" /><FieldRef Name=\"Title\" />";
            ndQueryOptions.InnerXml ="<IncludeMandatoryColumns>False</IncludeMandatoryColumns>";
            System.Xml.XmlNode nodes = listService.GetListItems(strListID, strViewID, ndQuery, ndViewFields, "3", ndQueryOptions, null);
    I dug into the server logs and this is the XML that I see :
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                                 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
     <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
       <listName>{61A69E7F-F515-456C-B075-CB80FA59AFED}</listName>
       <viewName>{BBEDC17F-9578-4226-B4FC-E4BE102E6BED}</viewName>
       <query><Query xmlns=""><Where><eq><FieldRef Name="ID" /><Value Type="Counter">87</Value></eq></Where></Query></query>
       <viewFields><ViewFields xmlns=""><FieldRef Name="ID" /><FieldRef Name="Title" /></ViewFields></viewFields>
       <rowLimit>3</rowLimit>
       <queryOptions><QueryOptions xmlns=""><IncludeMandatoryColumns>False</IncludeMandatoryColumns></QueryOptions></queryOptions>
     </GetListItems>
    </soap:Body>
    I don't like seeing two nested <query> tags but there is no way that I can see to remove them!  At this point - can anyone tell me, is there any way to tell WHAT value does not fall within the expected range?  Or WHAT the expected range is?

    Hi Chris,
    Per my understanding, there is an issue when calling GetListItems() from a web service.
    Please check if the “pTaskID” is valid and take the snippet below for a test in your environment:
    public static void getItems()
    var lists = new MyWebServiceDemo.Lists();
    lists.Url = "http://sharepoint/_vti_bin/Lists.asmx";
    lists.Credentials = System.Net.CredentialCache.DefaultCredentials;
    System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
    //displayName or GUID
    string listName = "List1";
    string viewName = "";
    string rowLimit = "150";
    System.Xml.XmlElement query = xmlDoc.CreateElement("Query");
    System.Xml.XmlElement viewFields = xmlDoc.CreateElement("ViewFields");
    System.Xml.XmlElement queryOptions = xmlDoc.CreateElement("QueryOptions");
    query.InnerXml = "<Where><Eq><FieldRef Name=\"ID\" /><Value Type=\"Counter\">1</Value></Eq></Where>";
    //query.InnerXml = "";
    viewFields.InnerXml = "<FieldRef Name=\"Title\" />";
    queryOptions.InnerXml = "";
    System.Xml.XmlNode nodeListItems = lists.GetListItems(listName, viewName, query, viewFields, rowLimit, queryOptions, null);
    foreach (XmlNode outerNode in nodeListItems.ChildNodes)
    if (outerNode.NodeType.Equals(System.Xml.XmlNodeType.Element))
    foreach (XmlNode node in outerNode.ChildNodes)
    if (node.NodeType.Equals(System.Xml.XmlNodeType.Element))
    XmlNode nameNode = node.Attributes.GetNamedItem("ows_Title");
    String wikiName = nameNode.InnerText;
    Console.WriteLine(wikiName);
    If it is an issue of the invalid item id, for avoiding this error, a workaround is that you can run a request to retrieve all the existing ids in the target list,
    then add a validation to ensure the “pTaskID” is valid.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for
    TechNet Support, contact [email protected].

  • Value does not fall within the expected range in my itemupdated eventreceiver while accessing a splist column on the root site collection

    hi,
     I am performing the below operations:
    1) Itemupdated event handler when a document is uploaded into the document library
    2) Now amreading another list which is in the root  site level so, i used spsite, spweb again and accessed that splist and trying to read single line of text column and user or group column.
    Now when i am reading this, i am getting the error "Value does not fall within the expected range".
    I went to resource throttling under central admin -->my current web appln and changed that value to 20  from 8
    even after performing the above, i am getting the same error.
    pls help anyone has faced this issue before.
    Accessing a splist which is under root site collection within the itemupdated eventreceiver is allowed in SP ?

    hello sir,
     as per my requirement i have to access a  splist which is residing in the ROOT SITE COLLECTION OF THIS WEB APPLICATION. the event receiver i have written is residing in one of the few document libraries within the sub site. there are hundreds
    of sub sites exist in this site collection. I need to access the root site collection within the itemevent receiver and access thatperson column from that splist. why i ahve kept this list at the root site collection level [
    http://server1:2020/ ] , because this  splist is the UI for customer's sp admin for performing  weekly tasks. like adding few items in the splist and my event receiver fires and check this column- person /group
    column ]  and apply permissions on the  document.
    so my doubt is it possible to access the root site collection from my event receiver code.
    spweb from properties web is just the subsite url and not the site collection. i want to get the root sitec ollection url's splist.
    also am already running this code under runwithelevatedprivileges.

  • Value does not fall within the expected range while passing a spfieldlookupvalue in a caml QUERY

    i have to pass a column from master list -single line of text - and this will be the lookup of another column in another list
    splist1---> column1 [ free text]
    splist2--> column2  [ lookup column of the above list -splist1]
    now am writing a  caml query :
       objDisciNodeQuery.Query =
                                          string.Format(
                                       "<OrderBy>" +
                                         "<FieldRef Name='ID' />"
    +
                                      "</OrderBy>" +
                                       "<Where>" +
                                        "<And>" +
                                          "<Eq>" +
                                             "<FieldRef
    Name='somecolumn' />" +
                                             "<Value
    Type='Text'>{0}</Value>" +
                                          "</Eq>" +
                                          "<Eq>" +
                                             "<FieldRef
    Name='column2' LookupId='TRUE' />" +
                                             "<Value
    Type='Lookup'>{1}</Value>" +
                                          "</Eq>" +
                                         "</And>" +
                                       "</Where>", valueofsomecolumn, lookupidvalueofcolumn2);
                                        SPListItemCollection splistItemAssocCollec
    = null;
                                        splistItemAssocCollec = splist2.GetItems(objDisciNodeQuery);
    here it throws Value does not fall within the expected range
    Anyone has idea why i am getting this error, .
    any ideas  are appreciated.

    We can use lookup column in caml query link this
    <Where>
    <Eq>
    <FieldRef Name=’Departments’ LookupId=’TRUE’ />
    <Value Type=’Lookup’>10</Value>
    </Eq>
    </Where>
    Multi lookup column reference 
    http://naimmurati.wordpress.com/2013/12/03/multi-lookup-fields-in-caml-queries-eq-vs-contains/

  • Soap:Server was unable to process request. --- Value does not fall within the expected range

    Brand spanking new Sharepoint 2010 RTM and Designer 2010 RTM install. Unable to edit any page whatsoever even when checking out. Error in SP Designer: soap:Server was unable to process request. ---> Value does not fall within the expected range.
    Like I said, this is a brand new RTM install with nothing altered yet. Why can't I edit any pages? I am using the highest credentials so there should be no permission issues. There isn't anything that is helping me on the Web for this.
    Why would I encounter a problem like this out of the box? This is not the beta - it is RTM!

    Go to :
    Site Collection Administration 
    SharePoint Designer Settings
    and Enable the following
    Enable Detaching Pages from the Site Definition
    Enable Customizing Master Pages and Page Layouts
    Enable Managing of the Web Site URL Structure
    This should resolve the SP Designer Edit Issues.

  • Sharepoint2010: ArgumentException: Value does not fall within the expected range

    I have a lookup column 'usertype' in one of my list, that is lookup for another list. and in my code when i try to access this column,
    item["usertype"]
    i get an error: ArgumentException: Value does not fall within the expected range.
    I tried with Lookup Resource Throttling in Central Administration. But still i am not able to access this field. And this field is not programmatically created.
    Any idea to solve this..
    Thanks in advance.

    Hi Hemendra,
    In the "Course " List there is a lookup field "CourseType"
    which is lookup to a list having two values "Internal" and "external"
    Here is my code:
    SPList Course = Helpers.GetList(web, "Course");
    SPListItemCollection Mycourse = Helpers.GetListItemsByField(Course, "Course_x0020_Code", "001");
    string CourseType=Mycourse[0]["CourseType"].ToString();
    "Helpers.GetListItemsByField" method will return proper result using CAML query. So Mycourse[0] will have all the fields except the one which i mentioned above. There are other Lookup fields in the same list and all works fine. (Assume Mycourse
    will always have exactly 1 row.)
    Regards,
    Vikas

  • REST API - Can't expand Title of lookup columns "System.ArgumentException : Value does not fall within the expected range"

    I have a list that has more than 12 columns of type lookup with more than 5000 items and I am using a date field as an indexed column so I can restrict the results to meet the list view threshold.  I am also using $select to restrict the columns to
    meet the lookup column threshold.
    If I run the query below it all works as expected:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Id&$expand=Lookup1
    If I run this query it does not work:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Title&$expand=Lookup1
    Error:
    <m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <m:code>-2147024809, System.ArgumentException</m:code>
    <m:message xml:lang="en-US">Value does not fall within the expected range.</m:message>
    </m:error>
    The lookup column "Lookup1" is using Title as the column's information and this should be working.  What is interesting is that changing the lookup threshold has no effect on this but raising the list item view limit does make it work.  The
    date range is selecting less than 5000 items.  So what am I missing here? I just want the Title for the lookup column and my query has about 10 items in it.

    Looking through the logs the error is thrown due to the following error messages:
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields 84h8
    High Field with internal name 'LookupFieldName_x005f_Title' already exists in the field cache
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields ki9p
    High Unable to add join related fields to the Query.[Error 0x80070057]
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General xxpm
    High Unable to execute query: Error 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General 8e2s
    Medium Unknown SPRequest error occurred. More information: 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General aix9j
    High SPRequest.GetListItemDataWithCallback2: UserPrincipalName=<removed>, AppPrincipalName= ,pSqlClient=<null> ,bstrUrl=siteUrl ,bstrListName=<removed> ,bstrViewName=<null> ,bstrViewXml=<View
    Scope="RecursiveAll"><Query><Where><Eq><FieldRef Name="ID" /><Value Type="Counter">5481</Value></Eq></Where></Query><ViewFields><FieldRef Name="LookupFieldName"
    LookupId="TRUE" /><FieldRef Name="LookupFieldName_x005f_Title" /></ViewFields><ProjectedFields><Field Name="LookupFieldName_x005f_Title" Type="Looku ,fSafeArrayFlags=SAFEARRAYFLAG_DATES_IN_UTC
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    The very first message states that it is unable to add join related fields, what could be the possible cause of this?  As you can see rather than specifying a date range which I know contains less than 5000 items, even filtering based on ID gives the
    same result.

  • SSRS 2014 SharePoint integrated - getting error "Value does not fall within the expected range"

    Hi everyone,
    Note sure if this should be in the SharePoint forum instead, but here goes...
    I have got an SSRS report (SQL 2014) deployed to SharePoint 2013, and I am using a command line to call this report. The command line is...
    https://myserver/_vti_bin/reportserver?https://myserver/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    This returns an error "Value does not fall within the expected range"
    If I remove the "&rs:Format=PDF" then the report appears on screen without problems...
    When I look in the sharepoint log files, I see the command line has changed to be 
    https://myserver/_vti_bin/reportserver?https://{machine_name}/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    I'm not sure why this is happening, but if I can ensure the command line uses the correct SharePoint address, then I think this will fix the problem.
    Any questions or suggestions or solutions gratefully received.
    thanks
    David

    Thanks for the reply. I can probably explain easier than screenshots..
    The server name is "datacentre-cenet" for example
    But the address we use to access SharePoint is https://cenet (ie using the SharePoint Alternate Access mappings). So the command line to call the SSRS report uses the SharePoint name (CENET).
    But when I try to export SSRS to PDF, the command line get changed to
    https://datacentre-cenet which causes an error
    My thought is that somewhere SSRS is using the server name, rather than the correct URL which is
    https://cenet
    So if I could know where SSRS picks up the server name, I could configure that to fix this issue.
    Hope that's more clearer, thanks again,
    David

  • SharePoint Receive Location: Value does not fall within the expected range

    Hi,
    I setup a wss receive location in BizTalk 2013 (CU2 applied) to get documents from a SharePoint 2013 infoPath Form Library, the documents were checked out but not processed by WSS adapter and BizTalk logs following error in event log
    The host instance user has 'Full Control' permission on this form library
    (the same configuration is working in another environment with different BizTalk and SP instances)
    any help would be highly appreciated
    Usman Shaheen MCTS BizTalk Server http://usmanshaheen.wordpress.com

    Hi,
    I would recommend to create a new InfoPath form and publish it to SharePoint library to see
    if the issue still occurs.
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/07438b97-2b25-431a-b94a-1ea8e08992d5/upgrade-sharepoint-2007-to-sharepoint-2010-info-path-pages-issues?forum=sharepointadminprevious
    If that doesnt fix the issue, you should go with this hotfix.
    Description of the SharePoint Foundation 2010 hotfix package (Wss-x-none.msp): July 2, 2012
    Description reads: 
    Assume that you use the metadata navigation and filter feature to filter a view of a document library. When you check in or check out a document through the menu on the ribbon, you receive the following error exception:
    System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.SPWeb.GetFile(String strUrl) at Microsoft.SharePoint.ApplicationPages.Checkin.get_File() at Microsoft.SharePoint.ApplicationPages.Checkin.OnPreInit(EventArgs
    e) at System.Web.UI.Page.PerformPreInit() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Rachit

  • I can't get 4G service in my neighborhood anymore.  Samsung S5 always shows 3G as my connection speed now.  Just started within the last few days.  Is there an upgrade going on for the 55419 zipcode?

    My Samsung S5 used to get 4G at home all the time.  Now I'm showing 3 bars of 3G connections and need to reboot to get 4G recognized.  4G will eventually slow down to 3G within a few minutes.
    This is the Minneapolis 55419 zip code, near the corner of 50th & Lyndale.
    My cellphone shows the closest tower ID as 3633
    What's going on with the drop in speed?

        Chasman1956,
    I am so sorry to hear of the service issues you are experiencing. Per review of your zipcode I do show that the area may have network opportunities. Do you have the same issues inside and outside of your home? When did this issue begin? Do you have any issues with calls or text? Try this... http://vz.to/1H24nAd
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • Firefox not scrolling or scrolling very slowly when i open a new tab, this just started within the last few weeks. Ive tried reloading firefox but have the same problem.

    when i am using firefox if i click on a link that opens a new tab the new page wont scroll or scrolls very slowly. this has never happened before and i have had many many tabs open at once without any problem, now if i have just two the second one gives me these problems while the first one continues to work fine.

    '''I fixed mine by removing the Ask.com extension.'''
    Tools
    Add-ons
    Settings icon
    View Recent Updates
    Ask.com '''DISABLE'''
    Running FF 8.0 on Windows 7 (64-bit)

  • Server Error in '/' Application. Value does not fall within the expected range

    Hi,
    I am getting this error when i am publishing my custom webpart in the UAT site, it is created in Visual studio 2008 and i have deployed it in MOSS 2007 site.
    I appreciate any help on this. Please see the below error.
    Source Error:
    Line 20: protected void getDivision(SPWeb web, string strList)
    Line 21: {
    Line 22: SPList list = web.Lists[strList];
    Line 23: ddlDivision.DataSource = list.Items;
    Line 24: ddlDivision.DataValueField = "Title"; // List field holding value - first column is called Title anyway!
    Thanks,
    Prachi

    Hi,
    I am receiving this error when i am publishing the web-part page. Web part was developed in visual studio 2008 and deployed in SharePoint 2007 site.
    While deployment i am getting any error, this error is occurring only when i am publishing the web-part page.
    I checked all the help links and made changes in the web.config file, restarted IIS, add n deleted web-part from the web-part Gallery, added n removed wsp files 2-3 times, everything i did.
    If anyone can help me resolving this issue then please send across solution.
    Thanks,
    Prachi

  • Songs not starting at the beginning.

    I keep finding that if I've listened to a track but changed halfway through the next time I go to listen to the initial track it starts where I left of. It does this on my iPod as well.
    Is there anyway to stop this as it is becoming quite annoying and it has only just started within the past three weeks or so.
    I have the newest version of iTunes.
    Thanks for any help.

    This is actually the problem I think. I made the decision to erase the data and reset the entire iPod, which let it inoperable for most of the day until I figured out how to put it in recovery mode and get it working again. I then reloaded just a handful of my songs and took a look. Some do have "Remember Playback Position" selected. I'm not sure why, but I will deselect it, of course, and see if it works. That's a million.

  • ICM ERROR , service: 50200 failed (NIECONN_REFUSED) [icxxpool_mt. 1965]

    Hello,
    I have this error in the ICM transaction "SMICM" and display all. in System: SAP ECC 6.0
    ERROR => Connection request to host: localhost, service: 50200 failed (NIECONN_REFUSED) [icxxpool_mt. 1965]
    This system is for E-Recruiting and we have a J2EE and Abap.
    The thing is that i have the same error in SRM:
    ] *** ERROR => Connection request to host: localhost, service: 50900 failed (NIECONN_REFUSED) [icxxpool_mt. 1965]
    BUt in this case the problem was fixed: Deleted the value icm/HTTP/j2ee_0, because Since rdisp/j2ee_start = 0 it makes no sense to have any value in icm/HTTP/j2ee_0.
    But in the first error in the system of Recruiting  i have ABAP and J2EE.
    Do you have any idea, please'
    I really apreciate it.
    Thanks!

    Hello
    the error in the ICM trace:
    "*** ERROR => Connection request to host:
    localhost, service: 50200 failed (NIECONN_REFUSED)"
    indicates that the j2ee engine was not available over the http port.
    Can you please review SAP note 733204 which I think may help here.
    Thanks
    Kenny

Maybe you are looking for

  • AP Vendor Master Data

    HI, Working on the AP Vendor Master Data requirement. Data is being pulled from LFA1, LFB1, LFBW and LFM1. For LFA1 found the datasource 0VENDOR_ATTR and could able to get all the fields from that. Can someone please tell what are the related datasou

  • How to do Hierarchy export?

    Hi, Can nay one here suggest me how to export Hierarchy? Also it would be apprciated highly if you disclose the name of the ABAP program which would enable the hierarchy upload to BW Thanks, Ravi

  • Nothing is refreshing in any browser.

    I can't get my changes to show in any browser (Firefox, Chrome, IE). Even if I make a simply text change it won't show and I'm still getting a preview of yesterday's work. I've restarted Flex, restarted my computer, cleaned my browsers' cache; nothin

  • Linking Delivery Items with Delivery Items having batch

    Hello Fellow ABAPers, Does any one of you know how SAP links items in Delivery table (LIPS) without batches with their respective items having batch. For e.g. in Delivery Item we have delivery no. , item and batch. Assume we have delivery no 801xx an

  • Hap_start_page_powl_ui_ess OBN not working after upgrade to HR Patch 32

    Hello , After upgrade to HR Patch 32 . The obn in our portal is not working for the ESS/MSS POWL. Before the update it works fine. Any suggestions? Regards