Novell ldap api source code

Where can I found the novell ldap api's source code?
It contains com.novell.ldap package and some other ones.
Thanks.

Look around on your hard drive for src.jar or src.zip.
Where it is varies depending on what version you have and how you installed it, but
C:\JDK1.4.2_01\src.zip
might help.

Similar Messages

  • API Source Code

    I know java used to give out the api source code, but ive been looking for the 1.4.2 api source and I cant find it. Are they still releasing the source code? If they are please give me a link. Thank You very much.

    Look around on your hard drive for src.jar or src.zip.
    Where it is varies depending on what version you have and how you installed it, but
    C:\JDK1.4.2_01\src.zip
    might help.

  • JMF 2.1.1 API Source code. Wrere're can I download it?

    Hello,
    I very need to have the source code of the JMF 2.1.1 API. But I can't download it from Sun now (due to licensing issues). Would anyone know where can I download it. Please, please, please. I need it very much right now.
    Thank you.

    It seems you cannot, due to various licensing problems. If you're really desperate, you can so like the rest of us and use some kind of decompiler.. but you might be on shaky legal ground if you do so.. :)

  • Export / save email from gw via GW object api (source code)

    Is it possible to export or save an email via GW Object API?
    (emailhaeder, emailbody)

    On 8/28/2012 8:26 AM, M M wrote:
    >
    > Is it possible to export or save an email via GW Object API?
    > (emailhaeder, emailbody)
    >
    >
    Yes, if you write the code to do so. There is no magic export method.

  • How to see the source code in the API?

    Is it possible to see the source code for the String class in the Java API 1.4.2 somehow?

    one of the IDE's I have is GEL (gexperts.com), all you do is
    Search/Go To Class/
    select the class String, and the source code is displayed.
    pre-requisite is you have to specify the location of the api docs on your pc when
    installing GEL

  • Weblogic ldap security realm source code..

    Hi,
    The LDAPv2 security realm that is provided with weblogic 6.1 is great but I
    need to make several extensions to allow for the way our ldap tree is
    structured. Is there any chance that I can get the source code from weblogic
    so that I can extend it ?
    thx,
    B

    What's the use of following if BEA start sending the code to the end users
    * @author Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved.
    * @author Copyright (c) 1998-2001 by BEA Systems, Inc. All Rights Reserved.
    -utpal
    "Bidisha Das" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    The LDAPv2 security realm that is provided with weblogic 6.1 is great butI
    need to make several extensions to allow for the way our ldap tree is
    structured. Is there any chance that I can get the source code fromweblogic
    so that I can extend it ?
    thx,
    B

  • Need to view source code for API classes

    Any tips on where to find the .java files or source code for Java 2 5.0 classes?
    With Java being open source, you'd think that it woud be easy to find this. But I've tried doing a few searches but te results haven't been helpful.
    Cheers!

    Yeah I think I found it. Unfortunately there's a problem with downloading from Sun at the moment; fatal exceptions on every attempt.
    Wait and try later, I guess.

  • Sample  PL/SQL Portlet Source Code for Oracle Portal 9ias

    Hi, I'm a newbie of Oracle Portal technology, and I have a problem:
    I would create a PL/SQL portlet that realizes the following functions:
    1) Retrieve the username of the portal user logged from WWCTX_API.GET_USER function.
    2) Insert into an oracle db table two values about two hidden fields in the HTML FORM of the portlet.
    3) Realize the insert commit through the click on the submit button on the Html form of the portlet. I would redirect by the same button to an other page url also.
    I've never developed in Portal, and may be useful if someone could post me the source code of the SHOW MODE SECTION in the PROCEDURE SHOW of a SAMPLE PL/SQL PORTLET that realizes the upper functions.
    Thanks a lot....

    Hi
    Here's the code from Helloworld_Portlet example:
    procedure show
    p_portlet_record wwpro_api_provider.portlet_runtime_record
    is
    l_portlet wwpro_api_provider.portlet_record;
    begin
    if (not is_runnable(
    p_provider_id => p_portlet_record.provider_id
    ,p_reference_path => p_portlet_record.reference_path)
    ) then
    raise wwpro_api_provider.PORTLET_SECURITY_EXCEPTION;
    end if;
    Retrieve the portlet information.
    l_portlet := get_portlet_info(
    p_provider_id => p_portlet_record.provider_id
    ,p_language => p_portlet_record.language
    if (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW) then
    if (p_portlet_record.has_title_region) then
    Draw the portlet header and specify what links are available
    from that header (i.e. details, customize, help, and about).
    The has_title property is set at the page region level.
    wwui_api_portlet.draw_portlet_header
    p_provider_id => p_portlet_record.provider_id
    ,p_portlet_id => p_portlet_record.portlet_id
    ,p_title => l_portlet.title
    ,p_has_details => true
    ,p_has_edit => true
    ,p_has_help => true
    ,p_has_about => true
    ,p_referencepath => p_portlet_record.reference_path
    ,p_back_url => p_portlet_record.page_url
    end if;
    Draw the portlet borders.
    The has_border property is set at the page region level.
    wwui_api_portlet.open_portlet(p_portlet_record.has_border);
    Display the content of the portlet in the show mode.
    Use the wwui_api_portlet.portlet_text() API when
    generating the content of the portlet so that the
    output uses the portlet CSS.
    htp.p(wwui_api_portlet.portlet_text(
    p_string => 'Hello World - Mode Show'
    ,p_level => 1
    if (p_portlet_record.has_border) then
    wwui_api_portlet.close_portlet;
    end if;
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_ABOUT) then
    Display the about page for the portlet.
    htp.p('Hello World - Mode Show About');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_EDIT) then
    Display the edit page for the portlet.
    htp.p('Hello World - Mode Show Edit');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_HELP) then
    Display the help page for the portlet.
    htp.p('Hello World - Mode Show Help');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_EDIT_DEFAULTS) then
    Display the edit defaults page for the portlet.
    htp.p('Hello World - Mode Edit Defaults');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_DETAILS) then
    Display the details page for the portlet.
    htp.p('Hello World - Mode Show Details');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_PREVIEW) then
    Display the preview page for the portlet.
    htp.p('Hello World - Mode Show Preview');
    end if;
    end show;
    I think you need to add this:
    You can get the values of your html-form with this command:
    v_hidden_1 varchar2(256);
    v_hidden_2 varchar2(256);
    v_hidden_1 := wwpro_api_parameters.get_value('name_of_hidden_1_in_html_form','p');
    v_hidden_2 := wwpro_api_parameters.get_value('name_of_hidden_2_in_html_form','p');
    You can get the actual URL with this command:
    v_url := p_portlet_record.page_url;
    Hope that helps.
    Regards,
    Mark

  • How to get the source code in PAR file

    Hi All,
    I used the PAR migration tool to migrate from PAR to EAR file. When I imported the EAR into NWDS 7.3, I was just able to see the structure and jsp files and could not find the java source code files. I would requires the java source code to make modifications so that deprecated APIs can be replaced and to also make the code compatible with JDK 1.6.
    I think the original 7.0 PAR file itself does not contain the source code. I decided to use the "Include source code" option when exporting the 7.0 PAR.
    I have the portal application DC project in my NWDS 7.0. However, when I try to export the PAR file using Export --> PAR File -- > Next... I am unable to select any project from the list. The list appears blank with disabled Next & Finish buttons.
    I also noticed that in the portal DC application structure, there is a .sda file under /gen/default/deploy. Also there is no PAR folder under /gen/default/public.
    How do I include the source in the PAR file so that I can edit the same after migrating to EAR format ?
    Regards,
    Melwyn

    DC and PAR/EAR stuff are different formats, SC/DC is an archive type used by NWDI, if I got it right.
    How do I go about generating the PAR file (with source) ?
    In fact through including the seources while creating the PAR/EAR in NWDS, but: no need to do that, you can also depack SDA (rename it to zip). If you wanna just see the Java sources you will find them there, otherwise decompile as Vijay already sad.
    cheers

  • Problem file xls with jasper (source code mixed in the content XLS file)

    i´m writing xls file with jasper, the problem is that is mixed the source code of the JSP (where doing request) in the content of the file xls, do not import the API thah use.
    The java code whit JASPER is like:
    FacesContext ctx = FacesContext.getCurrentInstance();
    ExternalContext ectx = ctx.getExternalContext();
    JRDataSource dataSource = ......
    InputStream inputStream = ectx.getResourceAsStream(parametro);
    JasperReport jasperReport = (JasperReport) JRLoader.loadObject(inputStream);
    JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,new HashMap(), dataSource);
    JRXlsExporter exporter = new JRXlsExporter();
    ByteArrayOutputStream xlsReport = new ByteArrayOutputStream();
    exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
    exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, xlsReport);
    exporter.exportReport();
    byte[] bytes2 = xlsReport.toByteArray();
    response.setContentType("application/vnd.ms-excel");
    response.setContentLength(bytes2.length);
    response.setHeader("Content-disposition", "attachment; filename="" + "MI_EXCEL_JR" + ".xls"");
    ServletOutputStream outputStream = response.getOutputStream();
    outputStream.write(bytes2, 0, bytes2.length);
    outputStream.flush();
    outputStream.close(); whay is printed the response in the xml file?
    tnk for your help....

    hoham wrote:
    byte[] bytes2 = xlsReport.toByteArray();
    Not related to the actual problem, but this line is not very efficient. What if the report is bigger than the available server memory? Or if there are many simultaneous requests which does all the same?
    It would result in an OutOfMemoryError. Rather obtain it as an InputStream and write it in a loop to the OutputStream using a byte block as buffer. Or wrap the both streams by BufferedInputStream/BufferedOutputStream and write in a simple loop. Consult the basic Java IO tutorials for details and code examples.

  • OIC: Need to find the Source Code for the YTDSummary.java file

    Hi All,
    We have 11.5.10 implemention and we are using the OIC(Incentive Compensation) Application. In the Report Module for the Year-To-Date Summary we need look for the Java Source Code.The cnytdsum.jsp file call the YTDSummary.java file. We have teh following question
    1. How we can get the Java Source Code and where and which directory we need to look into?
    2. Let say if we need to customize the java file how we can do that?
    3. where and which directory we have to complie the java file?
    Highly appreciate for any pointers
    Thanks,
    Johnson.

    But those must be platform dependant, not really that
    interesting to look at. I have never felt any need to
    look at those at least.Wake up and smell the coffee, abbie! I read the source code all the time and constantly tell my students to do that, too.
    1. Java source code is not platform dependent. The original poster wanted to look at linked list code, how could that be platform dependent?
    2. It is the implementation of the SDK APIs, so by definition it is implementation dependent code, liable to change in a later version. So don't assume anything beyond what is claimed in the API documentation. However, sometimes the documentation is incomplete or ambiguous to you, and reading the source can provide some insight, however implementation dependent. (Light a candle or curse the darkness.)
    3. Why read source code? It's a good way to learn how to program. You see something in the API and ask: how'd they do that? Or you realize you want to do something broadly similar, but you can't reuse the source code.
    For example, Images are not Serializable, but suppose you want a small image that is part of an object to be serialized with the rest of the object without too much fuss (ie, without using javax.imageio). You notice ImageIcon is serializable, so you use it. (An ImageIcon has-an Image.) Then you wonder: how'd they do that? You read the source and then you know.
    You live, you learn,
    Nax

  • Fill in a PDF Form from source code.

    Hello:
    I have a PDF form made with LiveCycle. This form read the data from a xml file. I'm trying to fill it programatically but i don't know how. I'd like to know if there is some way to do this action, from source code or with a command line.
    Thanks a lot.

    iText is an API which has the PDF edit capabilities.
    Read this link : http://www.itextpdf.com/
    If you have Adobe LiveCycle Forms ES/ES2 solution component, you need not go for iText; Instead, you can invoke the LC APIs through C#.net and merge the XML data into the PDF.
    If you would go with option#2, let me know. I will share you my ideas.
    Nith

  • Need to find the source code for java.util.LinkedList

    Hello all,
    I'm new to the forums and I actually need the LinkedList source file as well as all the source files for all Java packages and libraries. Please post a link here if you can, or email me at [email protected]
    Thanks again!
    copter_man

    But those must be platform dependant, not really that
    interesting to look at. I have never felt any need to
    look at those at least.Wake up and smell the coffee, abbie! I read the source code all the time and constantly tell my students to do that, too.
    1. Java source code is not platform dependent. The original poster wanted to look at linked list code, how could that be platform dependent?
    2. It is the implementation of the SDK APIs, so by definition it is implementation dependent code, liable to change in a later version. So don't assume anything beyond what is claimed in the API documentation. However, sometimes the documentation is incomplete or ambiguous to you, and reading the source can provide some insight, however implementation dependent. (Light a candle or curse the darkness.)
    3. Why read source code? It's a good way to learn how to program. You see something in the API and ask: how'd they do that? Or you realize you want to do something broadly similar, but you can't reuse the source code.
    For example, Images are not Serializable, but suppose you want a small image that is part of an object to be serialized with the rest of the object without too much fuss (ie, without using javax.imageio). You notice ImageIcon is serializable, so you use it. (An ImageIcon has-an Image.) Then you wonder: how'd they do that? You read the source and then you know.
    You live, you learn,
    Nax

  • Creating a copy of an existing JTable that does not have source code.

    Hi
    I am working on a java swing based application. We used a third party API for JTable for showing some data in a table format and also for printing function. As of now print button is printing the whole table being shown in the application. Our new requirement of printing is �Users don�t want to print all the columns being shown in the application and they wanted to have print of columns whatever they would like to see�.
    The above requirement can be fulfilled if I can have a copy of the existing table. Unfortunately we don�t have the source code of the table being shown in the application as we are using 3rd party libraries. Had the source code been there I could have implemented cloneable interface or proto type pattern.
    Can some body help me how can I create a copy of the existing table? Basically the high level approach I thought of is create a new object of the table class and copy the properties/attributes of the existing table to the new table object. But I don�t know what attributes should be copied so that I can have the copy of the original table and how to construct (code) this new table.
    I would be very grateful if some one could help me with this.
    Thanks & Regards
    Srini

    I understood your suggestion. But it would be very difficult to migrate as it requires lot of changes across different tabs of the existing application. This application was developed around 6 years ago. And this change would require lot of regression testing too.
    Do you have any idea of creating the copy of the available JTable object?

  • Double click event to source code

    hi all
    What im trying to do is when someone clicks one of the keywords in the tree browser file that it takes them to the source code window and to that method or variable the clicked. For exaple lets say have 2 windows, on the left side is just a list of methods and variables and ont he right hand is the window which u can see the source code. What i need is that when someone click on a method name on the left window, it will take them directly to that method name in the source file window (right window).
    public void mouseClicked(MouseEvent e)
    Any ideas what i need to do??
    Maybe it will help if i copy and paste the code of the [b]left window.
    import java.util.Observable;
    import antlr.collections.AST;
    import java.awt.Font;
    import java.awt.event.*;
    import java.awt.event.MouseEvent;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import javax.swing.border.TitledBorder;
    public class FileContentPanel extends ModulePanel {
        private ProgramModel model;
        private JTree contentTree;
        private APIViewer api;
        private SourceViewWindow view;
        private Formatter format;
        private FileTree tree;
        private JPopupMenu menu = new JPopupMenu();
        private JMenuItem viewmenu;
        /** Creates a new instance of FileContentWindow */
        public FileContentPanel(ProgramModel model, APIViewer a) {
            super(model, "File Contents");
            this.api = a;
            createPopupMenu();
            contentTree = new JTree() {
                public String getToolTipText(MouseEvent evt, ActionListener l) {
                    if (getRowForLocation(evt.getX(), evt.getY()) == -1)
                        return null;
                    TreePath curPath = getPathForLocation(evt.getX(), evt.getY());
                    DefaultMutableTreeNode highlighted = (DefaultMutableTreeNode)curPath.getLastPathComponent();
                    Object userOb = highlighted.getUserObject();
                    String ret=highlighted.getUserObject().toString();
                    if (userOb.getClass()==JavaMember.class)
                        ret=((JavaMember)userOb).getSignature();
                    else if (userOb.getClass()==JavaClass.class)
                        ret=((JavaClass)userOb).getSignature();
                    return ret;
            DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
            ImageIcon file = new ImageIcon(Prototype.class.getResource("images/source.gif"));
            renderer.setLeafIcon(file);
            contentTree.addMouseListener(new PopupTrigger());
            contentTree.setCellRenderer(renderer);
            contentTree.setToolTipText("");
            contentTree.setFont(new Font("Arial", Font.PLAIN, 11));
        private void setTree(JavaFile f) {
            ((DefaultTreeModel)contentTree.getModel()).setRoot(f.buildTree());
            getScroller().getViewport().add(contentTree);
        public void update(Observable o, Object arg) {
            setTree((JavaFile)arg);
        public boolean canViewAPI(DefaultMutableTreeNode node) {
            return (!node.isRoot() && node.getParent().toString().equals("imports"));
        private void createPopupMenu() {
            Action viewAPI = new AbstractAction("View API") {
                public void actionPerformed(ActionEvent e) {
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode)contentTree.getSelectionPath().getLastPathComponent();
                    if (node != null)
                        api.viewAPI(node.toString());
            viewmenu = menu.add(viewAPI);
        class PopupTrigger extends MouseAdapter {
            public void mouseReleased(MouseEvent e) {
                maybeShowPopup(e);
            public void mousePressed(MouseEvent e) {
                maybeShowPopup(e);
                //tree.getTree();
               // System.out.println("U are nearly there");
             public void mouseClicked(MouseEvent e)
               System.out.println("jknxncnnxzv");
            private void maybeShowPopup(MouseEvent e) {
                if (e.isPopupTrigger() ) {
                    int x = e.getX();
                    int y = e.getY();
                    TreePath path = contentTree.getPathForLocation(x, y);
                    if (path == null)
                        return;
                    contentTree.setSelectionPath(path);
                    contentTree.scrollPathToVisible(path);
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode)path.getLastPathComponent();
                    if (node != null) {
                        viewmenu.setEnabled(canViewAPI(node));
                    menu.show(contentTree, x, y);
    Cheers

    Does JavaClass contain the list of JavaMembers? If so, and if it is supposed to reflect the current state of the file that is open on the right hand side, then it should probably have methods to get the line and column number for the start of the contained JavaMembers. If you can figure out how to keep that in sync, you should be able to query it directly and set the cursor position.

Maybe you are looking for

  • Questions on scanning negatives?

    I thought I'd post a new thread, as had some remaining questions and didn't want to hijack someone else's thread. I'm embarking on scanning in all my previous 35mm colour negatives, and have so far learnt quite a lot both from experimentation and fro

  • How can I improve speed on iMovie?

    How can I improve speed on iMovie?

  • Combining single song files to one album

    I had a couple CD's I wanted to add to my iPad, so I first imported them to itunes on my laptop. Later I connected my iPad to the laptop, syncing it up, but for the album "My Dark Twisted Fantasy", all songs that had a featured artist were split into

  • Smart Object .psd file opens in ACR, why?

    In LR3.0, I select a .psd file in my catalog and do "edit in photoshop as a smart object".  Inside of photoshop, I double click on the layer or click "edit contents" of the smart object layer, it takes me to the ACR dialog.  Well, I do not want this

  • ITunes Will Not Close When I Click The Red "X".

    I then have to go to "Task Manager" and then "Processes" then manually end the process of iTunes. This is a very frequent problem, please fix soon. I have had many versions of iTunes and they had the same problem, right now I am on the latest update