DHCP edir object location questions

I'm used to how NetWare did things, so:
On NetWare, I think it used to be advised, that your locator object be located "high" up in the tree.
Then your other DHCP edir objects would be located where the server object was.
In OES2 Linux, is this still the case?
Or does each OES2 DHCP server have its own locator object now?
And, if each server does have its own object, where should they be located in the edir tree? (where the server object is--we have lots of WAN locations and edir is partitioned, we don't replicate the O=ABC container to the regions).
Thanks!

Originally Posted by Marcel_Cox
The DHCP group object is used to assign the required rights so that all
DHCP servers can access all the configuration objects they may require. If
you have multiple group objects instead of just one, you might run into
trouble with DHCP servers not having the required rights to read all the
configuration information they want to read. So you should only have one
DHCP group object, though having multiple ones may appear to work until
some day you change something in your global DHCP configration and you
will suddenly find that DHCP servers start to behave incosistently.
Marcel Cox
http://support.novell.com/forums
Marcel Cox's Profile: NOVELL FORUMS - View Profile: Marcel_Cox
Okay thanks Marcel.
So, since I now have:
One OES2 DHCP Locator object in my O=ABC
and
One OES2 Group object in my O=ABC
I don't really want/need anymore
And, when I setup/install my 2nd server, I just have to be careful with the install screen so that I can choose the existing locator and group objects?
(like it won't overwrite or stomp on the something if it finds it already?)
And then when I get to the migration screen, I guess that's my next fun part.
There's three items I choose when doing a server level migration:
Base DN (I'm guessing that's where it puts the service and server objects, so I'm going to want to choose my little regional container)
The Locator DN (so I browse and choose my O=ABC one)
and
Group DN (so I browse and choose my O=ABC one as well)
Sorry to be stupid, but I (should really say "we") messed up and when we did the migration, chose the O=ABC, so it put all the stuff in there (services, server object, etc.)
So now I gotta move them around somehow.

Similar Messages

  • Object location manager

    Hello !
    Context :
    You can register for an instance with a name in the object location
    manager.
    Later, you can obtain a proxy on it with the bind method of the
    objLocMgr.
    You need the name of the instance you want to bind.
    The name is structured with / (like directory on hard disk).
    Inside an application it is OK.
    Problem & questions :
    Bind an instance from another application. How is the syntax of the
    name ?
    If an application A provide an soA. How can I bind it from an
    application B ?
    How to bind an instance of an application A inside an application B ?

    Jeanne,
    I liked your approach to getting around the
    deserialization error problem. Please clarify if this is
    what you had in mind :
    1) Every Client does a 'bind' on start-up.
    2) Every Client does a de-register when they log-off.
    If the answers to the points above are 'yes', I'm not
    sure what the implications are from a performance
    standpoint on a environment with a large number of
    users, including mobile ones.
    There was a design pattern presented at the Forum (I
    can't remember which one) which talked about having a
    remote SO do the bind to various SO's and Clients get a
    reference to the <<realSO>> proxy via this remote SO.
    Somewhere in the pattern was a way to get around
    deserialization errors, but I just can't remember how !
    Thanks.
    Eric
    Sorry to be late jumping into this thread - I've been chasing other
    issues the last couple days.
    I did not get to see <bigger>Fabrizio Genesio's presentation at Forum,
    although I certainly wanted to, because his topic was somewhat similar to
    mine. And Ravi's comments about de-coupling and making plug and play
    components almost sound like they came out of my abstract.
    Yes, Geoff, you can remove the supplier plan, bind to a distributed
    service dynamically at run time, and not get a deserialization error.
    There are a couple of tricks, but the code attached illustrates that it
    works.
    When you create your interface, also create a "dummy" or generic class
    that implements that interface. I like to put the dummyClass and the
    interface in the same library, because when you need one, you usually
    need the other. The dummyClass should have no "real" code, and no
    supplier dependencies. Just put in do-nothing methods that implement all
    of the interface methods, and return nil or zero where needed, so you
    don't get compiler warnings.
    Then create the real implementation in a separate project, which has the
    interface library as a dependency. The realClass must be a subclass of
    the dummyClass that is in the interface library. This is essential to
    make the dynamic binding work without the supplier dependencies. This
    service project does NOT need to be a supplier to the client. All the
    client needs is the interface library.
    When you instantiate the service, you will instantiate and register the
    realClass. When your client does the BindObject, it can bind to the
    dummyClass, because the realClass "IsA" dummyClass. And you can cast the
    returned object to the interface, because the dummyClass does implement
    the interface.
    The reason you do not get deserialization errors is fairly simple. You
    have essentially created your own proxy using the dummyClass, which
    exists on the client. It does not matter that the proxy has no code,
    because it will never get called.
    The realClass is anchored on the server, and does not need to be
    recreated on the client for any reason. Serialization and
    deserialization do not even occur with the realClass, therefore you get
    no errors. However, if you try to send the client a reference to the
    realClass, other than by way of the BindObject, then you most certainly
    will get the dreaded deserialization error.
    Hope this helps,
    Jeanne
    </bigger>At 07:23 PM 5/20/99 -0500, you wrote:
    >
    >
    -----Original Message-----
    From: [email protected]
    [mailto:[email protected]]
    On Behalf Of Geoff Puterbaugh
    Sent: Thursday, May 20, 1999 2:03 PM
    To: Kalidindi, Ravi CWT-MSP
    Cc: 'Jean-Baptiste BRIAUD'; '[email protected]'
    Subject: Re: Object location manager
    When I tried this, it didn't work. Aside from the
    fact that you can't dynamically load interfaces,
    to the best of my knowledge (but you can dynamically
    load classes which implement interfaces), the
    suggested scheme simply fails.
    But you have to be careful about what you're doing.
    You have to really REMOVE the supplier plan for
    the service object you're trying to reference,
    and you have to create real applications which
    are running outside of the repository. At least
    two separate applications which are running from
    distributions, not the repos.
    If you do that, you'll find that BindObject
    works just fine, but assigning the object
    returned by BindObject to the interface will
    produce a run-time error: 'This class does
    not implement this interface.'
    I can send or publish some code which demonstrates
    this failure if you like. I'd be delighted to
    learn that I've made a mistake somewhere.
    But my theory is that once you remove supplier
    plan A from the application, Forte no longer
    includes plan A in the application distribution,
    and so your application at run-time just has
    no information about class A or SO A.
    All my best,
    Geoff
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<<URL:http://pinehurst.sageit.com/listarchive/>
    >
    >
    >
    =========================================
    Jeanne Hesler <<[email protected]>
    MSF&W Software, Product Development
    (217) 698-3535 ext 207
    http://www.msfw.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/>

  • How can I select an object located under another object?

    IS there a shortcut like in QuarkXPress to select an object located under or behind another object?

    Press the CMD-key while clicking or use the layers panel.

  • Docs about RowSet, and Object RowSet questions?

    Docs about RowSet, and Object RowSet questions?
    I can find RowSet forum, so I ask here!
    Can you give me URLs where I can find more about RowSet and URLs for any RowSet implementation?
    Does Borlans, Oracle, IBM, etc., have RowSet implementation?
    I find out about Sun's RowSet implementation, but I can't find Object Rowset in this implementation?
    Is it possible to develop Object RowSet and is it useful?
    I know about O/R tools like Hibernate, but Object RowSet can be useful?
    Run SQL query and get Objects, or maybe even run Object query (like EJB or Hibernate or JDO have) and get Objects.
    No XML mapping mess and simmilar, like with EJB or Hibernate or JDO?

    You can try
    http://java.sun.com/developer/Books/JDBCTutorial/chapter5.html
    This is a tutorail for RowSet

  • Print migration and old eDir object assoc. to manager

    I did a print migration from NW 6.5 SP7 to OES 2 SP1 linux. It said it completed but with errors. On first look, everything seemed fine. But now I found that if I manage the Print Manager and go into Printer Agents --> Tasks and look at the 'edir object name' some of the printers have the old printer name (i.e. printer_nw.printers.company). There were 21 printers migrated in this run and 4 have the _nw objects assigned to them. If I try to manage those printers I get an error saying "Invalid Object: The selected object is not a valid type for this property book. ". Whilst, the other printers (without the _nw) are fine. Also, I looked it consoleone all of the new printer objects have been created. It just seems that the manager has the old edir names assigned to some printers.
    I know I can just recreate those printers and thatd care of it, but Id rather not. Is there any way to change the "edir object name" in the manager that points to the printers?
    Thanks!

    hi,
    In iprint migration in order to create the iPrint Printer Object in the
    same context we have to rename the existing object. Sometime it happens
    that when we have renamed the objects and if you login to iManager
    iPrint Manager Print Manager it still shows the Older printer object.
    This is a typical problem of eDirectory not syncronized with other
    replicas. May if you would wait all the printer which you would have
    tried migrting would have been renamed to _nw in the same container.
    Please try migrating and ensure your replicas are in sync. It will work.
    The newer iPrint printer agent would have been created on the same
    container.
    thanks
    Jiten
    ryamry wrote:
    > I did a print migration from NW 6.5 SP7 to OES 2 SP1 linux. It said it
    > completed but with errors. On first look, everything seemed fine. But
    > now I found that if I manage the Print Manager and go into Printer
    > Agents --> Tasks and look at the 'edir object name' some of the printers
    > have the old printer name (i.e. printer*_nw*.printers.company). There
    > were 21 printers migrated in this run and 4 have the _nw objects
    > assigned to them. If I try to manage those printers I get an error
    > saying "Invalid Object: The selected object is not a valid type for this
    > property book. ". Whilst, the other printers (without the _nw) are
    > fine. Also, I looked it consoleone all of the new printer objects have
    > been created. It just seems that the manager has the old edir names
    > assigned to some printers.
    >
    > I know I can just recreate those printers and thatd care of it, but Id
    > rather not. Is there any way to change the "edir object name" in the
    > manager that points to the printers?
    >
    > Thanks!
    >
    >

  • Game Object Design Question

    Ok, I have a question on the logical design on my game. The game will consist of a world, levels within the world, items, NPC's, and a Player.
    I will have NPC's wandering around the world automatically. In order to move, they are obviously going to need to be able to look at the level they are on, and figure out where they want to go.
    My question is regarding the acces to the Level object. What is the smartest way to make someNPC.Move(int x, int y) be able to access the Level? Should I write some static methods for the World or Level classes? The only other way I can think of is to pass the World object on to the NPC's upon thier creation and have them store a reference to it...
    Thank you all very much,
    Michael

    My book on Java 1.3 says calling public final methods is fastest (together with calling private methods). public static methods take about twice as long to call but are still pretty fast. Values assume the jit has optimized the method. Calling synchronized methods is very slow. Instead of using synchronized, make sure only one object is making a movement decision at the same time.
    I would coordinate movement using the level objects, because unless objects move to a different level, only objects on the same level influence each other's movement (by standing in the way and for example).
    Every object in your model will have a position, and I assume part of the position information is the level it is on. You have several co-existing levels. In that case I would make the "level" postion information a reference to the level for direct access and I would make the methods the moving objects use public final (or just final if possible).
    Give your objects a reference to the level they are on. If you knew your exact position on the planet but had NO way to know what planet you are on, how would you decide where to move ? It would have to be something like "ok, I don't have any sensory information but I know I exist and I know my exact location. Lets make a step to see what happens. Oh, I still exist. This means I cannot be on the planet where the step would have resulted in a lethal drop. And oh, my position really did change. This helps too. Only 1.000.000.000.000 more planets to exclude by trial and error..."
    But Kayaman is right, the World or level needs to have a reference to each moving object too. You need a list of objects in the same area so the moving objects check for collisions, the level can tell them about environment effects that effect them (to all you moving objects inside me, the death star : You are dead because the rebells have blown up my reactor).

  • How do I use scripting to set an object location?

    Hello,
    I have an "X" text object that I would like to change its (x,y) location on my .pdf form based on values that the .pdf user places into (2) separate decimal fields.
    For Example:
    If User enters for example 3.1 and 2.5 into the two decimal fields the location of the "X" object would be:
    Xcoordinate = constant1 * 3.1 + constant 2
    Ycoordinate = constant3 * 2.5 + constant 4
    Does anyone have an idea on how I might be able to accomplish this using the script editor in LiveCycle Designer or some other method?
    If not, is there a way for me to make the "X" movable (by dragging) by the end user who will not be using LiveCycle Designer?
    Thanks,
    Chris

    Hi,
    you can manipulate the x and y on any object as long it's placed in a positioned page or subform.
    The simply use a FormCalc script in the change event of your numeric fields to change the desired property.
    For the x property it could look this way.
    Textfield1.x = Concat($event.fullText, "mm")
    Note: The x and y property accepts 4 different measurements (in, mm, cm and pt).

  • Reference to Object located in timed-out session

    Hello forum!
    I have searched but couldn't find eny answer to following problem:
    I'm developing a web application (struts & Co.) that communicates with different processes.
    Situation:
    In struts action I'm getting some object from session (that I have put there)
    and giving as a parameter to some process P that changes some attributes of this object. I am showing these changes ("interactively") on JSP (e.g. user clicks F5 to see them dynamically).
    The question is, what happens when that process lasts longer then my session timeout? Gets it null on some try or what happens at all?
    Hope I've explained the problem correctly.
    Thanks in advance.

    Thanks for reply!
    It seems I haven't explained the problem correctly. I've checked it - there happens nothig(no null).
    The process has got the object that is in session, not session object itself. So it has no idea what happens in session and after session is dead it is working for nothing... My session will never find out what has happend with that object...
    Thanks a lot.
    gio.

  • System and Object privileges question

    hello everyone.
    I was really making it a priority to really understand both system and object privileges for users. I have setup a couple of 'sandboxes' at home and have done lots of testing. So far, it has gone very well in helping me understand all the security involved with Oralce (which, IMHO, is flat out awesome!).
    Anyway, a couple of quick questions.
    As a normal user, what view can I use to see what permissions I have in general? what about permissions on other schemas?
    I know I can do a:
    select * from session_privs
    which lists my session privileges.
    What other views (are they views/data dictionary?) that I can use to see what I have? Since this is a normal user, they don't have access to any of the DBA_ views.
    I'll start here for now, but being able to see everything this user has, would be fantastic.
    Cheers,
    TCG

    Sorry. should have elaborated more.
    In SQLPLUS, (logged in while logged into my Linux OS), I am working to try and get sqlplus to display the results of my query so it is easy to read. Right now, it just displays using the first 1/4 or 1/3 of the monitor screen to the left. Make sense? So it does not stretch the results out to utilize the full screen. it is hard to break down and read the results because they are "stacked" on top of each other.
    Would be nice if I could adjust sqlplus so the results are easier to read.
    HTH.
    Jason

  • Object oriented question

    I am sure my n00bieness is going to shine here but I have a pressing question.
    I have two classes that do a similar activity they attach some elements to an xml document and then call a web service.
    Object A uses in its method signature different object parameters then Object B does.
    For example -
    Object A{
      public ProprietaryObject doMagic(ProprietaryObject po){
        //do stuff
    Object B{
      public DiffProprietaryObject doMagic(DiffProprietaryObject po){
        //do stuff
    }There is more than one method that is similar between the two objects but this is just to get the point across.
    Anyway, Instead of creating two separate objects that do "almost" the same thing (on different object types) how can I create an elegant solution to this?
    The problem I run into is that if I create a common interface for these two object to implement the object use different proprietary objects to do their work.
    I find that I keep using the instanceof operator everywehre to determine the object type.
    Hope this is not explained to horribly...
    Any help is appreciated!

    I'd create an Interface which defines a common access method for the-operations-you-require from both proprietory classes, then implement that interface in a couple of "boundary" classes which "wrap" the proprietory classes...
    If possible, extend the disparate proprietory classes, and delegate to the appropriate methods of the "real" classes.
    If the propritory classes are final then you have to write a ship load more "boilerplate" code... every single fraggin method has to pass the buck to the appropriate method of the private instance of the "wrapped" class, and return the result... which isn't usually too bad once you roll up your sleeves and get into it.
    From memory (mine is poor) this is the essence of the [Adapter pattern|http://en.wikipedia.org/wiki/Adapter_pattern].
    Like a said, there may be quit a bit of work involved, but the advantages usually outweigh the costs... You can "refer to" the disparate proprietory classes seemlessly throughout the rest of your system... if ProprietoryClassA changes (in the next release) you can (hopefully) adapt your adapter to those changes, without having to modify all your consumer code... because it still exposes the same interface... which is the motivation for any boundary class ("Trust no one";-)
    Cheers. Keith.
    Edited by: corlettk on 8/08/2008 06:28 - Better.

  • Should I use Embed or Object - quick question...

    Hi all,
    I've got a few .swf files on my site. One of them uses the following code:
    <object style="float:left;" id="intro" name="intro"
    type="application/x-shockwave-flash"
    data="<?php echo $siteurl; ?>/intro_movie/intro.swf" width="300"
    height="188">
    <param name="wmode" value="image" />
    <param name="movie" value="<?php echo $siteurl; ?>/intro_movie/intro.swf" />
    </object>
    Another one uses the following:
    <script type="text/javascript">
    var flashvars = {};
    var params = {};
    var attributes = {};
    swfobject.embedSWF("<?php echo $siteurl;  ?>/swf/testimonials.swf", "_testimonials", "405", "43", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
    </script>
    <div id="_testimonials">
    <a href="http://www.adobe.com/go/getflashplayer" title="Get flashplayer">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" width="112" height="33" alt="Get Flashplayer" border="0" />
    </a>
    </div>
    On a computer recently the first example showed up fine but the second example didn't show up at all.
    I just wondered what the correct way to show .swf files is on a webpage.
    I'm very sorry if this is a stupid question but any help you could give me on this would be much appreciated.
    Many thanks
    John Thornley ;-)

    kglad.com
    Thank you for your reply.
    I should clarify that both of those examples are working on my machine. However, on another machine only the top example showed up at the bottom example caused 404 errors as it was trying to load expressInstall.swf which wasn't in the directory.
    This confused me as I wondered if there was any detriment to just having all my swf on my site integrated using the top method?
    I didn't write the bottom example and I don't really understand it fully. I'm not sure whether my best move is to just convert everything to the top example or whether I should try and find a copy of "expressInstall.swf" and try and get the bottom example working on this other machine?
    Which is the correct way?
    Thanks again for your continued support
    Cheers
    John ;-)

  • Help In ABAP Object Certification Question

    Hi ABAP Gurus,
       iam going to write certification Exam on Nov 11. i have got some model question from SAP domain for all the topics Except ABAP Objects which is so important...
    Please anybody send me some Example question you guys got from the Certification Exam
    it will be be grateful to me...
    Thanks a lot in advance.
    Prabhu
    SAP Lead Consultant

    Hi,
    Sending ABAP Objects questions is not an option but normally, your concepts are tested for:
    - Classes and objects
    - Inheritance
    - Casting
    - Interfaces
    - Events
    - Global classes and interfaces
    - Exception handling
    - Dynamic programming
    You can use help.sap.com to take a look at these topics one by one. Hope this helps.
    Good luck.

  • LR2:DNG - PSCS3:'Smart Object' workflow question

    Hello, I've just started working with DNG files exported as Smart Object from LR2 to PSCS3 and I would appreciate some feedback on my experiences thus far.
    Let us assume that I've made basic corrections to _DSC1190.dng within LR2. I then want to apply a filter to a particular region of the DNG file with all of my LR2 adjustments applied.
    1. Here are the steps I currently follow:
    1.1. Right-click on the DNG file and select 'Edit In'->'Open as Smart Object in Photoshop...'. This results (I believe) in the DNG file with all of my LR2 changes being embedded within a smart object and the resulting temporary file being opened within PSCS3.
    1.2. I perform my edits in PSCS3 and save the file as a PSD (i.e. _DSC1190.psd). As long as I was smart about things, I can now go back at any time and alter any of the changes I made in PSCS3, as well as access the DNG file within the smart object to make and ACR changes I desire.
    1.3. If I want the new PSD file to be added to my LR2 catalog, I then need to navigate to where it was saved and manually add it.
    1.4. If I want to make any exposure adjustments, or really, any adjustments that I'd normally make within LR2 or ACR to _DSC1190.psd, I need to open the file within PSCS3, double click on the smart object to get the ACR dialog, make my changes, and voila!, the PSD composite now reflects those changes.
    1.5. If I make any changes within LR2 to the original DNG file (i.e. _DSC1190.dng), those changes are *not* reflected within the PSD file.
    1.6. Questions
    1.6.1. Is what I've described the expected behavior?
    1.6.2. Although it might seem silly to some, and may present a technical challenge not worth the trouble, it seems it would be beneficial to have the smart object exported from within LR2 to PSCS3, contain a link to the original DNG file, and not now have two separate DNG files, one visible to the file system, and the other embedded within the smart object saved as presumably a PSD. I'm sure there are a lot of corner cases to consider, but it just seems very strange to now have two files wherein if you want to change something you would normally do through LR2 or ACR, you now have to do it in two different programs to two different files. Is this a problem Adobe has considered, i.e. any discussion about supporting this perhaps in an update to LR2 along with PSCS3/4?
    Thanks much for any help/insight,
    Matt

    I haven't tried doing what you are in CS but do you have the embed xmp into file enabled or are you updating the xmp by saving it out of LR CTRL-s? Do you have ACR set to read the xmp data? I don't have access to LR at the moment but will have a play l8r and get back to you if no one else does.

  • Business Object Modeler Question

    Hi Experts,
    I'm new to CE and currently trying to figure out what can I do with it?
    Assume that I'm planning to create an application to follow activities that our consultants doing.
    For this, we're planning to use Local Portal Database to store datas.
    When I checked, "Business Object Modeler" is a tool which helps to create business objects and generates tables behind and access services automatically.
    Then generating a Web Service for this BO and then using the WS with VC and WD4J is a great asset for us.
    But, my questions?
    1. Is this a right approach for  such scenario?
    2. I've created a sample BO and generated WS and tried to use with VC. Create, Delete, Reand and Update Operations can be made available for WebService, but I'm unable to add FindAll or FindByMultiple Parameter operations to Web Service?
    Any idea for Q1 and answer for Q2 will be appreciated.
    Regards

    Hi,
    Yes, You have to arite the code.Actually, Application services are the place where you will wrtie your business logic.
    In th application service operations you have to call the business object operations.
    For architechturel guidelines you can go [through thii doc|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00caf8bd-487a-2a10-36a9-93d840309310].
    answer to second question:
    You can't change the code in the BO operations. What ever you want, you have to do it in the application servcies only.
    Create an application service operation  say:
    operation(). Create a input/output data structures.
    Exapmle:     OperationResponce operation(OperationRequest).
    Yuor lists add to the  OperationRequest datatype. Similarly for  OperationResponce also. In this case you don,t have any issues.Actually this is the standered for Web Services.
    [This document|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0d97ec6-5de0-2a10-a5b3-b5926075566c], you can use as an example
    [CE 7.1 Tuorial Center.|https://www.sdn.sap.com/irj/sdn/nw-development?rid=/webcontent/uuid/903c2cdb-98d6-2a10-84b7-ab22535de11a]
    Reward Points, If you feel it is useful.
    Sampath

  • 9 shared objects performance question

    I have 9 shared objects 8 of which contain dynamic data which i cannot really consolidate into a single shared object because the shared object often has to be cleared.....my question is what performance issues will I exsperience with this number of shared objects .....I maybe wrong in thinking that 9 shared objects is alot.....anybody with any exsperience using multiple shared objects plz respond.

    I've used many more than 9 SO's in an application without issue. I suppose what it really comes down to is how many clients are connected to those SO's and how often each one is being updated.

Maybe you are looking for