How i can make valid java appliacation and how

i am novice in java and i want to make good and valid application that i can run from server any body can tell me how i can make this or any link for any project online or build on net with deployment details
A.R

JAXP api can be used to read xml from java
Cheers :)

Similar Messages

  • Can't get java runtime, and applets, running inside Firefox 11.

    I have gone to my Windows 7 control panel and enabled java for the mozilla family,
    which implies the web browser I use, Firefox 11 at the moment.
    I have gone to Firefox/Tools/Add-Ons/Plugins and have enabled the
    Java Deployment Kit 6.0.250.3
    However, when I go to the Oracle Java test page
    http://www.java.com/en/download/testjava.jsp
    It can't detect java working in my web browser.
    The install missing plugins button appears in the top right,
    and while it downloads java, it consistently fails here stating
    that I have the option to install manualy (which I have successfully done already).
    I have the java 6 download manager working, however I can't run applets embedded in the web browser.
    Please, how do I get my java working in firefox for my applets?

    Zachary1234 wrote:
    Yes, 32 bit java and a 32 bit web browser seem to be the only working answer for applets,
    even in windows 7 (and adherence to the firefox browser).No, its not. Its exactly as I said, not what you make of it. If you have a 64 bits firefox, install a 64 bits runtime.
    Let me put it differently: applets work just fine on my 64 bits Windows 7 under a 64 bits Firefox 11 with a 64 bits runtime.

  • Where can I buy Java Card and get the JCOP?

    I have searched this forums to find out where I can buy Java Card and get the JCOP, but most links are disconnected and information is incorrect.
    Recently, if someone purchase small amount of the Java Card and get the JCOP, please share your information with me.
    I contacted the Gemalto, but they only sell big amount of Java Card to customers and I also contacted the usasmartcard.com several times via e-mail, phone and fax but they did not answer for my call. it seems they closed their business.
    I really want the information where I can buy small amount of Java Cards and get the JCOP.
    I will appreciate your reply.
    Thanks

    I searched through google and found the following shops:
    http://www.motechno.com/ibm-java-card-jcop.0.html?gclid=CK_IrtOfkY8CFRF_TAodazMRFg
    http://www.smartcardgroup.com/shop.php
    http://www.smartcardsource.com/
    Regarding the JCOP Tools you should contact NXP. Searching this forum will also help you.

  • How can i use JAVA BEAN and JSP?

    well, i have developed all my web apps by using pure JSP only, i know this sucks, but i dont know how to start on using beans... what directory should i put them into... etc... what are the good programminmg practices/standards/techniques when incorporating beans in jsp???

    Standards are pretty loose, but generally, Beans hold a lot of the backend logic for your JSP. This can include data validation before entering into the database, database inserts, queries, data manipulation. The JSP should really only contain code that will retrieve the data from the bean and appropriately output it.
    As far as using them, you can use the <jsp:useBean> tag in your JSP. As long as the bean is stored somewhere that your classpath points to, you're all set. From then on, you can use it like any other object in your JSP.

  • How to make validation in Bean and select value from another table

    I want to know how to select data from table in backing bean according to primary key i have
    the problem is that
    i have a table Employee_Salary contains Employee ids and their salary
    Empoloyee_Salary table
         Employee_ID      Number
         Employee_salary Number
    And Another table Called Employees
    Employees table
         Employee_ID     Number
         IsManager Varchar2 its value is [*Yes or NO*]
    and other columns that i don't care about this table
    i have on a jsff page an <af:table> this table is editable this is the Empoloyee_Salary table
    *i want to check before save or after insert if this employee is Manager [from Employees tabke(yes or no)] the salary*
    cannot be less that 100
    i want to know how to make this how to select the value from employees table according to the id i have in the employee_salary table how to make this and make this validation
    i have to select IsManager from Employees Table to see if this manager or no
    i want to know how to make this in a bean
    i use jdeveloper 11g
    and my project is ADF Fusion project
    and the page that have the Emplpyee_Salary table is JSFF
    thanks in advance

    You might want to write this code in a validator on the entity object if it should apply from every screen.
    If you want to access view objects from a backing bean the basics are here: http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcservices.htm#sthref918

  • Where can I find java algorithms and classes

    Does anyone here know about places on the net where you can download algorithms and classes written in Java?
    I am looking for a method/class that is able to do the following:
    Given a mispelled word. Find the word in a word list that best matches this word.
    Obviously simple wildcards isn't going to cut it.

    Your best bet would probably be to implement the Soundex or Metaphone algorithms. They're frequently used for word-matching.
    The SOUNDEX algorithm is an algorithm used to convert words into a 1 character, 3 digit code that can be used for phonetic comparisons. More on it can be found at http://www.myatt.demon.co.uk/sxalg.htm
    Metaphone has better performance.

  • Where can I find Java look and feel icons besides those provided in sun?

    thanx

    You can draw your own or download from site like the one shown below:
    http://www.graphxkingdom.com/shtml/doc1.shtml
    ;o)
    V.V.

  • How do I use Edge Animate to make a clickable image which can be used in Author, and which will redirect you to a different page in your ebook?

    If anyone has experience with Edge Animate, I know that I can make an image clickable, and I can insert a url to define where it will go once clicked. But I want to make a widget to use in iBooks Author, that can take the reader to a certain page of the book. Is this possible?
    It all seems very complicated. Make one thing in Edge Animate, then somehow have that reference something in Author, which will finally work in an ebook. I have no clue where to begin.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • How java application can access other java application

    Hi everyone,
    Please help me, I need to know how I can make my java program,
    specifically a servlet, access other java application continuously running a single instance in java virtual machine, and vice-versa.
    thanks in advance

    A java application is just a bunch of classes with one designated as a main class. You can simply ensure the classes are available to the server's jvm and then load and run the "external" program as part of the servlet process.
    If you have full access, and which external program is to be run, you can simply import it in your source.
    If your don't have the details at run time use the java.reflect.* stuff to load and run the class dynamically.

  • Can I make an aperture slideshow and use it in iweb?

    I need to know if I can make an aperture slideshow and use it in iweb (not making it a quicktime movie)? I don't want to use I photo (I know how to make one in Iphoto and put it in Iweb and I dont want to do this). (dont want a .mac gallery either) Please help. thank you!!!

    Aperture slide shows are just for review. They can not be output. TBMK
    Honestly, you've exhausted most of what iLife can do, and quicktime will probably be your output even if you go to Keynote to make your slide show.
    But with Keynote you'll have more control over how the Quicktime is compressed.
    Otherwise, you're looking at the expense AND the learning curve of Flash.
    Maybe someone else will chime in with a 3rd party solution.
    DLS
    Message was edited by: MacDLS

  • How I can make one order analyze from one waveform?

    I have one file waveform with two data, first with analog pulses of the rotation and the one other with the vertical acceleratin. I can make an order analysis and the waterfall. I only obtain to separate the data in two waveforms and make fft?

    I am not sure that I understand your question. This is what I am getting. You have two waveforms stored in a file. You can read them back in and do an order analysis and a waterfall, but not an FFT because you cannot separate the waveforms from each other. Is this correct? If so, how are the waveforms bundled together? Are they built into an array or are they interwoven with each other? We are going to need a little more information to help you out on this issue. Maybe you can post the file and how you are reading it in?
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • Can I make 10.10 look and feel like 10.6 ?

    Hi ... I upgraded my late iMac mini 2009 (2.53Mhz) to 10.10 .
    First, contrary to some posters on these boards, I would not recommend, 10.10 runs very slow .... you are much better off in an older OS (I would love to go back to 10.6)
    Some advantages of 10.10 is that your machine is up to date with the world (where 10.6 is losing support in the real world).
    My biggest gripe with 10.10 : is I can't find things, can't move things ... the finder window is useless ; the machine search in the middle of screen annoys me and limits information and options.
    Is there any way I can make 10.10 feel and look more like 10.6 ?
    thx

    You can set  SystemPreferences->Accessability->Displays to "increase contrast": check this one and then slide the contrast slider to the left completely.
    There was a little app that recersed the scroll direction in the SnowLeopard period for people who did not want the scroll direction of Lion and later: you can try it https://pilotmoon.com/scrollreverser/
    But it will still be very different from SnowLeopard.
    Otherwise you can go back to SnowLeopard if your mac was built in the (Snow)Leopard time, like Pete suggests.

  • Berkeley DB Java Edition and Amazon AWS/EC2, EBS

    In a previous OTN thread titled [BerkeleyDB and Amazon EC2/S3|http://forums.oracle.com/forums/thread.jspa?messageID=2627679&tstart=0] questions were raised about using Berkeley DB Java Edition on AWS/EC2. Specifically,
    (1) Does JE work on AWS/EC2, and
    (2) Can S3 be used as a persistent store for JE.
    To follow up on this, recently I have done some work validating JE on AWS and am happy to report that it works fine (there should be no surprise there). I have run it under 32b and 64b Ubuntu distros with Java 6, but I have no reason to think that it doesn't work on other platforms.
    On the second question, I did no work with S3 as a persistent store. Rather, I ran JE with both the Instance Local Storage and with an EBS volume as Environment storage. In the Instance Local Storage case, AWS/EC2 makes no guarantees of durability if the instance fails. In the EBS case, the durability guarantees are much stronger. Both of these storage mechanisms worked fine with JE.
    I call attention to the performance that I observed with EBS on an m1.large instance type. Raw write/fsync operations were on the order of 1.99 msec which is quite fast. A discussion of this can be found in this [AWS Forum thread|http://developer.amazonwebservices.com/connect/thread.jspa?messageID=111957&#111957].
    Charles Lamb

    Morgan,
    Yes, we currently plan to only offer replication for Java 1.5. Our motivations are split between the speed consideration and the codeline issues. We've seen better performance with 1.5. Also taking full advantage of the type safety and concurrent support in 1.5 can end up affecting implementation choices significantly, and can make 1.4 code and 1.5 code diverge a lot.
    As for bug fixing on the 1.4 releases, we don't yet have an official plan. We care very much about supporting our open source users and have been able to provide backwards patches where critical in the past. However, the cost of backporting between 1.5 and 1.4 may be high for some bug fixes, and we'll probably have to decide case by case.
    Regards,
    Linda

  • Can I use Java Web Start for my situation?

    Hi, we have a client/server application we're about to deploy to many customers, and I'm wondering if we can make use of JWS and/or JNLP. Here's our situation:
    - The server has a database and a small java application (running as a service) which runs scheduled tasks.
    - Clients connect to the database (server) and search/manage data; we've packaged the client so that it appears as an exe (on windows) or as a native Mac application.
    1) On a regular basis (usually overnight) the small task scheduler application on the server will connect (via internet) to our company database and download any upgrade. It then stores it in the local server (in a database blob), and needs to overwrite and restart itself (a download could include an update to the task scheduler program itself). There could be a new task in the update that alters data in the database.
    2) Whenever a client connects to the database, it first checks to see if there is any update (a new jar), and if there is we want to get it onto the local machine, stop & restart automatically, with no user intervention.
    NB.
    (a) The clients will normally be on an internal lan with no internet access.
    (b) The client computers are often switched on and applications start automatically, so the auto-update process needs to be unattended.
    (c) We'll assume that we'll install the client and server with sufficient disk access to update themselves, regardless of who's logged in. Since this application runs on both Mac & windows, we need to consider this since an admin will often install the software but it will sometimes be someone else (with lower privilege) logged on to the machine.
    (d) We want these processes to be seamless with no user IO or gui (the server - if linux or OSX - may infact only have a console, and no gui subsystem). On the client side we see no need to indicate that we've updated the application (it's of no interest to the end-user), although it's likely when it happens the startup splash screen disappears and reappears.
    Can anyone tell me if JWS/JNLP can help to carry out these tasks more simply, or give me any suggestions in general?
    Thanks in advance,
    Phil

    I would suggest storing the install on a network
    drive. This would make it simpler for the clients to
    install off.Thanks for the suggestion. This may be hard to make 'generic' though across multiple platforms. Also in some larger customer sites they may have a dedicated DB server, while at a small site there is only one computer with the DB and client on the same machine; thus creating a network drive on a machine that may not even have networking configured could be a problem.
    You could use JWS, but I am not sure it would make it
    any simpler to implement. It may be more trouble
    than it is worth in your situation.That's what I'm beginning to suspect.
    I would also suggest you consider using a VPN to make
    all these systems accessable, then JWS would do what
    you need for you.I think maybe the part I need to know more about is JNLP and how (if) that can assist in updating the software. Any good tutorials (maybe I missed them on the sun site)?
    Thanks

  • Java Applications and Applets

    Are local Java programs only command line runnable? How can I create exe like programs? I already know about how Java doesn't use compilation, but bytecode interpretation.
    Can applets run locally or only browserly.

    Are local Java programs only command line runnable?Several programs set up batch files to invoke it with java.
    How can I create exe like programs?You can make an executable jar, and the java interpreter is invoked normally.
    I already know about how Java doesn't use compilationIt does use compilation. Java code compiles to java bytecode. This is run on the java interpreter. It doesn't compile down to native machine code, but it IS compiled.
    Can applets run locally or only browserly. Applets can run locally in using applet runner.

Maybe you are looking for