What's manageddisabledrole different from other role?

I tried to understand what exactly the manageddisabledrole is different from other custom role? Maybe some ACL controls this role? How does the users got disabled by being a member of this role?
So if i don't like the manageddisabledrole, can i create a new role and make it function just like manageddisabledrole?
Anyone here gives me an insight to this? I cannot find any docs that explains about this.
Thanks

Thanks for your reply, but I'm still confuse. I still
have few more questions to be clarify.
1. By definition, CoS allows you to share attributes
between entries. In this case, the
nsAccountInactivation_cos shares the nsaccountlock
attribute between entries. Is this correct?Correct.
2. If so, where do I find the template entry? If it
works right, the template entry must have the
atttribute nsaccountlock with the value = true in it.
How do I locate this template entry in the
directory?CoS and Role definition and template entries usually have objectclass ldapSubentry - this is a special objectclass used to create administrative entries (like operational attributes, only entries). In order to do a search to find these entries, you must include the filter (objectclass=ldapSubentry) in your search request. So, if you wanted to find these definitions under your suffix, do a search like this:
ldapsearch -s one -b dc=yoursuffix,dc=com -D "cn=directory manager" -w password "objectclass=ldapSubentry"
The CoS template entry is as specified in the CoS definition entry:
          cn="cn=nsDisabledRole,<your suffix>",cn=nsAccountInactivationTmp,<your suffix>"
3. How does this nsAccountInactivation_cos CoS
related with the nsManagedDisabledRole role? I don't
see any relationship between these two. Maybe I
still don't understand well about Cos and Role.They are not easy to understand, but then, many powerful features are not easy to understand at first.
>
Thanks alot

Similar Messages

  • What makes Spry different from other JS/CSS technologies?

    I've been seeing a lot of Spry questions here and have used the widgets myself. But for menus, I use CSS Menu Writer from WebAssist. It used ul and li tags in the markup, or an include, JavaScript for functionality and CSS for styling. Basically, this is much the same as the Spry menu, so what's the difference? Then one could add some sort of animation effect and call it AJAX. I suspect a lot of these terms are interchangeable, or perhaps incorrectly used that way. But Spry seems to stand out as something more specific.  Another example is the Accordion. I have used the Spry widget, plus another version that uses jQuery and/or scriptaculous. Again, although it's not the same code but it's still JS and provides the same functionality.

    Hi
    Spry is a javascript framework developed by Adobe similar to jQuery, (specifically the UI and ajax) but not as comprehensive. You could also use a number of other frameworks such as YUI, or prototype.
    The difference between menu writer and a framework, is that a framework is only the 'starting' point' and other features, (such as menu or accordion) must be added to it via separate code, whereas menu writer is complete and self contained and written with for specific function, (a menu).
    PZ

  • SAP BO different from other products

    Hi All,
    Just wanted to know how is business Objects different from other products and why it is a niche technology ?
    Thanks,
    Anupam

    Thats a nice query Anupam I have often wondered about this query, however the only conclusion I could come up with is SAP BO is being largely used for web based analytics which is a great benefit for everyone. It can be integrated with various web servers and with other products and third party product tools easily.
    I do not have any expertise on oracle BI, but I believe it works in similar lines with SAP BO.
    What matters to end - users and top management is the result irrespective of software being used
    The only result they look forward to is get real time analysis of data in any manner or reports. The security of data are other aspects as well, after all confidentiality is very important at current times. They are not worried whether we use Java or .net SDKs
    I guess you are working on some projection of BO implementation over other products.
    The best projection can be made would be with records retrieved, speed of analysis, formats available, visualization and scheduled data retrieval

  • What are Crypto Cards, and what are they different from Java Cards?

    Hi,
    I just heard the name 'Crypto Card'. I thought Java Card is the only standard for smart card. Could anyone tell me what are Crypto Cards, and what are they different from Java Cards? Thanks in advance.
    Joey

    Probably any card that offers cryptographic capabilities (crypto coprocessor) could be called "Crypo Card", but likely the term was referred to cards offering a pkcs#11 interface.
    Pkcs#11 is the standard for accessing crypto devices, like tokens, cards, or accelerators. Such a device can be easily accessed for example from your browser to perform cryptographic and digital signature operations.
    A Javacard can operate as a pkcs#11 device in you install on it an applet dealing with the pkcs#11 requests.

  • FM to create role derived from other role

    Hi,
    I have to create roles derived from other roles. i need FM which can create roles derived from other roles. can anybody help me.
    Thanks in advance.

    Try BAPI_BUPA_ROLE_ADD_2
    Refer: http://abap.wikiprog.com/wiki/BAPI_BUPA_ROLE_ADD_2

  • What does Factory Unlocked International Version GSM Only? what's the difference from other iphon5 specs? pls explain

    What does Factory Unlocked International Version GSM Only? what's the difference from other iphon5 specs? pls explain

    Only GSM/LTE iPhones can be purchased unlocked. CDMA iPhones are always locked to their specific carrier for CDMA use, though some may either have the GSM portion unlocked or will unlock upon request assuming any necessary requirements are met.
    Regards.

  • What make's java different from other kinds of programming?![/b]

    How is it different from the other programs like the turbo programming and all those other stuff?!

    you jut can't copare Java to every other programming language. each language are designed differently. an answer to your question ccould well be 100,000+ pages (single space). There are many programming languages..most of which..you and i have never heard of.
    Many programming languages are created to target a specific domain (intentionally or unintentionally).
    1. procedural language (c, c++, fortran, basic, pascal)
    2. object oriented (java, small talk, c#, c++) - although c++ and Java are hybrid
    3. metalanguage (HTML)
    4. recursive (ML)
    5. logic (Prolog)
    6. forgot the category) (Schema, LiSP)
    Shema and Lisp are more suited for writing artifical inteligence. Java is more toward solving buisness problem. Choosing the right language culd means ease of development and saving in cost, and possibly performance.

  • How do I limit number of characters in a JTextField?(different from others)

    Hi,
    I know this question has been posted several times on this forum, but my question is actually a different one. So please read.
    I have the following code that puts two JTextFields in a JFrame. I want to limit the number of characters in the first JTextField to three characters. What's different about my question from other solutions provided, is that I don't want to be able to type more than three characters in the JTextField, and then not be able to get out of JTextField unless I have three or less characters. What I do want, is to have maximum of three characters, not be able to type the fourth, and have access to the other JTextField at all times.
    I have tried the following solution of setting an InputVerifier to my JTextField, but it hasn't worked, since I can still type the fourth character.
    Looking forward to your help!
    Thanks.
    import java.awt.Dimension;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.InputVerifier;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class TextFieldVerifier {
         public TextFieldVerifier()
              JFrame frame = new JFrame("My TextVerifier");
              JPanel panel = new JPanel();
              JLabel firstTextFieldLabel = new JLabel("First: ");
              JLabel secondTextFieldLabel = new JLabel("Second: ");
              final JTextField myTextField = new JTextField();
              myTextField.setPreferredSize(new Dimension(100,20));
              myTextField.setInputVerifier(new InputVerifier()
                   public boolean verify(JComponent input) {
                        if(myTextField.getText().length()<=3)
                             return true;
                        else
                            return false;     
              myTextField.addKeyListener(new KeyAdapter()
                   public void keyTyped(KeyEvent e)
                        if(!myTextField.getInputVerifier().verify(myTextField))
                             myTextField.setText(myTextField.getText().substring(0, myTextField.getText().length()-1));
              JTextField secondTextField = new JTextField();
              secondTextField.setPreferredSize(new Dimension(100,20));
              panel.add(firstTextFieldLabel);
              panel.add(myTextField);
              panel.add(secondTextFieldLabel);
              panel.add(secondTextField);
              frame.getContentPane().add(panel);
              frame.setSize(new Dimension(200,100));
              frame.setVisible(true);
         public static void main (String [] args)
              TextFieldVerifier v = new TextFieldVerifier();
    }

    Thanks, JayDS! Your suggestion worked. And I've come up with the following code with help of your suggestion. However, I'm not happy with the fact that I see empty spaces in my JFormattedTextField when I don't have anything entered in it, or when my textfield has focus and I click it again. Also, I'd like the text alignment to always stay on the right, even if I have less than 3 digits.
    Could you please help me out with that?
    Thanks!
    import java.awt.Dimension;
    import java.text.ParseException;
    import javax.swing.JFormattedTextField;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.text.MaskFormatter;
    public class TextFieldVerifier {
         public TextFieldVerifier()
              JFrame frame = new JFrame("My TextVerifier");
              JPanel panel = new JPanel();
              JLabel firstTextFieldLabel = new JLabel("First: ");
              JLabel secondTextFieldLabel = new JLabel("Second: ");
              try{
                   VariableLengthMaskFormatter formatter = new VariableLengthMaskFormatter("###");
                   final JFormattedTextField myTextField = new JFormattedTextField(formatter);
                   myTextField.setHorizontalAlignment(JTextField.RIGHT);
                   myTextField.setPreferredSize(new Dimension(100,20));
                   panel.add(firstTextFieldLabel);
                   panel.add(myTextField);
              } catch (ParseException ex) {
                   ex.printStackTrace();
              JTextField secondTextField = new JTextField();
              secondTextField.setPreferredSize(new Dimension(100,20));
              panel.add(secondTextFieldLabel);
              panel.add(secondTextField);
              frame.getContentPane().add(panel);
              frame.setSize(new Dimension(200,100));
              frame.setVisible(true);
         protected MaskFormatter createFormatter(String s) {
             MaskFormatter formatter = null;
             try {
                  formatter = new MaskFormatter(s);
             } catch (java.text.ParseException exc) {
                 System.err.println("formatter is bad: " + exc.getMessage());
                 System.exit(-1);
             return formatter;
         public static void main (String [] args)
              TextFieldVerifier v = new TextFieldVerifier();
    }Edited by: programmer_girl on Mar 10, 2008 11:10 PM

  • Creating single role by copying profiles from other roles

    HI ,
    I am creating a single role from 4 roles. Ihave copied the authorizations of 4 roles and added into the new role. This is done by copying the profiles.
    Problems Faced :-->
    1. )In table AGR_TCODES i am not able to see the Tcodes for this new single role present in  the new role, whereas if i goto object S_TCODE i am able to see tcodes and have that access.
    2.) Some of the objects are not copied into this new role. Even from the roles whose all other objects are copied into this role.
    Can anybody help me on this and also if someone knows what other problems can be faced by doing this.
    <removed_by_moderator>
    Thanks,
    Rajesh
    Edited by: Julius Bussche on Oct 15, 2008 3:55 PM

    Hi Rajesh,
    If you have created a role by copying authorizations, then it is possible to get the t-codes provided your role contains the auth.obj S_TCODE which you might have copied manually from one or two among the 4 roles.
    If S_TCODE exists in your role then you can find out the t-codes belonging to this role through SUIM->Transactions->Executable for Roles-> Insert your role name
    or
    Go to SE16-> Table AGR_1251->
    In the field AGR_NAME, give the role name
    In the field OBJECT, enter S_TCODE and then
    Execute.
    Q.My second question THere is one role created by some user I am checking it in AGR_Tcodes and SUIM ....I am finding that the no. of Tcodes in both cases donot match....Can anybody tell where i can look for this and what is the possible reason.
    Possible reasons for this could be that some of the t-codes have been entered into the role manually and not through the menu in PFCG and as mentioned earlie that AGR_TCODES only shows the transactions that exists in the menu of the role.
    It could also be that the manually entered t-codes contains wildcards specifying a range of values.
    The best option would be to find it out from the AGR_1251 table.
    Hope this helps !
    Thanks,
    Saby..

  • ITunes window behaves different from others?

    I've always been wondering why the iTunes window behaves much differently than other windows. Taking Firefox for example, when I maximize it to the screen, I can't shift it left/right/up/down, so I can't accidentally move it. iTunes, however, doesn't have the same maximize options, changing from the 'big' mode to the 'mini' player. And when it's in the big mode, I constantly have to re-stretch and proportion it to my screen, and it frequently drops below the dock and outside the screen. Is there any way to get this changed or fixed? Thanks!

    Fixed

  • ITunes doesn't start (different from others...)

    I upgraded to iTunes 6 (from 5.0.1) a while back. It worked fine for a while, then one day, it refused to start. Looking in Task Manager showed that it would start for about 2-3 seconds and then die. Installing a fresh copy would get as far as the license agreement, and then exhibit the same behavior after accepting it.
    This is where the story got interesting. I opened up iTunes on my other hard drive (which I had once used as my main drive and still had an installed copy of iTunes). It worked perfectly! Turns out it was version 4.7.
    So today, my sister got an iPod nano. We knew that iTunes might not work, so we uninstalled version 6 and installed the copy from the CD. Same deal. I uninstalled that and installed iTunes 5. Same deal.
    From what I've gathered from a few other threads, I can provide the following information:
    - QuickTime starts fine.
    - No Norton Internet Security 2005 installed.
    - Spyware and virus scans turn up clean.
    So I'm out of ideas. This is the strangest software problem I've ever encountered.

    As for security software, I have ewido (as suggested elsewhere on this forum) and ZoneAlarm.
    hmmmm. Katrina is better versed on ZoneAlarm/iTunes conflicts than i am. but we'd probably better check on it.
    probably best to disconnect from the internet before trying an experiment.
    reboot the PC. disable both ZoneAlarm's firewall and antivirus. Launch your Task Manager to the processes tab. now try another itunes launch.
    do you either get (a) an itunes launch, or (b) a changed behavior by itunes.exe in Task Manager when you try to launch itunes under those conditions? (longer persistence in Task Manager, for example)
    love, b

  • Why co-pa extraction is different from other extraction

    any one could u tell me about the copa extraction

    Most extraction from SAP are different from each other -:)
    But more so with COPA becuase SAP does not provide any delivered tables for COPA.
    All tables in COPA is created by the company implementing it. They are similar to the tables created when you create a cube in BW. Hence there are no per say standard datasource; though you can create one using a procedure.
    Hope this helps.

  • Classic 120gb - is the speaker connection different from other ipods?

    I purchased my first iPod at the airport in October. As I was paying the guy said "do you want to buy any accessories?" I said I'd look when I got home from my holiday. He then said "you do know that the new Classic has a different docking thingy (he used a technical term I can't remember and said something about an extra pin) so most speakers will not work don't you?". He then added "wait until everyone brings out new speakers before buying anything".
    I've tried looking but no one says anything about a new "docking thingy" was he pulling my leg? Did he see an over 40 year old buying a new gadget and think let's confuse her (it's working)?
    Does anyone out there know what he was talking about?
    Any suggestions on a lightweight speaker to take on holidays abroad and a more decent one for at home?
    Thanks

    The answer to this may solve my problem. This week I replaced my knackered original IPod classic with the 12ok Classic. Great until I tried to connect it to the input jack in my car's stereo (A new Mazda) and found no output. I had used the Belking leads (not cheap) for the pst 6 montths to connect on various cars at home and on vacation in the US and no problems.
    Tried son's Ipod classic - bought 4 months ago - and it worked in my car so contacted Ipod telephone support who said the connections are different and the cable would not work with my new.
    He said the explanation was a ocmplicated one but that I would have to get an alternative cable and mentioned getting support in an Apple store.
    I went on the Apple Store website - where I bought the Ipod - and found no mention of Apple recommended accessories and the "vies" of people who had had similar problems - but no definite answer.
    Looks like a drive to nofth London to the nearest Apple store then!!

  • How to delete a role from other role.....

    Hi All,
    I have a query like....
    I have created one new role ATH:MDC:INV3 and added two existing roles to that new role on DEV system ie Added ATH:MDC:INV2 + ATH:PUR:PMG0
    So,now i need to remove only one role ie ATH:PUR:PMG0 from ATH:MDC:INV3.
    All the 3 roles are single roles.
    Is there any way to remove/delete that role or do we need to do manually by deleting one by one authorisation,which is time taking process....
    Please give me if there could be any better way to approach....
    Thanks & Regards,
    Swapna.D
    Edited by: swapna devi on Feb 1, 2008 3:53 AM

    Doug,
    You gave me an idea. What if you create a new folder on the desktop. Select the roll above #20, which you said will also select #20, and move that roll to the desktop folder? Will roll #20 move with the one above it? If so, then you could go back to iPhoto, drag them both to the trash, delete trash (will it delete with the roll above it?), Import to Library the pictures where you put them on the desktop.
    Caution, you would probably lose some of the info from the roll you delete and re-import, like their dates, etc. So I wonder... can you select, say, half the photos in that roll and Create New Roll? Will the remaining roll still be linked to #20? If so, can you do it again and again until the linked roll only contains 1 picture? Then move it to desktop, trash in iPhoto, and re-import?
    What happens if you play with it like that?

  • Another error -8, different from others

    I am the Desktop Support person for a faculty member at a large University. She has been using iChat for over a year now to communicate and collaborate with a colleague at another University. About two weeks ago she started getting the error -8 issue when she tried to video chat with her colleague. Video chat had always worked flawlessly up to that point. She can still text chat with this person and she can video chat with other people on campus. Other computers on campus can video chat with her off-campus colleague as well. I have checked her QT Streaming settings, Bandwidth settings in iChat and made sure she is not connected to wireless and wired at the same time, and still it doesn't work. I do not have access to any of the network gear involved as that's a different part of IT but I believe everything is configured correctly as other iChat users (including myself) can video chat with people off-campus including the person she is having problems with. I really think it has to be something on her computer. Both users are running iChat 3.1.9 and OS X 10.4.11. I have included the error report below. Any suggestions from the gurus? Thanks!
    Date/Time: 2008-02-26 14:53:42.052 -0600
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3546761864.
    jeanmgrow1: State change from AVChatNoState to AVChatStateWaiting.
    0x15a668c0: State change from AVChatNoState to AVChatStateInvited.
    0x15a668c0: State change from AVChatStateInvited to AVChatStateConnecting.
    jeanmgrow1: State change from AVChatStateWaiting to AVChatStateConnecting.
    jeanmgrow1: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x15a668c0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17efff com.apple.iChat 3.1.9 (446) /Applications/iChat.app/Contents/MacOS/iChat
    0x5d2000 - 0x5d3fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.4 (1.0.4) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x5d8000 - 0x5effff com.ecamm.ConferenceRecorder v2.0.2 (2.0.2) /Library/InputManagers/Ecamm/Plugins/ConferenceRecorder.plugin/Contents/MacOS/C onferenceRecorder
    0x14c0b000 - 0x14c14fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14c2b000 - 0x14c30fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14c6f000 - 0x14cabfff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14cb7000 - 0x14ce7fff com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14cf1000 - 0x14d3afff com.apple.QuickTimeUSBVDCDigitizer 2.0.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14d64000 - 0x14ebdfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14ee9000 - 0x14f42fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.58 (4.5.8) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x14f49000 - 0x14f65fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x14f6c000 - 0x14f90fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x151bb000 - 0x151befff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x151da000 - 0x15204fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x1627c000 - 0x1627ffff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff com.apple.ApplicationServices.ATS 2.0.9 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91bbefff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc4000 - 0x91bdefff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be3000 - 0x91be5fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be7000 - 0x91cc5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce2000 - 0x91ce2fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce4000 - 0x91d72fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d79000 - 0x91d79fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7b000 - 0x91dd4fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddd000 - 0x91e01fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e09000 - 0x92212fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224c000 - 0x92600fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262d000 - 0x9271afff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271c000 - 0x9279afff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927db000 - 0x92a0bfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b25000 - 0x92b3cfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b47000 - 0x92b9ffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb3000 - 0x92bb3fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb5000 - 0x92bc5fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd4000 - 0x92bdcfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be2000 - 0x92be8fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bee000 - 0x92c7ffff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c93000 - 0x92c97fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9a000 - 0x92cb8fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cca000 - 0x92cd0fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd6000 - 0x92d39fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d60000 - 0x92da1fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc8000 - 0x92dd6fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddd000 - 0x92de2fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de7000 - 0x930dcfff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e2000 - 0x931edfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f2000 - 0x9320dfff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9325d000 - 0x9325dfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9325f000 - 0x93915fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c96000 - 0x93d11fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4a000 - 0x93e03fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e46000 - 0x93e46fff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e48000 - 0x94009fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404f000 - 0x94090fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94098000 - 0x940d2fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d7000 - 0x940edfff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94134000 - 0x9417cfff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94186000 - 0x941c4fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94208000 - 0x94219fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94227000 - 0x94265fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94281000 - 0x94290fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94297000 - 0x942a2fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ee000 - 0x94308fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430e000 - 0x94625fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947aa000 - 0x948f0fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9497c000 - 0x9498bfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94992000 - 0x949bbfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949c1000 - 0x949d0fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949d4000 - 0x949f9fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a05000 - 0x94a22fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a29000 - 0x94a8ffff com.apple.Bluetooth 1.9.5 (1.9.5f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94d4e000 - 0x94dfefff com.apple.WebKit 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e64000 - 0x94f07fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f2f000 - 0x953f4fff com.apple.WebCore 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x967cc000 - 0x967ccfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96cb3000 - 0x96cd5fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96d46000 - 0x96e1dfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96e38000 - 0x96e39fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96e3b000 - 0x96e40fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f97000 - 0x96f97fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x976fa000 - 0x977e4fff com.apple.viceroy.framework 278.3.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97f28000 - 0x97f2afff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98157000 - 0x98fd7fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99b1f000 - 0x99b2afff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99b34000 - 0x99ca0fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message

    Ok one or two last thoughts.
    1) Shut down the computer and disconnect from the router (Shut down the Airport card before hand if Wireless).
    Restart the computer
    Restart iChat
    Reconnect to the router.
    Login to AIM.
    Don't ask me why this works for iChat 2 and 3 but it does.
    It maybe something somewhere things it has a chat still connected.
    1a) Related to that is running the Cron Scripts
    I am sure you are familiar with this but I will post the link for others
    http://discussions.apple.com/thread.jspa?messageID=607640&#607640
    2) Is a bit more extreme but somewhat related to the idea of maintenance and repair and that is to run the combo version of the OS level this computer is at
    http://www.apple.com/downloads/macosx/apple/macosx_updates/ Make sure with 10.4.11 updates that this is the right computer type as there are two in the List (One Intel, One PPC)
    3) IS there any chance that iChat thinks this computer is sitting in two networks ?
    iChat 4 reports this as Error 4 but iChat 3 and before seem to report error 8 leading you to look elsewhere.
    In iChat 4/Leopard it can be caused by Parallels sharing the Mac IP (this seems to be a Leopard/Parallels issue)
    But it is caused by the use of two VPNs that this app sets up.
    Wired and wireless connections at the same time will do it as will two DHCP servers on the LAN or in Leopard, Sharing the Internet Connection also gets an Error 4
    At this sort of stage with a domestic set up I would be suggesting 1) through 2) to do to basically reset the the System and know where we were starting from.
    Item 3) is info gained from increased info in iChat 4 that may be related.
    9:17 PM Wednesday; March 5, 2008

Maybe you are looking for

  • Photosmart C4795 printer problem - Can't print from my HP laptop

    I have tried running the diagnostic tool. It indicates the printer is offline. I can't figure out how to reconnect. I have windows XP.  I've been on the phone with ATT/HP for over an hour with no resolution. Please help! This question was solved. Vie

  • Impossible to use an Amex payment method in Luxembourg

    I am trying to change my payment method from a no longer valid Mastercard to an Amex card. Unfortunately, the system does not let me submit an Amex payment method from Luxembourg - "Your payment method is not valid in this Store. Please enter a new p

  • Any Possibilities to Customize Oracle 11g BPM Worklist

    Hi all, My Requirement is to Customize the Oracle 11g BPM WorkList App. I realise that Oracle no longer provide the code for the worklist app like in 10g and i don't want to write a custom worklist app. If Possible what will be the procedure actually

  • InDesign won't open. Photoshop

    InDesign won't open. Photoshop & Illustrator do. I tried to register my product (Adobe Creative Suite 6 Design & Web Premium) but it won't take my code.

  • Norton Antivirus blocks printing to Airport Express-attached printer

    I have my HP Photosmart C4480 ("the free printer") set up with my airport express base station and it works fine, but only if I disable the portscan vulnerability protection in Norton Antivirus (11.0.1). Does anyone know if there is a better way to u