Getting javadoc out of jpd/jws/ejb/jcx/work files

Hi,
I see lot of messages on this newsgroup for javadoc help (unfortunately without any reply with solution except temporarily changing extension to .java).
I am facing the same problem of creating javadoc out of jpd/jws/ejb/jcx or .work file itself.
Can anyone please guide me?
regards,
-Ranjan

Hi dkramer,
Sorry for the delay in the response.
I visited the link that you have mentioned:
http://java.sun.com/j2se/javadoc/faq/index.html#sourcecode
It redirects me to www.sun.com, and from there a series of steps begins. Then at one stage it says "Click here for download". I click this, but what is this. I am told that I have been LOGGED OUT! I tried downloading from different computers and with different accounts, but the same result.
I think that the source files download has been discontinued by Sun.
Can you actually try downloading the source files from this link and let me know the status?
Thanx
SNODX
Pssssst.... Barbarian is trying to be much more reasonable, he is asking me to download a zip de-compression utility for Linux, but I am the kind of person who prefers to climb up the mountain rather that try to get around it. In any case if anyone asks me in a job interview how would you build the javadocs for Linux, what do I tell them, decompress the zip file on Linux!

Similar Messages

  • Javadoc out of files with extensions jpd/jws/ejb/jcx

    Hi,
    I see lot of messages on this newsgroup for javadoc help (unfortunately without any reply with solution except temporarily changing extension to .java).
    I am facing the same problem of creating javadoc out of jpd/jws/ejb/jcx or .work file itself.
    Can anyone please guide me?
    regards,
    -Ranjan

    What do you mean "just like a java file"? Does it contain class, constructor, method and field declarations? Javadoc comments are interpreted only ahead of these declarations.
    The javadoc tool is limited to java source files. It's pretty much a precondition of the javadoc tool that a source file must be able to be compiled by the javac compiler. Javadoc uses parts of javac to parse the source file and build a doc structure, using javac internal data structures. If your files cannot be compiled by javac, they are unlikely to be parsed by the javadoc tool (though there are exceptions for Java source files that have compiler errors). Javadoc tool also looks for the ".java" extension on files.

  • Getting Error Out Of Memory while importing the work repository in ODI 10g

    I exported the work repository from topology of ODI 10g of one DB and tried importing it in the another ODI 10g topology of another DB.While importing i got the error 'Out of Memory' .
    Can somebody suggest me ,how to solve the heap size out of memory issue while importing in ODI 10g.
    Thanks in Advance.

    Hi,
    you have to post your question in ODI forum
    Data Integrator
    Suresh

  • Need help getting information out of array and into text/object files

    Im having alot of trouble with this i have the classes for the array, text reader and writer, and object reader and writer mostly done. I originally had a getInfo method in my object and text classes to input the data needed, but that wasnt how the instructor wanted. So my question is how do i take the infomation in the array in class studentarray and send that information to the text and object classes? I have looked online for an example and cant seem to find one that looks like it would work. I am pretty sure what i need will be put in the class StudentArray
    here is requirements i havent figured out how to implement
    - read student records from a �text� file
    - write student records into a �text� file (new data after sorting)
    - read student records from an �object� file
    - write student records into an �object� file (new data after sorting)
    I have sorting methods below in StudentArray just didnt post them
    public class StudentArray {
    private static Scanner input = new Scanner(System.in);
    private static student sArray[] = new student[5];
    public static void insert() throws NegativeIDException
    for(int i = 0; i < 5; i++)
    System.out.println("Please enter firstname:");
    String Fname = input.next();
    System.out.println("Please enter lastname:");
    String Lname = input.next();
    System.out.println("Please enter id:");
    int Id = 0;
    try
    Id = input.nextInt();
    NegativeIDException nide = new NegativeIDException("No negative number for id.");
    if(Id < 0)
    throw nide;
    scanner.nextLine();
    System.out.println("you must enter a positive number try again");
    catch(InputMismatchException ime)
    System.err.printf("\nException: %s\n", ime);
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    System.out.println("Please enter year admitted:");
    int Admitted = 0;
    try
    Admitted = input.nextInt();
    NegativeIDException nide = new NegativeIDException("No negative number for id.");
    if(Admitted < 0)
    throw nide;
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    catch(InputMismatchException ime)
    System.err.printf("\nException: %s\n", ime);
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    System.out.println("Please enter Gpa:");
    double Gpa = input.nextDouble();
    int t = 0;
              int q = 0;
              System.out.println("Please select your track");
                   System.out.println("1 for doctoral student");
                   System.out.println("2 for graduate student");
                   System.out.println("3 for major student");
                   System.out.println("4 for minor student");
                   t = input.nextInt();
                   if (t == 1)
                             System.out.println( "Please select your doctoral topic");
                             System.out.println("1 for Video Games");     
                             System.out.println("2 for CPU History");     
                             System.out.println("3 for Other");     
                             int c = input.nextInt();                         
                             String diss = "";
                             if (c == 1)
                                  diss = "Video Games";     
                             else if (c == 2)
                                  diss = "CPU History";
                             else if (c == 3)
                                  diss = "Other";
                             sArray[i] = new CSDoctStudent(Fname, Lname, Id, Admitted, Gpa, diss);
                             q++;                              
                        else if (t == 2)
                        System.out.println( "Please enter the number for your graduate course");
                        System.out.println("1 for Software Engineering");     
                        System.out.println("2 for Theory");     
                        System.out.println("3 for Other");     
                        int b = input.nextInt();
                        String Theory = "";
                        if (b == 1)
                             Theory = "Software Engineering";     
                        else if (b == 2)
                             Theory = "Theory";
                        else if (b == 3)
                             Theory = "Other";
                        sArray[i] = new CsGradStudent(Fname, Lname, Id, Admitted, Gpa, Theory);
                   q++;     
                        else if (t == 3)
                             System.out.println( "Please enter the number for your major course");
                             System.out.println("1 for Hardware");     
                             System.out.println("2 for IS");     
                             System.out.println("3 for Theory");     
                             int m = input.nextInt();
                             String track = "";
                             if (m == 1)
                             track = "Hardware";
                        else if (m == 2)
                             track = "IS";
                        else if (m == 3)
                             track = "Theory";
                             sArray[i] = new CSMajorStudent(Fname, Lname, Id, Admitted, Gpa, track);
                             q++;     
                   else if ( t == 4)
                             System.out.println( "Please enter the number for your minor course");
                             System.out.println("1 for Computer Application");     
                             System.out.println("2 for Multimedia");     
                             System.out.println("3 for Web Technology");
                             int d = input.nextInt();
                             String Hardware = "";
                             if (d == 1)
                                  Hardware = "Computer Application";     
                             else if (d == 2)
                                  Hardware = "Multimedia";
                             else if (d == 3)
                                  Hardware = "Web Technology";
                             sArray[i] = new CSMinorStudent(Fname, Lname, Id, Admitted, Gpa, Hardware);
                             q++;     
                   else;
    sArray= new student(Fname,Lname,Id,Admitted, Gpa);
    //trying to write it to a text file with this
    import java.io.PrintWriter;
    import java.util.Scanner;
    import java.io.File;
    import java.io.FileNotFoundException;
    public class TStream {
    private Scanner input = null;
    private PrintWriter output = null;
    private student [] sArray = new student[5];
    public TStream()
    public void write()
    try
    output = new PrintWriter("tdatabase.txt");
    for(int i = 0; i < 5; i++)
    output.print(sArray[i].getFname() + "\t");
    output.print(sArray[i].getLname() + "\t");
    output.print(sArray[i].getId() + "\t");
    output.print(sArray[i].getAdmitted() + "\t");
    output.print(sArray[i].getGpa() + "\t");
    output.println();
    output.close();
    catch(FileNotFoundException fnfe)
    System.err.printf("\nException: %s\n", fnfe);
    System.out.println("Can not open this file.\n");
    public void read()
    try
    input = new Scanner(new File("tdatabase.txt"));
    for(int i = 0; i < 5; i++)
    String Fname = input.next();
    String Lname = input.next();
    int Id = input.nextInt();
    int Admitted = input.nextInt();
    double Gpa = input.nextDouble();
    sArray[i] = new student(Fname,Lname,Id,Admitted,Gpa);
    input.close();
    catch(FileNotFoundException fnfe)
    System.err.printf("\nException: %s\n", fnfe);
    System.out.println("Can not open this file.\n");

    Use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Cant get 2 out of 3 Flash buttons to work!

    I have a school project and our teacher can't even figure out whats wrong. We have to make a movie/mini site for our final project and we have an intro layer/scene that stops and three buttons fade in to navigate to the respective sections (forensics, web dev, and business). The forensics button goes to the forensics page and the home button brings you back to nav page, perfect. However when I try to do the exact same commands for the other two buttons it doesn't work. Can anyone clue me in on what I am doing wrong? Its due Thursday and I am freaking out!
    Here is the file... https://dl.dropbox.com/u/9832993/final.fla

    Try to find all of the gotoAndWhatever commands that you use and you will find you have at least one making things go where you do not want them to go. 
    Putiing code on() objects such as the way you did with your buttons is bad practice.  If that is what you were taught, you are being taught bad practices. 
    On your buttons you are putting code like...
    on(release){
        gotoAndPlay(15);
    Instead of doing that, assign that button an instance name in the properties panel where it says <Instance Name>.  Let's say you name it "businessBtn"... if so, then in the timeline, in a layer you reserve for actionscript, you would use the following code...
    businessBtn.onRelease = function(){
        gotoAndPlay(15)
    And all the rest of your buttons' code would be there in that same frame of the timeline where you can see it all at once.  Then go collect the other tidbits of code that you have along the timeline in different layers and move it to corresponding frames of that one actionscript layer.  Now you have all your code in one layer where it is easy to find and easier to look thru to track down any problems with it.

  • Not getting System.out.println output in Web Start Log File

    I am new to this but I'm running through the examples in Mauro Marinilli's "Java™ Deployment with JNLP™ and WebStart™" and the install-win and install-win2 examples are not writing properly to a user-specified log file on my desktop (chosen location). I have several versions of j2re/jre installed on my client computer and have started several of the javaws.exe files on my computer to specify that I wish to Show Java Console and Log Output but
    1) no Java console pops up when I subsequently run the JNLP from my web server
    AND
    2) no log file is written
    I do see the batch file left in place for install-win2 so I believe that the application is being run (such as it is... lol)...
    Any ideas what the problem might be? All reasonable suggestions (i.e. not PEBKAC) welcomed...
    Regards

    How about in Solaris?
    May I use the similar method to redirect the stdout to a specific file? What is the syntax for this?
    Or, I can only start server with interactive mode (without watchdog) and use ">" to redirect the logs?
    Thx a lot.

  • Getting disk out of MB that's not working

    Does anyone know how to eject a disc from a MB that's not working?
    I tried to boot up using the disc but it is stuck. There used to be a paper clip trick where one could stick a straightened paper clip in a location near the cd and the disc would eject. I can't locate it anywhere. It's been a long while since I used that MB, I gave it to my niece and she got the cd stuck somehow.
    TIA

    Tell her to try restarting while holding the trackpad button down, even if the computer doesn't start I believe the disc should eject early in the startup process.

  • As a novice computer user, I wonder why I'm often getting "white-out" (program/app I'm working in goes totally blank onscreen). If it makes a difference, I'm working 99% of the time on battery, not AC, power. What causes this?

    As a novice computer user, I wonder why I'm often getting "white-out" (program/app/site I'm working in goes totally blank onscreen). This is when I'm Internet online. If it makes a difference, I'm working 99% of the time on battery, not AC, power. Some of the possibilities I'm guessing are: glitches in my Verizon FiOS Wi-Fi providership?; staying too long on a site that's waiting for me to finish and "Submit"?; computer hardware prob (yikes, I hope not! It's brand new). Any ideas out there?

    When this 'white-out' occurs, is the display 100% white with no error message and no menu bar?
    Does this occur when you are using Wi Fi or connected to the Internet via the Ethernet cable?
    Ciao.

  • Saved a few images to Dashboard. How can I get them out of there and save them to a file? Thanks

    Saved a few images to Dashboard. How can I get them out of there and saved to a file? Thanks

    I'm sorry, I'm lost & don't even know what to ask.
    Oh wait, open Dashboard in Applications, do the Pics show there?
    http://techland.time.com/2013/01/22/the-slow-but-almost-certain-demise-of-apples -os-x-dashboard/

  • How can I use CS4 on 2 computers and not get locked out

    I have CS4 on 1 computer and plan to install it on a 2nd computer. If I send work from computer 1 to computer 2, can I work on it on computer 2 and then return to computer 1 and work on it? In the past I have had trouble getting locked out when I have tried to work on the same webpage on 2 computers.  I use IE 7 & 8, firefox, and HX pro. Note, I would not be working on the 2 computers at the same time.
    Adobe help has advised me not to try what I've described above, but isn't this what Contribute should be able to do?
    Thanks for your help.

    You're welcome.  '
    WiFI and Bluetooth are automatically trurned off when enabling airplane mode - you have to turn them back on to use them. 
    WiFi and Blue tooth do NOT  involve any carrier roaming charges. You may have to pay for lockal WiFi hotspot, but that has nothing to do with your carrier charges.

  • Getting methods out of the application module.

    I have now deployed my BC components to the OAS as an EJB and now I am trying to get the method calls working from my applet. The module connection code somewhat confusing because of when I look at the EJB/Client snippet, it returns the remote interface, but I don4t know how to get projectmoduleimpl out what need to be returned. Could you please give me some insight to this issue? Here is the code what I am trying now...
    public static ProjectModuleImpl/*Project.common.oas.RemoteProjectModule*/ getGenericAppMod(String platform)
    String ejbUrl = "oas://<host>:8889/ProjectOAS/Project/ProjectModule";
    // Setup the environment
    Hashtable environment = new Hashtable();
    // Turn JNDI on to OAS
    environment.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "oracle.oas.naming.jndi.RemoteInitCtxFactory");
    // Lookup the URL
    Project.common.oas.ProjectModuleHome homeInterface = null;
    try {
    System.out.println("Creating an initial context");
    Context ic = new InitialContext(environment);
    System.out.println("Looking for the EJB published as 'ProjectOAS/Project/ProjectModule'");
    homeInterface = ( Project.common.oas.ProjectModuleHome )javax.rmi.PortableRemoteObject.narrow(ic.lookup(ejbUrl), Project.common.oas.ProjectModuleHome.class);;
    catch (CommunicationException e) {
    System.out.println("Communication exception! Unable to connect: " + ejbUrl);
    e.printStackTrace();
    System.exit(1);
    catch (NamingException e) {
    System.out.println("Naming exception occurred!");
    System.out.println("Cause: This may be an unknown URL, or some" +
    " classes required by the EJB are missing from your classpath," +
    " or your OAS host is short of resources");
    System.out.println("Suggestion: Check the components of the URL," +
    " and make sure your project includes a library containing the" +
    " EJB .jar files generated by the deployment utility.");
    e.printStackTrace();
    System.exit(1);
    // That's it!
    try {
    System.out.println("Creating a new EJB instance");
    Project.common.oas.RemoteProjectModule remoteInterface = homeInterface.create();
    Hashtable env = new Hashtable(2);
    env.put(Context.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
    env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_EJB_OAS);
    Context ic = new InitialContext(env);
    System.out.println("Initial context done1");
    ApplicationModuleHome home1 = (ApplicationModuleHome) ic.lookup("Project.ProjectModule"); //Impl");
    System.out.println("home done1");
    //Module
    ProjectModuleImpl appMod = (ProjectModuleImpl) home1.create();
    System.out.println("module done1");
    //Module
    appMod.getTransaction().connect("jdbc:oracle:thin:<user>/<password>@<host>:1521:<SID>");
    System.out.println("connection done1");
    return appMod;
    catch (Exception e) {
    System.out.println("Module failed : " + e.getMessage());
    e.printStackTrace();
    return null;
    }// end getgenericappmod
    Thank you in advance!!

    Am I to understand that this cannot be done? Please give me some info on this, because the applet works fine in the local mode and frankly, as you might quess, it is of no use if I cannot use the methods from OAS... I am waiting...

  • Getting Javadoc hints in Netbeans on Mac OS X

    I've been trying to get Javadoc hints in NetBeans (6) on Mac OS X, but I can't figure out what's wrong. I keep getting "javadoc not found" messages.
    Does anyone know the proper path to set in the Java Platforms manager's Javadoc tab? I've tried downloading new documentation from Sun and pointing to the api folder, but that didn't work either.
    Thanks.

    Follow the instructions in NetBeans' Help. If that doesn't work, you need to ask at a site that supports NetBeans - these forums provide Java language support, not IDE support.

  • Getting a security exception when invoking EJB from a webservice

    Hi,
    I am getting the following exception when Invoke an EJB from a web service.
    The EJB fails when it tries to access a remote object(RMI).
    When I invoke the EJB directly I dont get this exception.
    Both the EJB and the WS are deployed as part of the same application on weblogic 9.2 .
    the WS was created by jwsc ant task.
    This is the exception:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested excep
    tion is:
    java.lang.ClassNotFoundException: com.bea.xml.XmlCalendar (no security m
    anager: RMI class loader disabled)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4
    60)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport
    .java:701)
    at java.lang.Thread.run(Thread.java:534)
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Stream
    RemoteCall.java:247)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:
    223)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
    at com.netcom.server.rmi.RequestHandlerImpl_
    Stub.copy(Unknown Source)
    Message was edited by:
    guyh

    Hi Jitu,
    I changed the wsdl. And so I don�t get the warning anymore. My Webservice also runs well, now. Thanks anyway for the reply.
    There is a nice tech article on the sun network, which solved my problem. The basic idea is to split the wsdl into 2 wsdl documents. one containing all the porttypes messages and so on. And the other wsdl contains the binding and service elements.
    If you are interested check out this link:
    http://java.sun.com/developer/technicalArticles/xml/jaxrpcpatterns/index2.html
    thanks,
    footman

  • Payables Open Interface Import getting errors out

    Hello All,
    I am trying to run "Payables Open Interface Import" program to upload the invoice but the program is getting error out, in the log file at the end i am getting the below error:
    (Insert ap inv dists 1a) Inside the insert function
    (Insert ap inv dists 1) Insert into ap_invoice_distributions
    (Insert ap inv dists 1) Insert into ap_invoice_distributions
    ORA-00001: unique constraint (AP.AP_INVOICE_DISTRIBUTIONS_U1) violated
    Insert_ap_inv_dists<-Create_lines<-Import_invoices<- Before report trigger
    (Create Lines 22) Insert into ap_invoice_distributions
    create_non_item_lines<-Import_invoices<- Before report trigger
    Any one faced this kind of issue?
    any suggestions to resolve this.
    Thanks & Regards
    Aboothahir

    Pl post details of OS, database and EBS versions.
    Pl see these MOS Docs
    Payables Open Interface Error ORA-00001: unique constraint (AP.AP_INVOICE_DISTRIBUTIONS_U1) violated          (Doc ID 357784.1)
    APXIIMPT Payables Open Interface Import Fails ORA-00001          (Doc ID 353052.1)
    Unique Constraint Violated Importing Invoices With Multi Line Distribution Set          (Doc ID 386323.1)
    HTH
    Srini

  • Need to convert music videos that are tagged as "Movies" and re-rag them as "Music Videos" to get them out of my movies library and into the Music Video folder. Likewise, I ha e some educational videos that belong in "Podcasts." Help?

    Need to convert music videos that are tagged as "Movies" and re-rag them as "Music Videos" to get them out of my movies library and into the Music Video folder. Likewise, I have some educational videos that belong in "Podcasts." Help?

    Select/highlight the ones that you want to change in your iTunes library, do Get-Info (control-I) and change their Media Kind on their Options tab to 'Music Video' - and then similarly for the podcasts.

Maybe you are looking for