Re: Unable to obtain reference to plan in distributedenvironment

An interface is just a definition of attributes and methods it contains no
code.
The code is in the class that implements the interface therefore even if you
can pass an objet
reference as an interface you better be sure that the object that will use
it has access to the
implementation. It works when it is not distributed because all of the code
is on the client therefore
is accessible. Once distributed the partition containing PlanSO does not
have the library wich
contains the code for PlanTester therefore it cannot execute code in
PlanTester. If you
want to do this and not put PlanTester in the same Plan as PlanSO I think
you can copy the library wich
contains the code for PlanTester on the server partition and it will not
give you a deserialization error
because now it can find the executable code.
This could also probably happen with inheritance for example you have a
class defined in plan A (ClassA)
and plan B (wich has plan A supplier) contains a sub-class of ClassA
(ClassB). Now in one partition you
create a ClassB then pass it to another partition in a method call of
signature Something( p1 : ClassA ).
ClassB will fit in ClassA so you can do this (it will compile). But if the
partition on wich you are calling
Something() does not have access to the code in plan B then you will get a
deserialization error.
Hope this helps a little.
Christian Boult ([email protected])
Programmeur - Analyste
Influatec inc.
-----Original Message-----
From: [email protected] <[email protected]>
To: [email protected] <[email protected]>
Date: Friday, April 16, 1999 8:25 AM
Subject: Unable to obtain reference to plan in distributed environment
>
Forte Folks,
I have run across a supplier plan problem that I think I can explain, but
would like confirmation and maybe further explanation on.
The scenario:
I have three plans (PlanClasses, PlanSO, and PlanTester).
PlanClasses has classes that PlanSO and PlanTester use, including an
interface called Observer.
PlanSO has the Service Object and the class that the service object
implements. It has PlanClasses as a supplier.
PlanSO has a method called subscribe(Observer client).
PlanTester is a test client. It has PlanClasses as a supplier. It
implements the Observer interface, and calls the subscribe method on the
PlanSO passing itself as an Observer to the SO.
Anybody see the problem yet?
I run this scenario locally and everything is dandy.
I run this scenario distributed and I get a deserialization exception. The
PlanSO cannot deserialize the test client object that I had passed as an
Observer because it cannot find a reference to the PlanTester plan.
If I put the test client class in the PlanSO plan and partition the
application the same way, it works. The service object needed a reference
to the test client class even though it is getting passed as an Observer
interface.
Has anybody run into this before? Can anybody give me further details on
why forte has this problem?
I get the same exception whether the distrubted runtime property on the
client is allowed or not allowed. If it is set to not allowed, shouldn't
only an OID be sent across, and no serialization need take place? If the
object is serialized, I guess it does make sense that you would need the
details of the implementation of the interface (da class) to deserialized
it.
Note: I used this pattern instead of Forte events because I am going to
expose the SO as a CORBA interface. Right now, for the forte clients that
use the SO, I am registering for forte events which are posted by the SO to
get around this problem.
Thanks for any responses,
Chris Henson
www.atgs.com
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

An interface is just a definition of attributes and methods it contains no
code.
The code is in the class that implements the interface therefore even if you
can pass an objet
reference as an interface you better be sure that the object that will use
it has access to the
implementation. It works when it is not distributed because all of the code
is on the client therefore
is accessible. Once distributed the partition containing PlanSO does not
have the library wich
contains the code for PlanTester therefore it cannot execute code in
PlanTester. If you
want to do this and not put PlanTester in the same Plan as PlanSO I think
you can copy the library wich
contains the code for PlanTester on the server partition and it will not
give you a deserialization error
because now it can find the executable code.
This could also probably happen with inheritance for example you have a
class defined in plan A (ClassA)
and plan B (wich has plan A supplier) contains a sub-class of ClassA
(ClassB). Now in one partition you
create a ClassB then pass it to another partition in a method call of
signature Something( p1 : ClassA ).
ClassB will fit in ClassA so you can do this (it will compile). But if the
partition on wich you are calling
Something() does not have access to the code in plan B then you will get a
deserialization error.
Hope this helps a little.
Christian Boult ([email protected])
Programmeur - Analyste
Influatec inc.
-----Original Message-----
From: [email protected] <[email protected]>
To: [email protected] <[email protected]>
Date: Friday, April 16, 1999 8:25 AM
Subject: Unable to obtain reference to plan in distributed environment
>
Forte Folks,
I have run across a supplier plan problem that I think I can explain, but
would like confirmation and maybe further explanation on.
The scenario:
I have three plans (PlanClasses, PlanSO, and PlanTester).
PlanClasses has classes that PlanSO and PlanTester use, including an
interface called Observer.
PlanSO has the Service Object and the class that the service object
implements. It has PlanClasses as a supplier.
PlanSO has a method called subscribe(Observer client).
PlanTester is a test client. It has PlanClasses as a supplier. It
implements the Observer interface, and calls the subscribe method on the
PlanSO passing itself as an Observer to the SO.
Anybody see the problem yet?
I run this scenario locally and everything is dandy.
I run this scenario distributed and I get a deserialization exception. The
PlanSO cannot deserialize the test client object that I had passed as an
Observer because it cannot find a reference to the PlanTester plan.
If I put the test client class in the PlanSO plan and partition the
application the same way, it works. The service object needed a reference
to the test client class even though it is getting passed as an Observer
interface.
Has anybody run into this before? Can anybody give me further details on
why forte has this problem?
I get the same exception whether the distrubted runtime property on the
client is allowed or not allowed. If it is set to not allowed, shouldn't
only an OID be sent across, and no serialization need take place? If the
object is serialized, I guess it does make sense that you would need the
details of the implementation of the interface (da class) to deserialized
it.
Note: I used this pattern instead of Forte events because I am going to
expose the SO as a CORBA interface. Right now, for the forte clients that
use the SO, I am registering for forte events which are posted by the SO to
get around this problem.
Thanks for any responses,
Chris Henson
www.atgs.com
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Unable to Obtain a Connection to Hyperion Essbase from Planning Application

    Dear All,
    I have installed FDM+Foundation+HFM+Essbase+Planning 11.1.1.3 (Tomcat)
    I have stacked with the following problem:
    when I try to open my data form, I am getting
    “Unable to obtain a connection to Hyperion Essbase. If this problem persists, please contact your administrator”
    Validate Database Connection & Validate Essbase Connection are successful throw Manage Data Source menu
    Essbase user has admin privileges
    In EAS console I can make myself sure, that my application is running
    Data Form is valid (verified in Preview screen in Data Form wizard)
    Can somebody help me with it?
    Best Regards,
    Siarhei

    Thanks, John
    Summary
    Symptoms
    When attempting to connect to Hyperion Planning as the admin user, the following error occurs:
    Unable to obtain a connection to Hyperion Essbase. If the problem persists, please contact your administrator'
    Cause
    Hyperion Planning web accesses the application by making a connection to the Planning metadata in the relational repository (via Relational repository settings) and also to Essbase via the datasource settings.
    Any Essbase connection issues indicate problems with the Essbase settings in the datasource or are related to the Essbase server.
    Solution
    - Edit the datasource via the Configuration Utility.
    - Test the Essbase connection and make sure that the user used to make the connection is valid and has admin rights to Essbase.
    - Restart the Hyperion Planning service once the Essbase user has been given the correct access rights.
    - Login to the Essbase Administration Services (EAS) console and right click on the Essbase server name node -> Refresh security from Shared Services
    - Expand the applications node (under the Essbase server name node) and check that there is an application with exactly the same name as the Planning application.
    Note: Go to section 'manually recreating a Planning application in Hyperion Essbase, if the Planning application is missing in the above step.
    - Login to the application in Hyperion Planning web.
    Manually recreating a Planning application in Essbase:
    - Login to the EAS console as admin (the Essbase user used by admin must have Essbase administrator rights)
    - Go to Essbase servers -> your Essbase server name -> right click on applications -> Create application -> Using Block Storage and enter the exact Hyperion Planning Application name then click on ok.
    Note: The above step will only create the application shell without the databases.
    - Login to the application in Hyperion Planning web as admin and go to Administration menu -> Manage Database -> select database and filters (to create filter access to Essbase) and Refresh (refresh will also recreate the databases if they don't exist)
    Best Regards,
    Siarhei

  • Unable to load entities into Planning using OutlineLoad utitlity

    Good day all,
    One of our Planning admins needs us to load some new entities for her. We've done this off and on with her Planning app for the last year without a problem. However, over the last couple of days we have not been able to load her latest metadata. She's massaged the load file almost half a dozen times and we get the same error message every time. If anyone has any ideas what it does not like about the header values, I would very much appreciate any feedback.
    We are currently running EPM Planning 11.1.1.3.04
    Successfully logged into "HPEGGD" application, Release 11.113, Adapter Interface Version 5, Workforce supported and not enabled, CapEx not supported and not enabled, CSS Version 3
    [Wed Nov 23 09:47:30 CST 2011]Successfully located and opened input file "D:\FILES\Entity_ISG_11_23_11.txt".
    [Wed Nov 23 09:47:30 CST 2011]Header record fields: Parent, Entity, Alias: Default, Alias: Member-Alias, Aggregation (HPEGGD), Aggregation (HPEGGD2), Aggregation (HPEGGD3), Two Pass Calc, Expense, Time Balance, Time Balance Skip, Data Storage, Level Number, Attributed, WF_Group, Shared_Projects, Contract_Type, Agency, Bus_CC_Mgr, Dom-Intl, ID_Number, Segment, Source_System
    [Wed Nov 23 09:47:30 CST 2011]Located and using "Entity" dimension for loading data in "HPEGGD" application.
    [Wed Nov 23 09:47:30 CST 2011]Unable to obtain dimension information and/or perform a data load: Unrecognized column header value(s), refer to previous messages. (Note: column header values are case sensitive.)
    [Wed Nov 23 09:47:30 CST 2011]Examine the Essbase log files for status if Essbase data was loaded.
    [Wed Nov 23 09:47:30 CST 2011]Planning Outline data store load process finished with exceptions: not all input records were read due to errors (or an empty input file). 0 data records were read, 0 data records were processed, 0 were successfully loaded, 0 were rejected.
    Thanks in advance for the assistance.
    Regards,
    -Bob

    One more massage did the trick.

  • Unable to create reference: org.omg.CORBA.OBJ_ADAPTER

    What is causing this error? I believe it is a configuration error, but I cannot discern what it is.
    Setup:
    I have two beans: a User entity bean, and a UserWrapper stateful session bean.
    Execution:
    My testing client-code looks up the UserWrapper EJB and creates a new object. In the UserWrapper ejbCreate method I am attempting to obtain a reference to a specific User by looking up the User EJB and calling its findByPrimaryKey method.
    Everything works fine right up until the UserWrapper.ejbCreate method is ready to close; I catch this exception:
    RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: nested exception is: java.lang.RuntimeException:
    Unable to create reference org.omg.CORBA.OBJ_ADAPTER: vmcid: SUN minor code: 1015 completed: No;
    Observations:
    User.ejbFindByPrimaryKey(UserPK pk) is NOT throwing ANY EXCEPTIONS! The error is passed to UserWrapper.ejbCreate from the container, or so it seems, but I am relatively positive it is not orginiating from the finder method. At this time the User.ejbFindByPrimaryKey method only returns the primary key object.
    UserWrapper.ejbCreate code:
    public void ejbCreate(String usrnm, String pswrd) throws CreateException {
      // instance variables
      UserHome userHome = null;
      // implementation
      try {
        // obtain an instance of the EJBHomeFactory and have it return an
        // instance of the UserHome interface
        userHome = (UserHome)EJBHomeFactory.getInstance().lookup(
            "ejb/User", net.cmpro.app.entity.user.UserHome.class);
        // request the container supply a User object for the specified
        // primary key object
        this.user = userHome.findByPrimaryKey(new UserPK(usrnm, pswrd));
      catch(FinderException e) {
        throw new CreateException(e.toString());
      catch(RemoteException e) {
        throw new EJBException(e.toString(), e);
    }Need a little help here. I'm getting very frustrated because I've never had this problem before.
    Thanks for any advice, no matter how off the wall it is.

    Yes, it is. This returns an EJBHome object from a cache. I picked this up from the IBM website. It is very handy. The method in question is as follows:
    public EJBHome lookup(String jndi, Class home) throws EJBException {
      // instance variables
      EJBHome ejbHome = null;
      Object obj = null;
      // implementation
      try {
        // looks for the interface in the collection by class
        ejbHome = (EJBHome)interfaces.get(home);
        if(ejbHome == null) {
          // looks up the interface by its JNDI name
          obj = context.lookup(jndi);
          // casts the returned object into the interface desired
          ejbHome = (EJBHome)PortableRemoteObject.narrow(obj, home);
          // put the newly retreived interface into the collection and
          // list it by its class      never use the interfaces JNDI name
          // because a single EJB object could have multiple JNDI names
          interfaces.put(home, ejbHome);
      catch(ClassCastException e) {
        throw new EJBException(e.toString());
      catch(NamingException e) {
        throw new EJBException(e.toString(true), e);
      return ejbHome;
    }

  • I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/
    or
    Adobe contact information - http://helpx.adobe.com/contact.html

  • I have an ipad2 with wifi and 3G.  My wife and I are traveling in France (Nice) then into Italy.  We are unable to purchase a data plan because our Verizon IPad will not accept a sims chip...we are told.  We were advised that this model wound work in Euro

    I have an ipad2 with wifi and 3G.  My wife and I are traveling in France (Nice) then into Italy.  We are unable to purchase a data plan because our Verizon IPad will not accept a sim chip...we are told.  An Apple store employee here said this model is good only in the US. The iPads here take a sim card. We were advised by an Apple Store Employee at home that this model would work in Europe and that we could buy our service here.  That does not seem to be the case.    We have been told that we must invest in a modem at 200.00€ and then purchase a separate service plan for each country. We can use the free wifi wherever it is available but we cannot connect to the outside world when out of range. Is there anything else we can do?
    Thanks, John

    Unfortunately, no other solution is available.
    Hope this helps

  • Unable to view SmartList in Planning webforms in 11.1.1.2

    Hi Friends,
    I am using Hyperion Planning 11.1.1.2 webforms. I am Unable to view SmartList in Planning webforms.
    steps I have done:
    1.Created a SmartList.
    2.Added entries to Smartlist
    3.Assigned the SmartList to a dimension Member(Account Member).
    4.In the webform I am selecting the same account member as Column member.
    5.One Members for Row.
    6.Rest of all the dimension members are POV/PAGE.
    When I open the form I am not able to see the smartlist for the account member. I am not able to select.
    Also I see that there is no "Enable Smart List" option in EPM (11.1.1.2). I have seen the same in 9.2
    Any Idea what needs to be set or changed?
    THanks In Advance
    ksrs.

    Hi,
    Have you set the evaluation order, Administration > Dimensions > Evaluation Order > Move the dimension that the smart list is against across to the right hand window.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • HP LJ8000n unable to obtain IP address

    We have an old LaserJet 8000n that is unable to obtain an IP address. It has been working for the last 10 or so years. In the last two weeks or so, the printer is unable to get an IP address. I did a cold reset and nothing happens. The printer is setup to use DHCP to obtain IP address. I did also tried putting the IP address in manually but that does not work either. Below is the JetDirect configuration page printout.
    Any help/suggestion is much appreciated.

    This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
    You can find the Commercial Laserjet board here:
    http://h30499.www3.hp.com/t5/Printers-LaserJet/bd-p/bsc-413
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Why am I seeing this message when I try to access my Creative Cloud account - 'We are unable to load all your plans & products. Please try again.'

    Why am I seeing this message when I try to access my Creative Cloud account:
    'We are unable to load all your plans & products. Please try again.'
    I want to see which products are included with my CC subscription - e.g. do I have a Prosite portfolio website or would I need to pay for an additional subscription?
    Is this a temporary site issue or an on-going problem?

    Please refer here with information https://forums.adobe.com/thread/1499014
    -and try some steps such as changing browsers and turning off your firewall for downloads
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    Regards
    Rajshree

  • Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Which operating system are you using?
    In photoshop elements 6, as far as i know, you can only change the Reference Point Location for transforms using the small grid in the left hand corner of the tool options bar with Transform enabled.

  • HI!  I need to obtain a receipt for my yearly fee for my adobe account.  I went into my settings and I am unable to obtain a copy of a receipt.  I do see my billing information, but I'm unable to obtain a receipt.  Please advise.

    HI!  I need to obtain a receipt for my yearly fee for my adobe account.  I went into my settings and I am unable to obtain a copy of a receipt.  I do see my billing information, but I'm unable to obtain a receipt.  Please advise.

    Hi jennys8380407,
    Can you please elaborate on what you mean by "unable to obtain a receipt"? Are you not able to see the invoices for your payments? Or are you unable to print them? It sounds like you have followed the steps outlined here: Print a payment receipt or invoice | Creative Cloud--can you tell me what you do see when you look at the subscriptions listed on your account?
    Best,
    Sara

  • Applet throws "Unable to obtain Document object"

    Hello,
    I have an applet in a html-page and a link to show the applet (in a later version this should be a menu with links to different applets).
    If I click very often (click,click,click,click) on the link I get an exception (see below).
    Used environment:
    - Windows 2000 English
    - Internet Explorer 6
    - Java(TM) Plug-in: Version 1.4.2, Using JRE version 1.4.2 Java HotSpot(TM) Client VM
    Here are my 4 tiny source-codes:
    1. My test Applet:
       import java.util.*;
       import javax.swing.*;
       public class BigApplet extends JApplet {
          Vector vec = new Vector();
          public void init() {
             this.getContentPane().add(new JLabel("BigApplet"));
             for (int i = 0; i < 10; i++) {
                vec.add(new Object[250000]);
       }And 3 HTML-Pages:
    2. Frame.html
       <html>
          <frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
             <frame src="link.html" name="menuFrame" noresize marginheight="0" marginwidth="0">
             <frame name="applet" noresize marginheight="0" marginwidth="0">
          </frameset>
       </html>3. Link.html
       <html>
          <a href="applet.html" target="applet">Applet</a>
       </html>4. Applet.html
       <applet code="BigApplet.class" codebase="bin" />The three html pages are in the same directory and the BigApplet.class is in the bin-folder of this directory.
    If I start the frame.html from Explorer and than click very fast (about 5 to 10 times) on the link to the applet I get this exception:
    netscape.javascript.JSException: Unable to obtain Document object
         at sun.plugin.AppletViewer.getDocumentBase(Unknown Source)
         at sun.plugin.AppletViewer.getCodeBase(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)If the applet is delivered by a webserver (tried IIS and Apache) the Internet Explorer crashes without a message. In that case I get a different exception (found in the log file of the java console):
    java.lang.NullPointerException
         at sun.plugin.util.URLUtil.canonicalize(Unknown Source)
         at sun.plugin.AppletViewer.getDocumentBase(Unknown Source)
         at sun.plugin.AppletViewer.getCodeBase(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)Any idee what to do to be sure that an user can not produce this error?
    Bye
    Thomas

    Hello, I am getting the same error under different circumstances. No clicking is involved. What I need to know is what causes the error? Anyone know?
    And levi_h - the end users of applets often get impatient when they don't see immediate results and will click and click and click and click, thinking that somehow they are helping the situation. You may feel they deserve to be punished, but the powers that be who are the customers who will deploy our applets don't feel that way at all, and they are the ones that pay our salaries and allow us to be sheltered, clothed, fed and send our kids to college!

  • Unable to obtain inventory from some XP PC's

    I am unable to obtain version 7.5 inventory info from a handful of XP PC's. I believe it's something to do with this WifName registry entry which is blank on a PC where I cannot obtain inventory.
    I have uninstalled the 7.5 client, deleted the registry contents as it leaves them there, deleted the Asset Management firectory from within program files as it doesn't completely uninstall the directory either, and re-installed from scratch. After the new installation the WifName registry entry is still blank.
    I am runing the command manually "cclient.exe scannow:edit". This all works on my PC logged on as me but not on another Pc logged on as me. This rules out the Asset Management server, policies, rights to the registry etc which have all been suggested as problms in previous posts.
    The ZAM Client and Collector have full access privileges to the ZAM
    portion of the Program Files directory as well as to their own portion of
    the registry at HKEY_LOCAL_MACHINE\SOFTWARE\Tally Systems
    Corp.\TSCensus\CollectionClient.
    The ZAM collection client is set in the services to run as a local
    system account on ALL PC's.
    I believe I need to know why this entry is blank to fix the problem.
    Secondly, when I run the Setup.exe program to install the client, it asks for my Server name from which it populates cps.ini like so:-
    [CollectionServer]
    Insight
    [CollectionClient]
    InBoxCC
    however when I run the .msi that I found today, it doesn't ask for any info and the cps.ini file looks like this:-
    [CollectionServer]
    [CollectionClient]
    Is this significant?
    My colw32.log file also contains the message "failed to get WIF path", all the time on the PC that fails but only sometimes on my PC.
    Thanks
    Lenny

    Found out what the problem was. The Windows firewall was switched on for the PC's that didn't work.
    Lenny

  • How to reference a Planning Application in Workspace

    Hello,
    I've developped several Planning applications.
    But when I open workspace / Applications / Planning, (with an admin user)
    I only see one Planning application. So I want to know how to reference a Planning application in Workspace ??
    Thanks for your help
    Best regards

    Some details :
    My Planning applications seems to works correctly. Essbase is Okay. Shared services is okay too but the Workspace is out (and with it Financial Reporting Studio).
    Before that problem, In the configurator, I've deleted all Planning clusters except one (Default). I've selected Re-associate Clusters and Applications and I've successfully re-Associate all Planning Application to Default Cluster. Then I've Activated Cluster Default.
    But Anyway, Since I've deleted Planning Clusters my Workspace doesn't work anymore.
    I've a doubt: I've tried to redeploy Workspace (Configurator / Hyperion Foundation / Workspace / Deploy to Application Server and Configure web Server.
    It doesn't work because it says that Workspace already exists :p.
    Anyway I'm surprised about something : To access Workspace we use the 19000 port but In Configuration we I try to deploy it I see it is on the 45000 port. If I click on advanced / Setup a little window open "Set up Logical Address". And it is writtend Edit Default Cluster : gl-dev-budget : 45000 meanwhile when (still in Configurator) I open Planning / Manage Planning Cluster the server port is 8300 ??
    Is someone can helps me ?
    Thanks
    Best regards

  • Logon rejected for Unable to obtain Terminal Server User Configuration. Error: Not enough resources are available to complete this operation.

    Error: Logon rejected for  Unable to obtain Terminal Server User Configuration. Error: Not enough resources are available to complete this operation.
    The problem is that the SharePoint server will
    function just fine for a week or so and then suddenly when a new user tries
    to log on they get an error message indicating that not enough resources areavailable to
    log them on and also user will to credential prompt while accessing share point site . 
    Raj

    Hi,
    According to the error message, please use performance monitor to diagnose if it is a memory-related bottleneck and you can use the counters of the memory part in the article below:
    https://technet.microsoft.com/en-us/magazine/2008.08.pulse.aspx
    In addition, it may be due to thousands of open connections to the server are in a TIME_WAIT state. You can run "netstat -an" command on the affected server and client. If you see mutiple connections in the TIME_WAIT state, you can follow the article
    to increase the number of TCP/IP connections:
    https://msdn.microsoft.com/en-us/library/ee377084(v=bts.70).aspx
    Furthermore, if you are running windows server 2003, please make sure that you have installed the KB 948496 and stop all services that you don't need.
    Best regards,
    Susie
    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 Subscriber Support, contact [email protected]

Maybe you are looking for

  • IPhone 6 can't forward text messages (iOS 8.1.1)

    The forward arrow is mission in the bottom of my text message options, the entire bottom of screen is blank when you select the message and hit more....doesn't give you any options after you hit more.........was in my old i phone

  • HELP! I can't empty OR move files to and from the trash can in Lion

    Since upgrading to Lion I have been having problems with emptying AND moving items to and from the trashcan. I am trying to empty the bin and it's been stuck for like hours. What do I do?

  • Jdbc:mysql generating exception when ip address is included as part of url

    hie I recently wrote a java application that uses jdbc:mysql connector to connect to the mysql database. The problem I'm facing is ,- when ever I include IP addresses in the url on the getConnection method I get the following exception: com.mysql.jdb

  • Iphoto Book order Error message

    I have been trying to place a rather simple order for an Iphoto 6x8 book for 4 days now, and continue to get an error message " An unexpected Error has occurred" Please try again later. Hours on tech support, reloading updates, stripping prefs, doubl

  • Java on intel mac

    i have a video-text syncing program that is supposedly a java-based application. how do i tell if it has the "JNI" library issue that would cause it not to run on my mpb that i am waiting on?