I want develop a small application Like java forums.

As Sun Developer Java forum,Everybody put their questions and get the replies.I want develop it for my organization.So any body help me to give the design or architecture or any suggestion to develop this project successfully.

Apache STRUTS or JSF and Hibernate

Similar Messages

  • I want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.

    i want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.
    == This happened ==
    Every time Firefox opened
    == all the time

    Here is the answer: Not an add on or plug-in! In fact you can get rid of all those useless plugins and add-ons! Go and get it. Im using the Alpha version right now and it works great. Works better then anything else .......add multiple links for all files sit back and relax. Its all done for you with no more intervention on your part! Check it out!
    http://wordrider.net/freerapid/
    Only one downside to this. No proper installer. You will have to copy the files to your respective programs folder.
    C:\Program Files\FreeRapid or C:\Program Files (x86)\FreeRapid
    Then create shortcuts to your desktop from FRD app. Thats it then start downloading!
    By the way this not an add. I just spent the whole night looking for the solution to this problem because I was so frustrated with the whole thing. I download tons of files and I have lots of other projects going and I dont have time for all this nonsense with RapidShare and Firefox. Hope this helps some other poor souls out there!

  • Any script or tool to deploy small applications like Antivirus or Management agents remotely

    Any script or tool to deploy small applications like Antivirus or Management agents remotely..? user will not have admin rights and they will be connected remotely mostly on VPN.
    Unable to achieve mush results with SCCM as its depended on agent communication.
    Please let me know if any other options to achieve this..
    Thank you
    Kris

    Hi,
    Prewritten scripts can be found in the repository:
    http://gallery.technet.microsoft.com/scriptcenter
    I recommend using ConfigMgr. It works just fine over a VPN or public internet.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Ideas pls for a small application on java and jsp?

    hi ,
    I would like to create an application which for resume. I would like to codify the java code . The java code should be able to autogenerate jsp file's since the output of the resume would be on an jsp page. To add it simply a wizard for dynamic resume creation using java swings and jsp. Code for jsp should be autogenerated please note it.
    Ideas please!
    Thanks in advance

    I'd like to add more information to Patreck's suggestion.
    JSP pages are wonderful if you need the web server to perform some actions before sending you the final web page.
    Here, you don't need the web server to do anything because your Swing application can do it for you. As Patreck implies, Swing can make a connection to the database, retrieve any information you want, perform whatever logic you need, and write the output to an HTML file.
    To give you an example, you can use Internet Explorer to view a basic web page on your hard disk. You can also use Microsoft Word to view the same basic web page. They both do the same task and there is no need to force IE to use its Word plug-in in order to view the web page.
    JSPs are not necessary because Swing will do all of the work for you. You only need JSPs if you want people to use your program through a web browser because they can't do Swing inside a web browser. You should only use one or the other, not both. Understand now?
    If you really really must generate JSP code from a Swing application, then just write out the JSP stuff in the file. For example...
    public void createWebPage( Printwriter pw, String myName ) {
       pw.println( "<% String myJSPName = \"" + myName + "\" %>" );
       pw.println( "<HTML>");
       pw.println( "<HEAD>");
       pw.println( "<TITLE>My Resume</TITLE>" );
       pw.println( "</HEAD>");
       pw.println( "<BODY>" );
       pw.println( "<H1>My name is " + myName + " and my JSP name is <%= myJSPName %></H1>" );
       pw.println( "</BODY>" );
       pw.println( "</HTML>" );
    }As you can see, it's pointless to embed JSP when you can do all the programming within Swing first and just write out the correct response.

  • How to build a small application using Java API

    Hai expertise,
         I want to retreive MDM repository info using JAVA API, i am following these blogs:
    /people/andreas.seifried/blog/2006/03/26/performing-free-form-searches-with-mdm-java-api
    /people/udi.katz/blog/2005/08/21/retrieving-data-from-mdm-server-using-the-mdm-java-api
    /people/udi.katz/blog/2005/07/17/mdm-connectivity-to-java-application
    <b>where to get the jar and sda files to build the application??
    In Developer Studio.. Windows -> Preferences -> Java -> Classpath variables. Is this the only place where we need to give the jar file path??
    Are there any other configurations to do(except setting container variable to MDM4J jar file) to connect my java application to MDM repository???</b>
    Regards,
    Chand.

    Hi Govada,
    (1)You need to add the MDM4j and other JAR files at:-
    right click on project -> Java Build Path -> Libraries -> Add External JARs
    (2)If the project is Web Dynpro project one
    then right click on project -> Web Dynpro Reference -> Library Reference -> and add sap.com/com.sap.mdm.tech.mdm4j
    Are you using JAVA API 1 or 2???
    Thanking you
    Namrata Dixit

  • How to develop an standalone application ?

    Hi everybody:
    I am a beginner. I had developed a database based application some years ago.
    Nowadays ALL is on web...
    My question is How to develop an standalone application with Java Studio Creator (or any other tool)?
    I DONT WANT ANY JSP, HTML, ETC...
    JUST files on java using swing for GUI.
    My problem is that I am not good at designing GUI's so I would like to use a visual tool for the arrangement of the swing components, generating just *.java files.

    Hi:
    The features you have attached dont answer my question. I have installed Java Studio Creator, but the only option is to create drag and drop the GUI components on a jsp file, not swing components on a java file....If I try to execute the java files generated on the Studio Creator with java from the command com they can not recognise the classes because they were ment to be under a web environment....

  • A question about design of Java Application on java card.

    Hi every one,
    I have a question about design of Java applet on java card,
    There is an application on my card that it is not java card, it include a DF and some EF under DF, I would like to know if I want to have this application on java card ,how can I design DF and EF on java card ,I mean is there any relation between DF,EF with applet and file? for example can I say DF is same as applet and EF is same as file?
    I'll appreciate for any help .
    yours sincerely,
    orchid

    hi
    you can write a java class for DF.
    an instance of DF class have some EF objects.
    for example,
    samples/com/sun/javacard/samples/JavaPurse/CyclicFile.java
    implements ISO 7816 CyclicFile ( EF )
    see also:
    http://forum.java.sun.com/thread.jspa?threadID=673745&messageID=3936272
    best regards,
    siavash

  • Runing Applications in JAVA Applets

    Hello all, I would like to run an application written in some other language inside a JAVA Applet, for example, if I want to run an application like "electronic work bench" or "piant" inside a JAVA Applet to view it on the internet, so many users can use the application online, so...... can anyone help me???????

    If your current application includes a GUI, let's say a JFrame that you are showing everything in, then it is a simple matter to create a JApplet that does everything your JFrame is doing. You can then make a jar of your program and include it in a webpage using any of the methods outlined in applet tutorials.

  • Create a web application like PayPal

    Hello. Thank you so much considering this question.
    I was just wondering, how does one develop a web application like PayPal?
    What are the steps?
    I am thinking about hiring some developers. How many developers should I hire, and about how long will it take?
    Thank you so much

    Before you hire any developers ... you need to sit down with your banker, your accountant, and your attorney and figure out whether your efforts will be wasted. There are a lot of international, federal, and other regulations, including PCI. In fact if you don't know what PCI is ... you need to deal with that before anything else.
    That said ... I would approach this from the standpoint of first hiring an architect who has a complete understanding of PCI and have that person put together the blueprint. Then my preference is use the smallest team of the highest caliber. One good Oracle developer, one charging $150K/year is worth more then 6 to 10 you can hire for $60K. The same rule holds true for Java, .NET, etc.
    So were I to set out to compete with PayPal ... I'd think in terms of hiring 6-7 people ... and I'd expect that if I had the right people ... 6 months and $1.5M. Plus extra for testers, etc.

  • Not getting application in Java Web Start

    Hello Sir,
    I wanted to run an application using Java Web Start. So, I created a jnlp file and i have mentioned the necessary jar files and the main class file. when I clicked on the jnlp file, the application is running in the Server using Java Web Start and its shortcuts are creates on the desktop and in the startmenu. I am able to run the application by clicking on the shortcut in the server. But I am unable to Download the application in the Java Web Start. It is not showing any Error Messages and the application is not running in the cleint machines.
    The contents of the jnlp file is as follows.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for SimpleClass Demo Application -->
    <jnlp
    spec="1.0+"
    codebase="http://dev01/Dummy/New"
    href="SimpleClass.jnlp">
    <information>
    <title>SimpleClass Demo Application</title>
    <vendor>xxx</vendor>
    <!-- <homepage href="docs/help.html"/> -->
    <description>SimpleClass Demo </description>
    <description kind="short">A demo of Class A and Class B Dependencies in java Web Start.</description>
    <!-- <icon href="images/swingset2.jpg"/> -->
    <!-- <icon kind="splash" href="images/splash.gif"/> -->
    <offline-allowed/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4.0"/>
    <jar href="ClassLib.jar"/>
    </resources>
    <application-desc main-class="A"/>
    </jnlp>
    So, please Tell me how to solve this problem.
    Thanking you
    R.Venkatesh
    MakeLogic
    www.makelogic.com
    [email protected]

    Here is an example of my JNLP file that works.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for the Passport Application -->
    <jnlp spec="1.0+" codebase="http://application:8080/application/" href="passport.jnlp">
      <information>
        <title>Passport</title>
        <vendor>WIM Consulting</vendor>
        <homepage href="http://www.wim.ca"/>
        <description>application Passport.</description>
        <description kind="short">Passport</description>
        <icon href="WIMicon.gif" width="32" height="32"/>
        <icon href="WIMsplash.jpg" kind="splash"/>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se version="1.4+"/>
        <jar href="passport.jar"/>
        <jar href="jars/kunststoff.jar"/>
        <jar href="jars/ldapsec.jar"/>
        <jar href="jars/localedata.jar"/>
        <jar href="jars/mysql-connector-java-3.0.6-stable-bin.jar"/>
      </resources>
      <application-desc main-class="ca.wim.passport.startup"/>
    </jnlp>I am not sure what the problem is.
    "I am unable to Download the application in the Java Web Start"
    If webstart in not actually downloading the jar - is the jar in the correct location?
    Is the server named dev01 and the directory structure actually /Dummy/New?
    Note: you do need to set up the mine type JNLP on your server,
    In my case the location of the JNLP file and main jar file passport is in the following directory.
    c:\Inetpub\WIMRoot\application
    The additional jars are in
    c:\Inetpub\WIMRoot\application
    I hope this may give you some clue
    rykk

  • Close a running application from java........

    Hi all
    I have opened an application say MSWORD from my java class using Runtime.getRuntime(), Now on close button i need to close the application and on the save button of the application i even want to save the application from java command
    The question is HOW????
    please reply,
    Thanx,
    Amitt

    can I open the konsole from java??Yes.
    First you must figure out how to do that from the command line yourself. That has nothing to do with java.
    Note that that how you do that MUST account for the fact that the "command line" is actually a shell. Some commands must be run by running the shell as the actual command and then passing the desired command as an option to the shell (the actual command.)
    Again you can google for examples.

  • Web application in Java

    Hello all,
    I need to develop a web application in java that will take MS excel files as input and generate output in excel format as well. Since I am not very experienced in java I am not sure what framework should I be using. Can I develop the user interface using JSwing and use servlets to make it available on web? Will appreciate any help.
    Thanks.

    You wouldn't need to use Swing. You could create your own Swing front-end (and access the web tier as a web service rather than a web app) but it wouldn't be necessary, and it would probably be too much work.
    How is this even a web application? If you're going in with a desktop app file and coming out with a desktop app file -- why and how do you feel that the web even needs to get involved?

  • How to execute another application from java ?

    I want to execute another application ( not java ) from my java application. Is it possible ? How can we do it ? Please guide me...
    thanx

    Hi littlestuart,
    Yes it's possible.
    Your question is frequently asked, please search the forum or google for an answer.
    /Kaj

  • Small game like drag and drop

    i'm new to flash action scrip but i want to create small game like drag and drop. but this has special area to drop and after drop selected object ,then i want to change that object(replace object by another object) using mouse move(scrolling). here what i did up to now
    bold area is the specialy i want to know, please help....
    ball_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    ball_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    square_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    square_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void
        event.target.startDrag(false);
        event.target.parent.addChild(event.target);
    function dropIt(event:MouseEvent):void
        event.target.stopDrag();
    ball_mc.buttonMode = true;
    square_mc.buttonMode = true;

    I don't know which line you intended be bold, but the following line makes little sense...
    event.target.parent.addChild(event.target);
    If the parent of the event target is the parent, then the event target is already the child of the parent.

  • Small application development

    Hi all,
    Apologies if this kind of thing has been posted before. I was just wondering if anyone had any tips on how to achieve the following:
    I would like to run a small platform independant application on the client side (in Swing maybe?) to accept a password. Once the correct password has been entered (don't worry about this at the mo), I need it to connect to a server side component (JSP / Servlet?) to authenticate the user. I am working on a new identification protocol unsing ZeroKnowledge thechniques.
    So I need a small app to connect to a server side component, they will then send a few BigIntegers back and forth and if the right answer is recieved then the user is then allowed into a restricted area (such as email inbox, e-banking screen etc). Could anyone let me know if this is possible, I am a fairly competent Java programmer with bog standard J2SE but a bit weak on the web / networking technologies.
    anti-spam alan underscore russell ' at' hotmail 'dot' com.

    here's a simple client you can build off of:
    import java.io.*;
    import java.net.*;
    public class Password {
         protected static final String SERVER_ADDRESS = "http://woogley.net/misc/Password/check.php";
         public Password() throws IOException {
              BufferedReader b = new BufferedReader(new InputStreamReader(System.in));
              boolean valid = false;
              while (!valid) {
                   System.out.print("Enter the password: ");
                   try {
                        valid = checkPass(b.readLine());
                   catch (MalformedURLException e) {
                        valid = false;
              System.out.println("Password accepted.");
         protected boolean checkPass(String pass) throws MalformedURLException, IOException {
              URL u = new URL(SERVER_ADDRESS+"?pass="+pass);
              BufferedReader b = new BufferedReader(new InputStreamReader(u.openStream()));
              // the server code only returns one line, and
              // it'll either be "true" or "false"
              String s = b.readLine();
              if (s.equalsIgnoreCase("true")) {
                   return true;
              return false;
         public static void main(String args[]) {
              try {
                   new Password();
              catch (IOException e) {
                   e.printStackTrace();
    }the server-side code can be in any language you want, because to the application it's all HTTP in the end anyway. In this example I'll use PHP.. but you can use JSP if you want. Of course, this example isn't connecting to a password DB or decrypting or anything ;). The application just sends a GET variable (which is the password from the user) to the server script and the script will process with a few simple if statements:
    <?php
    $password = "dukeownsjames";
    if (isset($_GET["pass"])) {
         // case-sensitive check
         if (strcmp($_GET["pass"],$password) == 0) {
              print "true";
         else {
              print "false";
    else {
         print "false";
    ?>

Maybe you are looking for

  • Custom fields not display in SRM5.5 Basic Data Frame

    Hello Everybody,       I am working on SRM5.5 Server which i have to add two custom fields in Basic Data Frame..      No field is display in basic data frame After I added those fields in INCL_EEW_PD_ITEM_CSF_SC and INCL_EEW_PD_ITEM_CSF.     I added

  • Upgrading issue

    I have an older iPod running v1.1.2 and when I connect to iTunes it says it needs to upgrade.  I expected that.  Unfortunately it errors every time (an unfortunately there is no error code other than (1) which doesn't seem to be a real code.  It puts

  • Read a Deep Structure

    Hi Abapers, how can i read a Deep Structure? i mean, read a field inside a table that i'ts inside another table. [TABLE1 [TABLE2-FIELD] ]  -> I need read the "Field" Value

  • How to scan in Photoshop CS6

    When I upgraded to Win 7, 64 bit, and CS 5.5, Photoshop would not scan or do a few other things in 64 bit.  I was told to install the Photoshop 32 bit version  ("There is no 64 bit twain scanner, Adobe is working on it meanwhile use Photoshop 32 bit.

  • IMovie .aiff disaster - any ideas?

    I was working with Final Cut Express/Soundtrack/LiveType to edit one of my iMovie clips so I could export it as a Quicktime, then import it back into iMovie, when unexpectedly all of my iMovie audio tracks encoded to .aiff files! Now the entire movie