8.1 security API Javadocs (downloadable)??????

I am trying to find a downloadable version of the BEA Server 8.1 security API Javadocs.
I am not always able to be online do I would like to get a downloaded version
for my laptop. Does anyone know where I can find one.
Thanks - Peter

On 16 Feb 2004 05:08:40 -0800, Peter Len <[email protected]> wrote:
>
I am trying to find a downloadable version of the BEA Server 8.1
security API Javadocs.
I am not always able to be online do I would like to get a downloaded
version
for my laptop. Does anyone know where I can find one.
Thanks - PeterPeter,
I don't think it is possible to download just the security docs. All the
javadoc can be dowloaded from http://edocs/wls/docs81/pdf.html.
PaulF
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

Similar Messages

  • From where can I download the javamail api javadocs?

    I spend time at a place with slow and unreliable internet access, and prefer to install the javamail API javadocs on my PC, rather than accessing it via the internet every time.  Is it available for download, please.

    We no longer make the javadocs available for download, but...
    You can download the source code and generate the javadocs yourself.
    The javadocs are available form the maven repository.  This works well if you need them for code completion in an IDE, but not so well if you just want to browse them.

  • How to use BEA Security API to build ownuser admin

    Hello,
    I want to build my own interface for a user admin module (create user, get role
    names, etc) by using the BEA security API. I have been looking through the Javadocs
    but can't find the key to how to start it, meaning what are the basic steps to
    begin (e.g. first get connection to server bean, then create some generic bean,
    etc etc).
    Has anyone doen this?
    Thanks - peter

    On 13 Feb 2004 04:34:28 -0800, Peter Len <[email protected]> wrote:
    >
    Hello,
    I want to build my own interface for a user admin module (create user,
    get role
    names, etc) by using the BEA security API. I have been looking through
    the Javadocs
    but can't find the key to how to start it, meaning what are the basic
    steps to
    begin (e.g. first get connection to server bean, then create some
    generic bean,
    etc etc).
    Has anyone doen this?
    Thanks - peterI'm not sure I understand exactly what you're trying to do. WebLogic
    Server has a model where application code runs in the containers and the
    containers call into the security framework where authentication and
    authorization is handled by plug-in modules. Are you attempting to build
    one of those plug-in modules? Are you trying to write an ejb or a
    servlet?
    PaulF
    Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

  • Javadoc download v1.3.1 containing the javax.naming.

    javadoc download v1.3.1 containing the javax.naming. package etc
    (not the jdk-1_2_2_006-doc.zip 17MB file,
    it does not have the javax.naming classes in it.)
    I can browse the classes on site http://java.sun.com/j2se/1.3/docs/api/index.html
    where to download? plz help me the link...

    http://java.sun.com/j2se/1.3/docs.html

  • Is JViewport scrollRectToVisible API Javadoc ambigious or just plain wrong?

    I've been working on a JPanel derived class that demonstrates how to position the JViewport of a JScrollPane using JViewport's scrollRectToVisible method. I've got it working, but only after trial & error regarding the scrollRectToVisible's interpretation of the Rectangle input parameter.
    The issue is that the JDK API javadocs gave me the impression that the Rectangle fields "x" and "y" would specify the (x,y) coordinates of the upper right corner in absolute client area coordinates. The impression resulted from past usage of Rectangles where the "x" and "y" fields were always absolute coordinates. But my trial & error revealed that the "x" and"y" fields in the Rectangle are interpreted by scrollRectToVisible as signed relative deltas within the client area, not absolute client area coordinates.
    Here is the javadoc excerpt fom class JViewport: It does not really say how the Rectangle is interpreted...
    public void scrollRectToVisible(Rectangle contentRect)+
    Scrolls the view so that Rectangle within the view becomes visible.+
    This attempts to validate the view before scrolling if the view is currently not valid - isValid returns false. To avoid excessive validation when the containment hierarchy is being created this will not validate if one of the ancestors does not have a peer, or there is no validate root ancestor, or one of the ancestors is not a Window or Applet.+
    Note that this method will not scroll outside of the valid viewport; for example, if contentRect is larger than the viewport, scrolling will be confined to the viewport's bounds.+
    It says the "*Scrolls the view so that Rectangle within the view becomes visible.*"
    h3. *{color:#ff6600}How would you interpret this? Is this 'wrong by omission' or am I all wet?{color}*
    Here is the relevant chunk of code that operates by creating a Rectangle with deltas, not absolute coordinates. It works. The whole class is too big for this forum post, but I can put the JAR file up for download if requested...
    public class BigPanel extends JPanel implements MouseListener, MouseMotionListener {
         // Data defs and constructor omitted for brevity...
         private void scrollView() {
              SwingUtilities.invokeLater(new Runnable() {
                   @Override
                   public void run() {
                        //scrollRectToVisible(dxyRect); // WRONG, compiles OK, jumps around but mouse response is all wrong.
                        //scrollPane.scrollRectToVisible(dxyRect);  // WRONG, compiles OK, but does nothing!!!
                        scrollPane.getViewport().scrollRectToVisible(dxyRect);  // RIGHT!!!
         private void setDeltaXY(int mouseX, int mouseY) {
              // Use the base (x,y) coordinate of the view port rectangle
              // when calculating mouse coordinates (mx,my) relative to the
              // visible view port.
              Rectangle viewRect = scrollPane.getViewport().getViewRect();
              int mx = mouseX - viewRect.x;
              int my = mouseY - viewRect.y;
              // Use center of the view port rectangle as the point to subtract
              // from the mouse relative coordinate (mx,my) to calculate the
              // movement delta (dx,dy).
              int dx = mx - viewRect.width / 2;
              int dy = my - viewRect.height / 2;
              // Now create a rectangle with the delta (dx,dy) and the view port
              // (width,height) as the input to scrollRectToVisible.
              // Note that the (x,y) in the rectangle is not an absolute unsigned
              // (x,y) coordinate, but a signed relative delta (dx,dy),
              // which scrollRectToVisible uses to as the relative amount to shift.
              dxyRect = new Rectangle(dx, dy, viewRect.width, viewRect.height);
         private void moveView(MouseEvent e) {
              setDeltaXY(e.getX(), e.getY());
              scrollView();
         @Override
         public void mouseClicked(MouseEvent e) {
              info("mouseClicked");
              moveView(e);
         @Override
         public void mousePressed(final MouseEvent e) {
              info("mousePressed");
              setDeltaXY(e.getX(), e.getY());
              startRepeat();
         @Override
         public void mouseReleased(MouseEvent e) {
              info("mouseReleased");
              cancelRepeat();
         / *(non-Javadoc)*
    @see java.awt.event.MouseMotionListener#mouseDragged(java.awt.event.MouseEvent)
         @Override
         public void mouseDragged(MouseEvent e) {
              setDeltaXY(e.getX(), e.getY());
    }

    I'm Barkin up the wrong tree, Huh?I think Darryl is right.
    I tried it as you suggested, on the JScrollpane instance, not the JScrollpane's JViewport. The results were not what I expected of absolute or relative coordinate systems.You got it wrong, try calling scrollRectToVisible on the component being scrolled i.e. viewport view.
    I have written a class which demonstrates working of scrollRectToVisible, that may help you:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javax.swing.*;
    * @author talha
    @SuppressWarnings("serial")
    public class ViewportExample extends JFrame {
         private JPanel scrolledPanel = new JPanel() {
              Dimension SIZE = new Dimension(1500, 1000);
              GradientPaint paint = new GradientPaint(0, 0, Color.WHITE, SIZE.width,
                        SIZE.height, Color.BLACK);
              protected void paintComponent(java.awt.Graphics g) {
                   Graphics2D g2 = (Graphics2D) g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                             RenderingHints.VALUE_ANTIALIAS_ON);
                   g2.setPaint(paint);
                   g2.fillRect(0, 0, getWidth(), getHeight());
                   if (rect != null) {
                        g2.setPaint(new GradientPaint(rect.x, rect.y,
                                            Color.BLACK, rect.x + rect.width, rect.y
                                                      + rect.height, Color.WHITE));
                        g2.fill(rect);
                        g2.setColor(Color.WHITE);
                        g2.setStroke(new BasicStroke(2));
                        g2.draw(rect);
                        g2.drawString("You wanted this rectangle to be visible",
                                  rect.x + 5, rect.y + 20);
                        g2.setColor(Color.BLACK);
                        g2.setStroke(new BasicStroke(1, BasicStroke.CAP_BUTT,
                                  BasicStroke.JOIN_BEVEL, 3, new float[] { 3 }, 1.0f));
                        g2.drawLine(0, rect.y, rect.x, rect.y);
                        g2.drawLine(0, rect.y + rect.height, rect.x, rect.y
                                  + rect.height);
                        g2.drawLine(rect.x, 0, rect.x, rect.y);
                        g2.drawLine(rect.x + rect.width, 0, rect.x + rect.width,
                                            rect.y);
              public Dimension getPreferredSize() {
                   return SIZE;
         private Rectangle rect;
         private JComponent verticalRule = new JComponent() {
              protected void paintComponent(java.awt.Graphics g) {
                   Rectangle clip = g.getClipBounds();
                   Graphics2D g2 = (Graphics2D) g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                             RenderingHints.VALUE_ANTIALIAS_ON);
                   g2.setColor(Color.BLACK);
                   g2.fill(clip);
                   int start = clip.y / 100 * 100;
                   int end = ((clip.y + clip.height) / 100 + 1) * 100;
                   g2.setColor(Color.WHITE);
                   for (int i = start; i < end; i += 100) {
                        g2.drawLine(20, i, 30, i);
                        g2.drawString(Integer.toString(i), 2, i + 15);
            private JComponent horizontalRule = new JComponent() {
              protected void paintComponent(java.awt.Graphics g) {
                   Rectangle clip = g.getClipBounds();
                   Graphics2D g2 = (Graphics2D) g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                             RenderingHints.VALUE_ANTIALIAS_ON);
                   g2.setColor(Color.BLACK);
                   g2.fill(clip);
                   int start = clip.x / 100 * 100;
                   int end = ((clip.x + clip.width) / 100 + 1) * 100;
                   g2.setColor(Color.WHITE);
                   for (int i = start; i < end; i += 100) {
                        g2.drawLine(i, 20, i, 30);
                        g2.drawString(Integer.toString(i), i + 2, 25);
         public ViewportExample() {
              super("Viewport Example");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JScrollPane pane = new JScrollPane(scrolledPanel);
              verticalRule.setPreferredSize(new Dimension(30, 1000));
              pane.setRowHeaderView(verticalRule);
              horizontalRule.setPreferredSize(new Dimension(1500, 30));
              pane.setColumnHeaderView(horizontalRule);
              pane.setBackground(Color.DARK_GRAY);
              add(pane, BorderLayout.CENTER);
              add(getSouthPanel(), BorderLayout.SOUTH);
              setSize(700, 600);
              // setExtendedState(MAXIMIZED_BOTH);
              setLocationRelativeTo(null);
         private JPanel getSouthPanel() {
              JPanel panel = new JPanel();
              final JTextField field = new JTextField(30);
              field.addActionListener(new ActionListener() {
                   Pattern pattern = Pattern
                             .compile("\\s*((?:-)?\\d+)\\s+((?:-)?\\d+)\\s+(\\d+)\\s+(\\d+)\\s*");
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        Matcher matcher = pattern.matcher(field.getText());
                        if (matcher.matches()) {
                             rect = new Rectangle(Integer.parseInt(matcher.group(1)),
                                       Integer.parseInt(matcher.group(2)), Integer
                                                 .parseInt(matcher.group(3)), Integer
                                                 .parseInt(matcher.group(4)));
                             //-- mark this --
                             scrolledPanel.scrollRectToVisible(rect);
                             scrolledPanel.repaint();
                        } else {
                             Toolkit.getDefaultToolkit().beep();
              panel.add(new JLabel("Rectangle: (Formatted as : x y width height) "));
              panel.add(field);
              return panel;
         public static void main(String... args) {
              SwingUtilities.invokeLater(new Runnable() {
                   @Override
                   public void run() {
                        new ViewportExample().setVisible(true);
    } This code has many irrelevant things but I added them just to learn new things, but they help in making overall application more usable. Have fun :)
    Try typing "300 400 400 300" in the text field, hit Enter and see the result. Try out other values...
    Thanks!

  • SUN: API documentation download (please)

    Is somewhere available the JSC APIs for download?
    I need it offlien because I cant login for locked content from my computer (IE 6.0.2800 in spanish).
    Could be a locked material but for download? I can download from my home desktop PC (IE 5.x) then transfer to my laptop (the one I use all day).
    Regards.

    There is a way to see the API javadoc without the key. (but its a bit wierd)
    1. Go to a managed page bean or a managed session bean etc.
    2. Inside any method, type getBean( (no more, no less)
    3. Press Ctrl-Space. A window with the definition of getBean in com.sun.jsfcl.app.FacesBean will open.
    4. In the top of border of the popup, there are two buttons (a blue and a brown one)
    5. Click the blue one (if you hover your mouse over it, it shows "Open Javadoc in browser")
    6. A browser tab opens. Go to the top, and click Frames.
    That's it. The javadoc is open. You can browse it as normal.
    Alternatively, you can just unzip the docs, they are in the file: C:\Sun\Creator\docs\jsfcl-doc.zip
    (Sorry I couldnt resist that)

  • Post-upgrade ToDo, PI configuration Wizard: com.sap.security.api.DuplicateKeyException Group found, but unique name "SAP_SLD_DATA_SUPPLIER" is not unique!

    after PI-Upgrade to NW-PI-731-SP07,  executing the PI-configuration wizard:
    step 126 of 162
    Assign SLD Data Supplier user to Group SAP_SLD_DATA_SUPPLIER (local SLD)
    Error:
    Group found, but unique name "SAP_SLD_DATA_SUPPLIER" is not unique!
    Execute Java Service
    Library: sap.com/tc~lm~ctc~util~core_ear
    Class: com.sap.ctc.util.core.services.UserFacade
    Method: void com.sap.ctc.util.core.services.UserFacade.addUserToGroup(java.lang.String, java.lang.String)
    Arguments (2)
    userName : SLD_DS_EXE
    groupName : SAP_SLD_DATA_SUPPLIER
    InvokeService- Result: ERROR
    Refresh Env. Messages: false
    Duration: 1.936 sec
    Library Info
    Default Trace
    Exception Class: com.sap.security.api.DuplicateKeyException
    Exception Message: Group found, but unique name "SAP_SLD_DATA_SUPPLIER" is not unique!
    com.sap.security.api.DuplicateKeyException: Group found, but unique name "SAP_SLD_DATA_SUPPLIER" is not unique!
    at com.sap.ctc.util.infra.rfc.BaseConfig.dispatchException(BaseConfig.java:230)
    at com.sap.ctc.util.core.services.impl.ume.java.GroupJavaImpl.verify(GroupJavaImpl.java:121)
    at com.sap.ctc.util.core.services.impl.ume.DualGroupImpl.verify(DualGroupImpl.java:118)
    at com.sap.ctc.util.core.services.content.ume.UserService.addToGroup(UserService.java:725)
    at com.sap.ctc.util.core.services.UserFacade.addUserToGroup(UserFacade.java:288)
    what to do?
    ============
    o.k.
    https://service.sap.com/sap/support/notes/1016283
    first run the UME consistency check => found some inconsistency => did repair UME
    then run again UME consistency check => found no more inconsistency !!
    the again - try to run the PI-Upgrade-Wizard => but again error on executing .....

    see this sap-notes:
    http://service.sap.com/sap/support/notes/1617234
    http://service.sap.com/sap/support/notes/1661135
    http://service.sap.com/sap/support/notes/1678815
    http://service.sap.com/sap/support/notes/1626747

  • Window 7 32 bit client machine dot net exe running in IE8 or IE9 from server security warning file download issue

    Help me in the issue, Asp dot net exe which run from server in IE 8 window 7 32 bit client machine show security file save download message. This app was running fine if we don't apply any window 7 or IE8 patches. same issue when running in
    IE9. I already run the caspol, add the server link to trusted site with low security. I wonder why it was working fine without any patches.
    I just found that client machine win 7 32 bit has dot net 4.5.1 installed when updated all the patches. after uninstall the dot net 4.5.1. the application worked fine. now I wonder what are the settings need to change to run the application with dot net 4.5.1
    installed on machine. as Microsoft always has these things in window updates. thanks in advance.

    Hi Gparhar,
    In case you are posting on .NET setup forum, I suspect it is not the right forum for your issue, we talks about "setup and deployment of .NET Framework.", if you have problem on installing and uninstalling .NET 4.5.1, we can share you some advice.
    For your specific case, I recommend you consult ASP.NET forum instead:
    http://forums.asp.net/
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do i reset the security questions on downloads

    anybody know how to reset the security questions on downloads im trying to download a new album and it wont let me get thru security questions

    Click here for information. If you can't reset them through the method described in that article or by sending yourself a rescue email(the email may take a few hours to arrive), contact the iTunes Store staff via the link in the 'Additional Information' section.
    It isn't possible to create a rescue email address without correctly answering two of the questions. Nobody on these boards can reset them for you.
    (95294)

  • Using API to download the webi document in the XML format

    I am just trying to use this API to download the webi document in the XML format. I need a sample XSL file which we can use to download the XML in a formatted output.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/en/RE_SDK/resdk_java_doc/doc/resdk_java_apiRef/com/businessobjects/rebean/wi/XMLView.html
    getReader
    public java.io.Reader getReader(java.net.URL xsl)
                             throws REException
    Return the result of the XSL transformation applied to the XML report output stream.
    Parameters:
    xsl - URL to an XSL file used to transform report XML.
    Since:
    11.5
    See Also:
    getReader()

    If the same content of file already thr in the Internal table as 1 STRING/LINE then you can loop the internal table count the entries which one you want like
    Kanagaraja L

  • JAVA API (javaDoc) Functionality

    Hello all
    I have come across the following idea after wasting some considerable time browsing the Java API (JavaDoc).
    The API is a great tool in assisting programmers who are not so experienced and do not know the API so well. It also helps experienced programmers in browsing foreign packages.
    However, something that is missing in the API is a function which allows you direct access to methods which return a specific object.
    Example: I need an object X, and it is not possible to initialise or directly access this object (Iterator which is infact an Interface). How do I access methods in other classes that return object X ( Iterator I = (Hashmap.keySet()).iterator(); Therefore, the method iterator() from Interface Set, and subsequently the method keySet() from class Hashmap).
    I am sure that such a functionality built in future javaDocs will help a lot of programmers browsing through the API.
    Finally, I hope this is the right forum for such requests.
    Faz

    Do you mean you want to access a method on an object but the type of the object isn't known until runtime? If this is what you mean than you might want to take a look at the Reflection API:
    http://java.sun.com/docs/books/tutorial/reflect/index.html

  • [svn:bz-trunk] 19459: Security API change for auth sync sample/ concept to work in WebLogic, WebSphere.

    Revision: 19459
    Revision: 19459
    Author:   [email protected]
    Date:     2010-12-17 10:15:23 -0800 (Fri, 17 Dec 2010)
    Log Message:
    Security API change for auth sync sample/concept to work in WebLogic, WebSphere.
    Adding the PrincipalConverter interface
    Implement the converting principal in WebLogic and WebSphere login command
    Modified Paths:
        blazeds/trunk/modules/opt/src/weblogic/flex/messaging/security/WeblogicLoginCommand.java
        blazeds/trunk/modules/opt/src/websphere/flex/messaging/security/WebSphereLoginCommand.jav a
    Added Paths:
        blazeds/trunk/modules/core/src/flex/messaging/security/PrincipalConverter.java

    Thanks for the reply dood... i've found the solution after several tries... i had to set the channel from the actionscript instead of depending on the Service-config.xml file like the following.. then it worked..
    var cs:ChannelSet = new ChannelSet();
    var chnl:Channel = new Channel();
    var customChannel:Channel = new AMFChannel("my-amf", "http://localhost:8080/somehting/messagebroker/amf");
                    cs.addChannel(customChannel);
    consumer = new Consumer();
    consumer.channelSet = cs;

  • Ep5.0 ? what jar file is the com.sap.security.api package in ?

    Hi ,
    Can i know , in Ep5.0 , what jar file has com.sap.security.api ? Please reply soon...
    Thank you ,
    avinash

    so , is there a procedure for me to use the Ep5.0 API and retrieve details from the data sources (for usermapping) ?
    Please reply me soon....
    thank you,
    avinash

  • Security API failed with error 60008

    HI, I have been tryng to wrap some files (or something like that) but when I select the files it comes up with an error box saying "security API failed with error 60008" can anyone help me fix this or tell me what it is?

    Launch Disk Utility and run Repair Permissions on the startup volume. Try whatever you were doing again. If there's no change, continue as follows.
    Triple-click the line below to select it:
    /private/tmp
    Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu.* An Info dialog should open.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Security API help needed / howto list user in group

    Hi there,
    i have tried all example programs of the hyperion security api. hard work to correct the errors in these scripts.
    now i can create native groups an users and can create groups on groups or put users in native groups.
    i have read the java doc / reference for the security api too but its not possible for me to list users of a group (group reference by name).
    is there anybody who can help with a code sample to list users of a group like "testgroup" ?
    something like (...getGroups(context,"testgroup")...) ??
    Best Regards
    Kai

    Please don't cross-post. It is considered very rude to do that here:
    http://forum.java.sun.com/thread.jspa?threadID=5233033&messageID=9953169#9953169

Maybe you are looking for

  • How to insert a image file into oracle database

    hi all can anyone guide me how to insert a image file into oracle database now i have created table using create table imagestore(image blob); but when inserting i totally lost don't know what to do how to write query to insert image file

  • PL/SQL Block with Cursor

    I was trying to create a PL/SQL block where I am trying to call all the SQL Plans and then drop them one by one. Here is how I am doung - SET SERVEROUT ON; DECLARE EXECSTR VARCHAR2(50); v_plans_dropped pls_integer; CURSOR C1 IS SELECT SQL_HANDLE FROM

  • Can't open pdf file in DIR maintenance

    Hi experts   We attached pdf file for Document. but for one pc , when we click pdf to open it in document, it said " error while setting data provider object" .. what's wrong ?  any clues? Thanks alice

  • Photoshop CS4 Application Errors & more

    Hi, can anyone help. I have had numerous application errors which result in the PS CS4 shutting down unexpectedly. 1 such error message: "The exception unknown software exception (0xc000000d) occurred in the application 0x78138a8c". It happens repeat

  • Problem with column groups on Interactive Report

    Hi I am hoping that someone can help with this problem. I am attempting to control both the grouping and ordering within each group of fields in the single row view of an interactive report. Creating column groups appears to be OK at first (sequence,