RPC Server fault

RPC Server fault .
how to solve this problem.

Hi Renga,
in .NET you can have this error when you have somewhere an error in your code or your doing something wrong with XML.
lg David

Similar Messages

  • RPC E Server Fault SAP B1 8.8

    Hi
    I have written some code to import various documents, ie invoices, goods in from an ascii file
    The customer occasionally gets the RPC E Server fault coming up
    I looked in the forums and updated the message bar which seemed to help but for some reason they still seem to get it
    Generally on larger import files
    The code is fairly simple, I have enclosed a copy of an invoice import below to see if anyone can see any problems
    Would a garbage collect help ?
    Many thanks
    Regards Andy
    ps Not sure how to make code readable ?
                     While Not EOF(filenum)   
                        lc = lc + 1
                        'If lc Mod 5 = 0 Then
                        B1Connections.theAppl.SetStatusBarMessage("Importing line " & lc & " ....", BoMessageTime.bmt_Short, False)
                        'form.Items.Item("9").Specific.string = " " & lc
                        'End If
                        If EOF(filenum) Then GoTo end_imp
                        Input(filenum, custid)
                        If EOF(filenum) Then GoTo end_imp
                        Input(filenum, invnum)
                        If EOF(filenum) Then GoTo end_imp
                        Input(filenum, invdate)
                        Input(filenum, adamstockrot)
                        Input(filenum, qty)
                        Input(filenum, unitprice)
                        Input(filenum, salesval)
                        Input(filenum, vc)
                        Input(filenum, prodbandid)
                        Input(filenum, prodid)
                        Input(filenum, ordnum)
                        Input(filenum, credreason)
                        Input(filenum, invtype)
                        Input(filenum, rettostock)
                        Input(filenum, currcode)
                        Input(filenum, exrate)
                        Input(filenum, salescontrref)
                        Input(filenum, wh)
                        Input(filenum, salesanal)
                        Input(filenum, costval)
                        Input(filenum, salestype)
                        Input(filenum, invprodid)
                        Input(filenum, oauserprodid)
                        Input(filenum, qtyinvprod)
                        Input(filenum, rep)
                        custid = "C" & Trim(custid)
                        prodid = "P" & Trim(prodid)
                        ' check stock code exists
                        If credreason < 8 Then
                            recset.DoQuery("select * from oitm where itemcode = '" & prodid & "'")
                            If recset.RecordCount = 0 Then
                                'result = B1Connections.theAppl.MessageBox("Cannot find stock code " & prodid, 1, "Ok", "Cancel Import")
                                'If result = 2 Then Return
                                message("Line " & lc & " Error Cannot find stock code " & prodid)
                                GoTo nline
                            End If
                        End If
                        ' check customer exists
                        recset.DoQuery("select * from ocrd where cardcode = '" & custid & "'")
                        If recset.RecordCount = 0 Then
                            message("Line " & lc & " Cannot find bp " & custid)
                            GoTo nline
                        End If
                        ' see if new document
                        If invnum.Trim <> lastinv.Trim Then
                            ' save document
                            If lastinv.Trim = "" Then GoTo new_ord
                            lastbp = doc.CardCode
                            If doc.Add <> 0 Then
                                B1Connections.diCompany.GetLastError(errcode, errmsg)
                                'result = B1Connections.theAppl.MessageBox("Line " & lc & "-" & errmsg, 1, "Ok", "Cancel Import")
                                'If result = 2 Then Return
                                'Message("Error adding invoice/credit " & lastinvno & " " & errmsg & " file " & plpath)
                                message("Line " & lc & " Error adding pos inv/cr " & lastinv & " " & errmsg)
                                PrintLine(filenum2, docstring)
                            Else
                                'Message("Added invoice/credit " & lastinvno & " period " & period & " file " & plpath)
                                'B1Connections.theAppl.MessageBox("Added document")
                                ' find sap total
                                If Trim(lastdoctype) = "IN" Then recset.DoQuery("SELECT top 1 doctotal,doctotalfc  FROM OINV T0 where cardcode = '" & lastbp & "' order by docnum desc")
                                If Trim(lastdoctype) = "CR" Then recset.DoQuery("SELECT top 1 doctotal,doctotalfc  FROM ORIN T0 where cardcode = '" & lastbp & "' order by docnum desc")
                                If recset.Fields.Item(0).Value > 0 Then saptotal = recset.Fields.Item(0).Value
                                If recset.Fields.Item(1).Value > 0 Then saptotal = recset.Fields.Item(1).Value
                                message("Line " & lc & " Added pos inv/cr " & lastinv & " import total " & doctotal & " sap total " & saptotal)
                                'If Trim(invtype).ToUpper = "IN" Then add_pos_payment(lastinv, lc)
                            End If
    new_ord:
                            ' create new doc
                            If invtype = "IN" Then
                                doc = B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oInvoices)
                            Else
                                doc = B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oCreditNotes)
                            End If
                            ' need to check if service invoice
                            'If credreason >= 8 Then
                            'doc.DocType = BoDocumentTypes.dDocument_Service
                            'Else
                            doc.DocType = BoDocumentTypes.dDocument_Items
                            'End If
                            doc.CardCode = custid
                            doc.NumAtCard = invnum
                            doc.DocDate = CDate(invdate)
                            If exrate > 1 Then doc.DocRate = exrate
                            lastinv = invnum
                            doc.UserFields.Fields.Item("U_ORDER_NUMBER").Value = ordnum
                            doc.UserFields.Fields.Item("U_CF_ADAM_CNCY_CODE").Value = currcode
                            doc.UserFields.Fields.Item("U_INVOICE_TYPE").Value = invtype
                            doc.UserFields.Fields.Item("U_CREDIT_REASON").Value = CStr(credreason)
                            addlines = False
                            doctotal = 0
                            lastdoctype = invtype
                            docstring = ""
                        End If
                        ' add lines to document
                        If addlines Then
                            doc.Lines.Add()
                        End If
                        addlines = True
                        'If credreason < 8 Then
                        doc.Lines.ItemCode = prodid
                        doc.Lines.WarehouseCode = wh
                        doc.Lines.WarehouseCode = "01"
                        'End If
                        ' service invoice mod
                        If credreason >= 8 Then
                            doc.Lines.ItemCode = "PCR"
                            If vc = "0" Then doc.Lines.VatGroup = "O2"
                            If vc = "1" Then doc.Lines.VatGroup = "O1"
                            If vc = "2" Then doc.Lines.VatGroup = "O3"
                        End If
                        doc.Lines.Quantity = qty
                        ' map vat code
                        'doc.Lines.VatGroup = vc
                        'If qty > 0 And salesval > 0 Then
                        'doc.Lines.UnitPrice = CDec(salesval / qty)
                        'End If
                        doc.Lines.LineTotal = salesval
                        doctotal = doctotal + salesval
                        ' set user defined fields for line
                        doc.Lines.UserFields.Fields.Item("U_VAT_CODE").Value = vc
                        doc.Lines.UserFields.Fields.Item("U_PRODUCT_BRAND_ID").Value = prodbandid
                        doc.Lines.UserFields.Fields.Item("U_RETURN_TO_STOCK").Value = CStr(rettostock)
                        doc.Lines.UserFields.Fields.Item("U_SALES_CONTRACT_REF").Value = salescontrref
                        doc.Lines.UserFields.Fields.Item("U_COST_VALUE").Value = CStr(costval)
                        doc.Lines.UserFields.Fields.Item("U_SALES_ANALYSIS_ID").Value = salesanal
                        doc.Lines.UserFields.Fields.Item("U_SALES_TYPE").Value = salestype
                        doc.Lines.UserFields.Fields.Item("U_INVOICE_PROD_ID").Value = invprodid
                        doc.Lines.UserFields.Fields.Item("U_SALEPSYS_PROD_ID").Value = oauserprodid
                        doc.Lines.UserFields.Fields.Item("U_QTY_INVOICE_PROD").Value = CStr(qtyinvprod)
                        doc.Lines.UserFields.Fields.Item("U_REP_NUMBER").Value = CStr(rep)
                        ' map gl code
                        ' look for mapping table for group code
                        recset.DoQuery("select U_X_Code from [@CF_GL_2_REP] where U_POS = 'POS' and U_REP = '" & rep & "'")
                        If recset.RecordCount = 1 Then
                            gcode = recset.Fields.Item(0).Value
                            recset.DoQuery("select RevenuesAc,salecostac,ARCMAct,ItmsGrpNam from oitb where ItmsGrpNam = '" & gcode & "'")
                            If recset.RecordCount = 1 Then
                                If Trim(invtype) = "IN" Then
                                    doc.Lines.AccountCode = recset.Fields.Item(0).Value
                                Else
                                    doc.Lines.AccountCode = recset.Fields.Item(2).Value
                                End If
                                If credreason < 8 Then doc.Lines.COGSAccountCode = recset.Fields.Item(1).Value
                            End If
                        End If
    nline:
                    End While
    end_imp:
    Edited by: Andrew Brooker on Nov 8, 2010 9:12 AM
    Tried to make code readable,  doesn't seem to help ?

    Hello Guys,
    So basically let's do a skype conf in this topic, if you have time.......
    locate me: janos.nagy.itelligence.
    Garbage is managed automatically.... You do not need to release any com objects (memory), because if you are have any transactions  / data changes / cache movements you loose the data...
    Please note: the most important is: compiler is able to manage the memory when you have a clear definition....
    The problem is always the loop. How to manage the (DI API and other) objects memory inside the loop to not get run to the sky, and hold in a manageable situation. It is not easy, but if you hold some major steps and rules, you are able to manage...
    example:
    bad
    dim foo as object
    do
      set foo = new object
    loop
    why?
    Who will release the memory for object? declared outside  from a loop -> initilized inside the loop.... compiler will never free the object, so you will initilaize the previous object always-> eats memory....
    correct
    'version a
    do
      declare foo as object
      set foo = new object
    loop
    'version b
    function update_foo (list of params) as booelan
    begin
    declare foo as object
    set foo = new object
    ... do operation here
    gc,.collect()
    end
    'now you call update_foo
    do
    call  update_foo function and pass the params
    loop
    Some sample cases....
    1. Creation of UDF-s / UDT-s  in a cycle:
    task:  Never do it in one method or subrutine
    - reason cannot release the Garbage in a transaction
    - solution create a subrutine and inside code, where  you are able to manage the memory by the compiler automatically
    2. update any Objects in a loop:
    - never declare document as global for the metjod/subrutin
    - reason unable to manage Garbage inside (which object to be released?)
    - solution: declare the whole document inside the loop
    so Andy,
    in your code i see, that the document declared outside the loop, and initialized inside the loop. -> compiler will never release the com object  in a loop
    Correct would be: apply sap note i have provided in the message and  and also change the declaration of document somewhere in your code
    ' create new doc
    '-> insert the doc declaration here
    so Sebastian,
    I did not see your code, but if you separate the UDF creation into a method/subrutine.
    if you using method b, the issue never happens....
    I have tested a lot, each cases.... these solutions was always giving the correct way......
    Regards
    János

  • 800706BA RPC server unavailable in Report Generation toolkit

    Hi all,
    I've got a problem with LabVIEW 7.1.1 and Report Generation Toolkit (RGTK).RGTK is used to connect to MS-Word, create a new document from template and report test results. Works like a charme when stying local on the respective test machine.
    LabVIEWs 'Automation Open' node as wella as other parts of the RGTK have an control 'machine name' so I suspected I could bring a report server into game. Tried it and get an error "0x800706BA - The RPC server is unavailable in myTestVI" (translated from German Windows error).
    All the required subVIs to create a document have been put into a small test app. This one runs fine when running on the desired report server, but fail when opened and run on the devellopment machine.
    I have searched extensively for that error code and have changed some port settings in the firewalls and some services settings with no success. Can anyone help me out?
    BTW, on the remote machine a new process named WINWORD is started, but nothing more.
    TIA!

    Hi Lul,
    The error 0x800706BA is, as you said, a windows error (and, btw, your translation was correct as the original title is "The RPC server is unavailable").
    You can try to fix it with MicrosoftFixit :
    http://go.microsoft.com/?linkid=9666880
    Beside, more links that could be of some use :
    Windows Update error 800706BA:
    http://windows.microsoft.com/en-US/windows7/Windows-Update-error-800706BA
    Microsoft answer about error 800706BA:
    http://answers.microsoft.com/en-us/windows/forum/windows_other-windows_update/microsoft-updates-fail...
    In addition, a KB which is also related to this "RPC Server unavailable" in our IT database:
    How to fix MSI software update registration corruption issues:
    http://support.microsoft.com/kb/971187
    Regards
    Florian Abry
    Application Engineer Group Leader
    NI Germany

  • Cluster Aware Updating - Failed to restart - The RPC Server is unavailable

    I have a 3 node Windows Server 2012 R2 Failover Cluster, and I'm having trouble getting Cluster Aware Updating to work properly. I have been able to successfully apply updates that do not require a reboot, however, anytime I have updates that
    do require a reboot, the process fails. The error message says:
    Failed to restart <ServerName>:(ClusterUpdateException) Failed to restart <ServerName>:(Win32Exception) The RPC server is unavailable ==> (Win32Exception) The RPC server is unavailable
    I have verified that the firewall rule to allow automatic restarts is configured according to Technet: Requirements and Best Practices for Cluster-Aware Updating
    I have also made sure that the CAU AD account has local admin rights, as well as "Force shutdown from a remote system" rights on each of the cluster nodes. In this case, I have been applying updates manually from my workstation (which is not a
    member of the cluster) while logged in with Domain Admin rights (as opposed to letting the cluster update itself based on a schedule). I'd like to verify that the entire process works properly before letting it update itself. What am I missing?

     Hi Duct tape and super glue,
    Could you offer us more information about your environment status now, such as
     CUA Role name is online or not, firewall settings and the event ID, “The RPC server is unavailable” is the typical caused by the WMI or DCOM communication was not running or block, please verified that the firewall was set correctly, WinRM
    is enabled.
    More information:
    What is Cluster Aware Updating in Windows Server 2012? (Part 2) [VIDEO]
    http://blogs.technet.com/b/mspfe/archive/2013/03/07/what-is-cluster-aware-updating-in-windows-server-2012-part-2-video.aspx
    Configure Remote Management in Server Manager
    http://technet.microsoft.com/en-us/library/hh921475.aspx
    I’m glad to be of help to you!
    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.

  • Hyper-V host fails with "RPC Server unavailable" error when I try to promote Windows Server in virtual machine to a domain controller

    Host: Windows Server 2012 R2 with Hyper-V and RRAS (for Internet over NAT)
    VM: Windows Server 2012 R2 with installed Active Directory Domain Services
    When I open AD DS configuration window (“promote this server to a domain controller”) many services and programs on my host (include Hyper-V, RRAS & Server Manager) fails with RPC Server unavailable error.

    Hello Aleksandr,
    There wasn't any configuration information, ipconfig /all, network setup, etc. So it's difficult to tell.
    More importantly, are you trying to promote the host server? If yes, that is not advised, for one, because it's a Hyper-V server, (not suggested at all), and two, RRAS is installed. RRAS is problematic with any domain controller because it turns it into
    a multihomed domain controller.
    Active Directory communication fails on multihomed domain controllers
    http://support.microsoft.com/kb/272294/
    Multihomed DCs (with more than one unteamed NIC or multiple IPs) with DNS, RRAS, iSCSI, Clustering interfaces, management interfaces, backup interfaces, and/or PPPoE adapters - A multihomed DC is not a recommended configuration, however there are ways to
    configure a DC with registry mods:
    http://blogs.msmvps.com/acefekay/2009/08/17/multihomed-dcs-with-dns-rras-and-or-pppoe-adapters/
    7 Reasons not to Make Hyper-V a Domain Controller
    http://www.altaro.com/hyper-v/reasons-not-to-make-hyper-v-a-domain-controller/
    Domain Controller as Hyper-V host
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/4ff14bec-a815-473b-8d2a-33e91e17197b/domain-controller-as-hyperv-host?forum=winserverhyperv
    Networking?
    I don't know how your networking is setup, whether there are multiple NICs on the host server, if they are teamed, if you have the host interface set to allow the operating system to share administration, or if there are separate interfaces for each. Can
    the host OS ping/communicate with the DC virtual machine?
    If there are more than one NIC, you have the choice to team the NICs and share the Teamed NICs for the Hyper-V OS and the VMs, or keep them separate where one is devoted for the Hyper-V OS, and one for the VMs.
    Hyper-V Server VLAN Network Configuration
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/0aa71d2a-ebf9-4a3e-bbf5-94db55339fa2/hyperv-server-vlan-network-configuration?forum=winserverhyperv 
    Recommendation:
    Why not just create another VM DC?
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • Cannot Open HFM Application in Workspace. "The RPC server is unavailable.

    Hi All,
    I cannot open HFM Application from Workspace. Planning works fine.
    Restarted the HFM services and tried but no use.
    Error shows "The RPC Server is Unavailable. Error code:- 2147023174
    Details shows following.
    Trace: Error Reference Number: {2498F82B-1C14-4704-B34A-BA7145D27450}<BR>Num: 0x800706ba;Type: 0;DTime: 10/8/2012 7:57:19 PM;Svr: SERVER NAME;File: CHITRegistryWrapper.cpp;Line: 1108;Ver: 11.1.2.0.0.2762;<BR>Num: 0x800706ba;Type: 0;DTime: 10/8/2012 7:57:19 PM;Svr: SERVER NAME;File: CHFMwHITRegistry.cpp;Line: 1083;Ver: 11.1.2.0.0.2762;
    Thanks.

    It may be worth having a read of the following doc in Oracle support as it sounds like it could be DCOM related - "Identifying and Troubleshooting DCOM Issues Affecting Hyperion Financial Management (HFM) [ID 1419144.1]"
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • RPC server is unavailable when trying to download software updates through SCCM 2012

    I have read plenty of articles concerning RPC server problems and non of them seem to relate to this issue.  I have been trying to set up my CM 2012 server to deploy software updates and I am to the point of just needing to filter the updates, download
    and deploy them.  When I try to download the updates from the internet, I get an RPC server unavailable error and it closes.  I have checked the RPC service and all of its dependencies, verified that it is looking for a correct microsoft update service
    point, disabled my firewall and opened all ports on the firewall just to verify that it wasn't that, and ping tested a few other external sites (aka: Newegg.com/google.com) to see if I could get replies (which I did).
    Not really sure where to go from this point.  Anyone else encounter this before or know how one might fix it?
    Jeffrey IT - Tech Support Tier 2 Buyseasons, INC

    Apologies, it was only like 6 lines in CMTrace and I thought it posted ok.  Here is the text version:
    Trying to connect to the root\SMS namespace on the syscenter.BUYSEASONS.com machine.  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.463+300><thread=4756 (0x1294)>
    Connected to \\syscenter.BUYSEASONS.com\root\SMS  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.465+300><thread=4756 (0x1294)>
    Trying to connect to the \\nbsccm01.buyseasons.com\root\sms\site_NB2 namespace on the nbsccm01.buyseasons.com machine.  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.467+300><thread=4756 (0x1294)>
    ConnectServer() failed to connect to nbsccm01.buyseasons.com  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.480+300><thread=4756 (0x1294)>
    ERROR: DownloadContentFiles() failed with hr=0x800706ba  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.481+300><thread=4756 (0x1294)>
    Trying to connect to the root\SMS namespace on the syscenter.BUYSEASONS.com machine.  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.680+300><thread=4756 (0x1294)>
    Connected to \\syscenter.BUYSEASONS.com\root\SMS  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.682+300><thread=4756 (0x1294)>
    Trying to connect to the \\nbsccm01.buyseasons.com\root\sms\site_NB2 namespace on the nbsccm01.buyseasons.com machine.  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.683+300><thread=4756 (0x1294)>
    ConnectServer() failed to connect to nbsccm01.buyseasons.com  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.685+300><thread=4756 (0x1294)>
    ERROR: DownloadContentFiles() failed with hr=0x800706ba  $$<Software Updates Patch Downloader><06-28-2012 15:46:04.687+300><thread=4756 (0x1294)>
    Trying to connect to the root\SMS namespace on the syscenter.BUYSEASONS.com machine.  $$<Software Updates Patch Downloader><07-23-2012 16:47:05.531+300><thread=7108 (0x1BC4)>
    Connected to \\syscenter.BUYSEASONS.com\root\SMS  $$<Software Updates Patch Downloader><07-23-2012 16:47:05.550+300><thread=7108 (0x1BC4)>
    Trying to connect to the \\nbsccm01.buyseasons.com\root\sms\site_NB2 namespace on the nbsccm01.buyseasons.com machine.  $$<Software Updates Patch Downloader><07-23-2012 16:47:05.552+300><thread=7108 (0x1BC4)>
    ConnectServer() failed to connect to nbsccm01.buyseasons.com  $$<Software Updates Patch Downloader><07-23-2012 16:47:05.565+300><thread=7108 (0x1BC4)>
    ERROR: DownloadContentFiles() failed with hr=0x800706ba  $$<Software Updates Patch Downloader><07-23-2012 16:47:05.566+300><thread=7108 (0x1BC4)>
    Trying to connect to the root\SMS namespace on the syscenter.BUYSEASONS.com machine.  $$<Software Updates Patch Downloader><07-23-2012 17:04:05.693+300><thread=5124 (0x1404)>
    Connected to \\syscenter.BUYSEASONS.com\root\SMS  $$<Software Updates Patch Downloader><07-23-2012 17:04:05.694+300><thread=5124 (0x1404)>
    Trying to connect to the \\nbsccm01.buyseasons.com\root\sms\site_NB2 namespace on the nbsccm01.buyseasons.com machine.  $$<Software Updates Patch Downloader><07-23-2012 17:04:05.696+300><thread=5124 (0x1404)>
    ConnectServer() failed to connect to nbsccm01.buyseasons.com  $$<Software Updates Patch Downloader><07-23-2012 17:04:05.699+300><thread=5124 (0x1404)>
    ERROR: DownloadContentFiles() failed with hr=0x800706ba  $$<Software Updates Patch Downloader><07-23-2012 17:04:05.700+300><thread=5124 (0x1404)>
    Nbsccm01 is also our migration server that is no longer in service, is there anyway to disconnect this server permanently?
    Thanks!
    Jeffrey IT - Tech Support Tier 2 Buyseasons, INC

  • RPC Server not Available error when using Windows Fax & Scan under Windows 7

    RPC Server not Available error when using Windows Fax & Scan under Windows 7

    Hi,
    On current situation, please remove the old fax account and re-add a new fax account in Windows Fax and Scan, then check if this issue sill exist. For more details, please refer to following similar thread and artilces.
    RPC Server not Available error when using Windows Fax & Scan
    under Windows
    The local fax account is inaccessible after you rename a Windows Vista-based computer
    Cannot send fax from Windows Vista/Windows 7 PC with “RPC Server not Available” error message
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    If any update, please feel free to let me know.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Hyper-v manager in windows 8.1 cannot connect to hyper-v server. RPC server unavailable

    I am setting up a new server. I installed Hyper-V 2012 R2 on it and want to manage it remotely with Hyper-V manager from a Windows 8.1 computer. I am unable to communicate with the computer with the server. Hyper-V manager gives me the following error: RPC
    Server Unavailable. Unable to establish communication between "the hypervserver" and "the W8.1station". Both computer are located in the same subnet and both are on the same domain.
    I configured the server with a fixed IP, DNS, to accept pings, connected it to the domain and set it up to allow remote access and management. Although I do not think it is necessary, I added my domain account to the administrators group in the hyper-V server.
    I can perfectly ping the server and remote into the server from the W8.1 station. From he server I can also ping the W8.1 station as well as exterior websites (DNS functionality is ok).
    I have play with the firewall in both, the Hyper-V server and the management station and have not being able to get them to communicate. Blaming the Hyper-V server for all this and the great time that I have already spent on this problem, I borrowed a Windos
    7 Pro computer, installed RSAT and enabled the Hyper-V manager in that computer. Launched the manager AND CONNECTED TO THE HYPER-V SERVER WITH NO PROBLEMS AT ALL !!!!!!!
    I have read a lot already about this but most people having this issue are setting up servers in a workgroup environment, and almost nobody is using Windows 8.1 as the management station. Can someone PLEASE give me a hand with this problem??
    Thanks to you all !!!

    Hi reirem,
    Please use the script " hvremote " to Verify configuration for errors via   command "hvremote /show /target:othercomputername
    Here is HvRemote script link :
    http://code.msdn.microsoft.com/Hyper-V-Remote-Management-26d127c6
    Best Regards
    Elton Ji
    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.

  • Re: BT Retail Server Fault

    Hi
    I also have a fault that is showing as a BT Retail Server Fault, we logged the same fault 15 months ago just after we upgraded to Infinity2, but last time they said the issue at the exchange and so there were some engineers sent out. Now our service is so intermittent we have logged it again, and this time they have said they can see that our service is dropping out 20-30 times per day and have marked it as a BT Retail Server fault, when we have service, our speed is pretty great really.
    Has anyone had any success in having this resolved, does switching to another provider solve the issue? I'm not in contract, so am quite happy to move if it will solve the problem

    Hi KLDack and welcome,
    Sorry you're having problems with the connection. I'll take a look at that for you. Can you drop me an email with your details? You'll get the 'contact us' link in my profile.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • RPC Server is unavailable when trying to renew or request a new certificate with new key

    Hi
    I have a couple of wireless access points (AP's) that are unable to use our RADIUS server to authenticate.
    This started happening after a power outage, and I did a gracefull shutdown of the RADIUS server.  When the server was booted up the AP's appear to have lost the ability to authenticate users of both PC's and mobile devices.
    I looked through the Network Policy server  MMC and didn't find anything there.
    Next I looked at the certificates and found 2 in the Personal>Certificates folder, that I think are related to this configuration.  The odd thing is they expired the exact same day as the power outage.  
    So I tried to Renew and then Recreate the certificate's key. That's when I received the RPC server unavailable.  I also tried creating a new key from scratch, same problem.
    I did a lot of searching on the web so I have seen this thread and I have checked all the things recommended, none of the suggestions helped:  
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/2b93bfa8-c162-4fc8-9cf3-a8f8f8c8ff29/rpc-server-is-unavailable-requesting-a-new-certificate?forum=winservergen
    I must admit I am at a loss as to where to look next. 
    Help is very much appreciated.

    Are you also the admin of the certificate authority? 
    =====I am the admin, but my knowledge of this topic is low.
    If the CA is operational, the next steps are:
    - Any firewalls between your client and this CA? Did somebody change the desktop firewalls settings at the CA?
    ===== There are no firewalls between the client and CA nor have the desktop firewall rules changed.
    - Can sombody (the PKI admin?) confirm that the CA works fine and other clients can enroll? What's the difference between those clients and yours?
    ===== I will see about trying this out and report back. 
    - Is the CA probably in a different domain and does Kerberos authentication work fine between domains? I had sometimes seen things like: CA is in a root domain but clients cannot talk to Root DCs as per firewall settings - thus clients cannot get Kerberos tickets
    from the domain hosting the CA. (Certificate enrollment is sometimes the first application that really requires Kerberos and cannot fall back to NTLM). A network trace would help here.
    =====
    The CA is in the same domain. 
    - Did somebody tweak with DCOM permissions or lock down flags at the CA (unlikely)
    ===== The DCOM settings haven't been touched by anyone. 
    Thanks

  • RPC server unavailable

    Hello All:
        I know there are several post out there for this problem and I know there are fixes out there. But out situation is a little different I suppose. And we already tried the solution posted on note 833798, 824976 and several post previously and still unable to resolve this..
        There are two building in the company that needs access SBO. And this problem only happens in 1 build which server does not reside.
        SBO start just fine, it runs and everything looks ok. A add-on that use single sign on with getcompany() call starts and system crash. Not responding. When you force the application to close. A error message pop up saying RPC server unavailable.
        This same thing happens when we trying to run any DI-API add-on such as DTW...
        And everyhting works just fine on the other building. There is no fire wall between. There is a T1 line between the two building. From the network capture there is some kind of RDS package wrong format error messsage that coming back and forth.
        If anyone have see something similar, I really appreciate any suggestion at this point!!

    They are all in 1 domain. Furthermore we used Domain Admin which has full rights for all system under domain. So it shouldn't be a user problem.
    There is a bridging system in between the T1. But if we run the VPN then it should by pass the bridging system and directly access server.
    SBO server /SQL DB / licenser server are all in 1 box which is a WS2003 SP1 64bits... I don't know if that information helps any!!
    Again the people in the first building doesn't seem to have this problem at all.

  • RPC Server unavailable -2147023174 ActiveX

    Good Afternoon,
    I am trying to control a Siqura IP Camera trough an ActiveX Control dll, when I Run the VI I get the following error on the call of the Second Automation Open.VI: RPC Server unavailable -2147023174.
    I have tried to investigate why should I receive this error but for now have no clue.
    Could anyone  tell me why it is showing this error, you'll find enclosed a pic of my VI and a copy of the ActiveX dll I use (renamed txt because Ni would not allow posting .dll files.
    Thanks in advance,
    Attachments:
    RPC Server Unavailable.JPG ‏90 KB
    Siqura.Controls.txt ‏860 KB

     The file I use is attached, however I believe I have determined one small issue. If I compile the attached vi. and move it to the server it will call the application locally. In other words, the app will be called on the local server when the code attached is compiled. I have configured the default security per a couple of posts on this topic, and have modified the DCOM settings for the interactive user. The same code attached does work for another server on the same network that runs Windows NT 4.0. The other machine ( the one I cannot call Name.exe from remotely) has windows server 2003 enterprise edition. I believe the code is simple and pretty much correct, however I seem to be having some problems with the Win server 2003 enterprise security. Please evrify that this code should work (open an exe called Name.exe, and return the value of a control "IP Dot". Have you seen any issues with Windows XP or Server 2003 Enterprise, that may cause DCOM communication issues with the sample code I have provided?
    Attachments:
    ontheroad.vi ‏53 KB

  • Method PrintToPrinter sometimes throws 'The RPC server Unavailable'

    I am using ReportDocument.PrintToPrinter method in order to print a report in my asp.net 2.0 application
    Some times this method throws exception 'The RPC server Unavailable'
    but sometimes it works fine and prints the report to printer
    Is there any setting on web server or print server I am missing?

    I am using
    Crystal Reports 2008 Runtime SP2
    Version     12.2.2.453
    I am printing on Network Printer
    and OS is Windows XP Professional
    Following is the piece of code I am running to print a report, sometimes  rd.PrintToPrinter(Convert.ToInt32(sCopies), true, 1, 1);  works prefectly fine but some times it throws  RPC Server Unavailable )
    try
         using (ReportDocument rd = new ReportDocument())
               rd.Load(sSourceFilePath);// rpt file
                rd.PrintOptions.PrinterName = vssDefaultPrinter; //\\PrintServ\LexE250dn
                rd.PrintToPrinter(Convert.ToInt32(sCopies), true, 1, 1);
       catch (Exception)
            throw;
    Edited by: SainiAmritPal on Jan 5, 2010 6:40 PM

  • DFS - Cannot Create Namespace - RPC Server Is Unavailable windows 2008R2

    Hi guys, I am back again with another question
    I am trying to create a domain based namespace, enabled Windows 2008 mode and get the following
    error...\\Miracle-Adventure.com\dfs. The namespace cannot be queried. The RPC server is unavailable.
    I have 3 DC's - 2 Virtual DC (windows 2008R2) / 01 DC on a Physical Box Windows 2008R2.  I am trying
    to create the DFS Namespace in my Physical Box DC01.
    Any Idea?

    Hi,
    You could update the HOST (A) records on the DNS server for the domain name, pointing to IP Addresses of some or all of the DCs to resolve the issue:
    For more detailed information, please refer to the article below:
    "The namespace cannot be queried. The RPC server is unavailable." error attempting to create a DFS namespace on Windows Server 2008
    http://support.microsoft.com/kb/2021914
    Regards,
    Mandy
    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.

Maybe you are looking for

  • RAID 0 array of SSDs: not a bad idea, but not easy

    I thought you all might find this interesting, and in any case, I'd enjoy hearing feedback as you might also audit these conclusions based on your own expertise with PC systems. I'm pushing technology to the furthest limits at all times, because I'm

  • Clone Network

    Here is the game plan: I am setting up a new lab for an elementary school. I have 30 computers that I need to all look and run exactly the same. I know about Carbon Copy Clone (witch does not work with 10.3) is there any easier way? I have an Apple S

  • Camera Raw Preferences- Tiff / JPEG Handling -CS 3

    In the Camera Raw Preferences > JPEG + Tiff Handling Section I have " Always open TIFF/JPEG Files with Settings Using Camera Raw" UNCHECKED. Yet, when I double-click on an image in Bridge to open it, it opens the Raw window. I want the image to open

  • Exchange Portlet problem

    hi experts, we have a problem getting the asp pages that come with the exchange portlet running. The inbox.asp script runs fine, when not the contacts.asp and calendar.asp, they both come back with the error message that the the method 'GetDefaultFol

  • "the backup disk image "volumes/time machine/ Macbook (2).sparsebundle" is already in use."

    everytime  I try to run time machine I get this message: It worked fine yesterday, any suggestion would be appreciated