Stuck with servlets -pls help!!

am connected from my local machine to the server which hosts the tom cat server 3.2. Now i created a simpel html file & put it under webapps dir and frm my brower viwed it. To do the same with my first servlet code i did teh same, but getting page not found error. teh code is frm tutorial so error free.the foll is the code:
import javax.servlet.*;
public void doGet (HttpServletRequest request,
     HttpServletResponse response)
throws ServletException, IOException
     PrintWriter          out;
     String          title = "Simple Servlet Output";
response.setContentType("text/html");
out = response.getWriter();
out.println("<HTML><HEAD><TITLE>");
     out.println(title);
     out.println("</TITLE></HEAD><BODY>");
     out.println("<H1>" + title + "</H1>");
     out.println("<P>This is output from SimpleServlet.");
     out.println("</BODY></HTML>");
     out.close();
Now if i run javac SimpleServelet.java frm my m/c i get the compiler error: package javax not found in importand superclass HttpServelet not found. How exactly do i run thsi prgm in the server & view output in my browser. plsssssssss someone..been struggling for a while :(
thanx in advance.

try this
name the method above
protected void processRequest (HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOExceptionset method doGet as follows
protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
        processRequest(request, response);
    }compile your servlet, put che .class file under /[your_app]/WEB-INF/classes/ and call it writing in the address bar http://[hostname]:[port]/[your_app]/servlet/[your_servlet]
if this doesn't work, try modifying the web.xml file under /[your_app]/WEB-INF/ following this documentation. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/appdev/index.html
HOPE this helps...

Similar Messages

  • Every time i sync in my music in my iphone 5 it would have to back up my iphone and every time i back up the loading bar would freeze then my itunes with crash pls help my iphone 5 coat a lot from my savings

    every time i sync in my music in my iphone 5 it would have to back up my iphone and every time i back up the loading bar would freeze then my itunes with crash pls help my iphone 5 cost a lot from my savings

    Syncing requires a backup as part of the sync process.
    Delete any existing backups in iTunes under Edit > Preferences > Devices (or simply move them to a different folder on the computer) then try a backup or sync.

  • Problem with Eclipse  -- pls help

    hi
    When i execute the application in debug mode with one break point :
    These are the errors i get and the compiler is not stopping at the break point .
    Pls help :
    Thread [main] (Suspended (exception ClassNotFoundException))     
         ClassLoader.findBootstrapClass(String) line: not available [native method]     
         Launcher$ExtClassLoader(ClassLoader).findBootstrapClass0(String) line: not available     
         Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader.loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: not available

    If the compiler is not stopping at your breakpoint, then it probably means that the java code you're looking at and the compiled class file are out of synch. If you're getting a classnotfound, then your classfile most likely is either not there or is not where expected.
    Check the output folder in project's properties (which may or may not be the default), and see if your classfiles are actually there. Perhaps there is some error that is preventing your classfile from being generated (Eclipse sometimes won't even be able to compile), so check the problems dialog.
    Try refreshing your project, and if all else fails, restart Eclipse/delete & create the project again. That sometimes magically fixes things. Otherwise, welcome to the quirkiness of dealing with Eclipse!

  • NetBeans Problem with package, pls help.....

    Hi all, I have a package problem. With the following 2 classes, I can compile fine in dos with
    c:\java> javac WapDev3\*.java
    but wont compile in Netbeans 3.4 Pls help.
    The classes are
    -------------------class sample1 at c:\java\WapDev3------------------
    package WapDev3;
    class sample1 {
    public sample1() {
    System.out.println("hi");
    --------------------class sample2 at c:\WapDev3------------------
    package WapDev3;
    class sample2 {
    public sample2() {
    public static void main(String[] args) {
    sample1 osample1 = new sample1();

    I don't know for certain whether this is causing your problem, but in Netbeans, the package structure is considered to be identical to the directory structure, relative to the mountingpoint, so if your files are in java/wapdev, Netbeans wants you to make the package java/wapdev.
    This can be cured by mounting a subdirectory, using a relative mounting point.
    In your case, you should mount C:\java (I assume you've mounted C:\).
    Good luck.

  • New with Servlets - please help

    Hello:
    I am using JDev to work with JSPs/Servlets .Can someone please direct me how to setup JDev to work with JSPs and Servlets.
    Question 1: I downloaded JDev Full Version which said that it included JDK1.5 . But I don't know where it installed it. I just unzip the folder. Do I have to install JDK differently?
    Q2: Using Tomcat Application Server - it asked to locate the folder where JRE is installed . Where can I get that info.
    Q3 : How to setup Servlets so that I can load a servlet file in the browser. I created a "Hello World" app using Servlets but I can't load it .
    I will appreciate you help.
    THanks

    user517625,
    First, for your information, Tomcat is a servlet container, not an application server. Second, Oracle JDeveloper includes an [embedded] application server: OC4J. So you don't really need Tomcat if you only want to create and test some servlets and JSPs. JDeveloper includes extensive "help" information and sample code that shows you how to create servlets and JSPs.
    Good Luck,
    Avi.

  • I am stuck with my website, help!

    Hey, I am pretty far into my website project. I have come into a brick wall though, come to find out I don't know what I'm doing!!!! Go figure, that's why I have a mac! They make it so easy for me. In a nutshell, my mom is a computer manager for the gov't. So I am familiar with computers, don't get me wrong. I just am not familiar with programming, especially websites. So all I really need to do is create user accounts for my website, that's all I have left to do. Kind of like youtube does for your log in so you can get subscriptions and so forth. I don't want mine to be too advanced, I want it simple but eloquent. I just don't know how to create user accounts for a website, and I'm not familiar with php or anything of that sort. I just want to know if anyone knows how I can add it as a html snippet or anything easier than that even would be appreciated. My last last last resort would be to hire a programmer to do it for me. Anyone have any suggestions?

    bradley2083 wrote:
    > Hello,
    > I am trying to add messaging to my website and I?m
    stuck?
    > What I am using:
    > I am building my website with the help of DreamWeaver
    cs4. I am building my
    > site using PHP and MySQL and I am building my database
    in PhpMyAdmin.
    > What I am trying to do:
    > Add messaging so registered users on my website are able
    to communicate
    > amongst each other.
    > My problem:
    > I am trying to add messaging to my site, but I have yet
    to find any books to
    > teach me how to add this application. Is there a way to
    build my tables and
    > use SQL to build the messaging system on my own? How do
    other companies like
    > facebook build their Inbox messaging systems? Do they
    build the application
    > using a different programming code?
    > I?m more than willing to take the time to learn how to
    successfully add a
    > messaging system to my website, but I need to know where
    to start. For
    > example, what programming I need to learn, what books
    would help out with the
    > goal I?m trying to achieve, etc?Any help will be a step
    in the right direction
    > and I appreciate your time!
    > Thank you,
    > Brad
    Sounds very custom to me, your gonna have to figure it our
    yourself.
    The basic solution would be a table that stores the messages,
    with the
    recipient user id and the sender user id, a column for
    whether its been
    read or not, along with the message body itself. You will
    want a data
    field too.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • 802.1x with wireless - pls help :(

    I am trying to configure 802.1x on my wireless router (877) but no luck. Here is a part of my config. Radius is on Small Business Server 2008
    aaa new-model
    aaa group server radius rad_eap
    server 172.16.1.x auth-port 1812 acct-port 1813
    aaa group server radius rad_acct
    server 172.16.1.x auth-port 1812 acct-port 1813
    aaa authentication login eap_methods group rad_eap
    aaa authentication login mac_methods local
    aaa authorization ipmobile default group rad_pmip
    aaa accounting network acct_methods start-stop group rad_acct
    dot11 ssid xxxx
       vlan x
       authentication open eap eap_methods
       authentication network-eap eap_methods
       authentication key-management wpa'
       mbssid guest-mode
    radius-server host 172.16.1.x auth-port 1812 acct-port 1813 key xxxx
    With this config above I go to my laptop and try to connect like to a normal wiif, I can see username/pass box. I type and it fails. But at least the router tries to go to Radius (I can see a lot of debug messages). On Radius it fails with 'IAS INVALID AUTH'. probably because the card is not set up with 802.1x
    When I remove the line 'authentication key-management wpa' I am able to configure my wirless card with 802.1x but when I try to connect, my router does not contact with Radius at all (I know it as I turned on debug for radius and dot1x)

    Hi,
    Here is the configuration example link which gived step by step procedure to complete the task.. please follow the same and let me know if this helps!!
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a0080608364.shtml
    Please dont forget to rate the usefull posts!!
    Regards
    Surendra

  • Creating lists items form a recordset DWCS5 with php PLS help

    Hi there I have another question about lists with recordset and php.
    Here is my example:
    <ul>
    <li>Let us all live</li>
    <li>Help my soul.</li>
    <li>Please have a wonderfull life.</li>
    <li>Do you want another.</li>
    <li>Will you assist me with.</li>
    <li>Let us go now.</li>
    </ul>
    I have all these lines of text in one table all in rows in my mysql database they all have an id, I need it to display it on my website as my example above, not sure where to start because all the examples i have seen are nested lists can anybody help. When I create my recordset and use the repeat region I get "  Let us all live.Help my soul.Please have a wonderfull life.Will you assist me with.Let us go now."
    here is my code
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_datexdatabase, $datexdatabase);
    $query_rsSwiftPOStableFeatures = "SELECT title, discribtion FROM `table service restaurant` ORDER BY id ASC";
    $rsSwiftPOStableFeatures = mysql_query($query_rsSwiftPOStableFeatures, $datexdatabase) or die(mysql_error());
    $row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures);
    $totalRows_rsSwiftPOStableFeatures = mysql_num_rows($rsSwiftPOStableFeatures);
    ?>
    <div id="content"><?php do { ?>
              <?php echo $row_rsSwiftPOStableFeatures ['discribtion']; ?>
              <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
          </div>
    Regards

    Just change this:
    <div id="content"><?php do { ?>
              <?php echo $row_rsSwiftPOStableFeatures ['discribtion']; ?>
              <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
          </div>
    To this:
    <div id="content"><ul><?php do { ?>
         <?php echo "<li>".$row_rsSwiftPOStableFeatures['discribtion']."</li>"; ?>
         <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
    </ul>
    </div>
    Also I highly recommend reading up on the basics of PHP programing to understand these things because while DW gives you a good starting point, once you want to grow from that you will need to further understand the code.

  • Error updatimg Z10 OS, stuck at 43%, pls HELP!!!

    Today I tried to update my Z10 OS through the web and I found an available update, while the OS was downloading (update in progress) my internet connection was interrupted and it stopped downloading at 43%. SInce then I have been trying to restart the process and it keeps showing me error at 43%, the update process has been unable to exceed 43%. Whenever it gets to 43% it will show me error updating, try again. I have tried to update through the link and I keep getting error messages as well. Please is there anyone with any idea on how I may be able to solve this problem. My Z10 is functioning properly at the moment, may be this is worthy to mention.

    You're doing what I'd suggest already.
    At this point, you should call MTN and ask/tell/demand that they escalate the issue to BlackBerry technical support. They will give you a incident number to track the issue.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Stuck with repairing disk, help wanted

    Hello,
    When i'm trying to veryfy my disk i keep getting this error message:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Illegal name
    Illegal name
    Checking multi-linked files.
    og hierarchy.",0)
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Anybody who knows how i can solve this and repair my disc. Just pressing repair is not an option
    Thanks in advance for anybody who can help me, i really dont know what to do anymore.
    Greetz,
    Timmy

    Just pressing repair is not an option
    Are using Disk First Aid via Disk Utility when booted from your Tiger install disc and not via Disk Utility from your hard drive boot volume?
    You cannot do so if the latter.
    If there is a hard drive directory problem that DFA repair cannot successfully repair which means the problem is significant, then you need a more substantial repair utility such as Disk Warrior but although DW has been known to work miracles where others have failed, there is no guarantee with DW.
    http://www.thexlab.com/faqs/repairprocess.html

  • Need to get rid of persistent images created with as3 - pls help

    I have used the following as3 code, courtesy of Jody Hall at theflashconnection.com .  It's a drag and drop that works great. Problem is the drag and drop images persist when I move on to other frames. How do I clear the images when finished so they don't appear in subsequent frames? Thank you in advance.
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    var sndExplode:explode_sound;
    var sndExplodeChannel:SoundChannel;
    var dragArray:Array = [host1, agent1, physical1, social1, host2, agent2, physical2, social2, host3, agent3, physical3, social3];
    var matchArray:Array = [targethost1, targetagent1, targetphysical1, targetsocial1, targethost2, targetagent2, targetphysical2, targetsocial2, targethost3, targetagent3, targetphysical3, targetsocial3];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
        dragArray[i].buttonMode = true;
        dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
        matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
        currentClip = MovieClip(event.currentTarget);
        startX = currentClip.x;
        startY = currentClip.y;
        addChild(currentClip); //bring to the front
        currentClip.startDrag();
        stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
        stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
        currentClip.stopDrag();
        var index:int = dragArray.indexOf(currentClip);
        var matchClip:MovieClip = MovieClip(matchArray[index]);
        if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
            //a match was made! position the clip on the matching clip:
            currentClip.x = matchClip.x;
            currentClip.y = matchClip.y;
            //make it not draggable anymore:
            currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
            currentClip.buttonMode = false;
            sndExplode=new explode_sound();
            sndExplodeChannel=sndExplode.play();
        } else {
            //match was not made, so send the clip back where it started:
            currentClip.x = startX;
            currentClip.y = startY;
    DRAG AND DROP (I JUST DID THE LAST FOUR FOR THIS EXAMPLE)
    MOVING ON TO NEXT FRAME, YOU STILL SEE THE RECTANGLES.

    Thank you SO muchNed Murphy
    I'm a newbie to AS3 and I was trying to figure it out for past 2 weeks that why did swapChildren or setChildIndex or addChild, all of these made my Target Movieclip remain/duplicate/persist on the stage even after the layer containing the Target Movieclip has blank keyframes. I surfed so many forums and tutorials for the answer but turns out it was my lack of knowledge of basic concepts. I remember checking out this specific forum as well past week but due to it being "Not Answered" I skipped it. This should be marked as a "Correct Answer", The Empty MovieClip did the trick!
    I needed this solution for a Drag and Drop game, so that the current item that is being dragged is above all other graphic layers. And when all items are dropped on their correct targets, there is gotoAndPlay to Success frame label.
    I created a movieclip on the top layer with the same dimensions as the stage and put it at x=0 y=0 position. Instance name: emptymc
    And deleted the emptymc from the timeline during the Success frame label.
    Here is some code I used,
    1. MovieClip.prototype.bringToFront = function():void {
       emptymc.addChild(this);
    2.  function startDragging(event:MouseEvent):void {
      event.currentTarget.startDrag();
      event.currentTarget.bringToFront();
    I didn't know how to put the addChild and refer to the currentTarget in the startDragging function itself, for example
    emptymc.addChild(event.currentTarget);
    - This one didn't work inside the startDragging function "emptymc.addChild(this); "
    Is there a correct way I could have done it properly?
    Thanks,
    Dipak.

  • How To Work With Jtree Pls Help

    I heared about JTree but dont have idea to use it in form6i where i can get
    help or sample form can i use jtree in forms 6i

    JTree is a Java component - do you really mean JTree or do you just want to use the Forms Tree control.
    You'd need to check out the documentation on Java Beans in Forms which is on otn.oracle.com/products/forms
    For JTree documentation try googling...we don't have a JTree example on OTN that I am aware of.
    Regrads
    Grant

  • Im a little stuck with RMI please help

    Ok from the beginning
    Im running jdk1.5.0_09 its located in C:\Program FIles\Java
    The files are held in C:\java
    I have created a simple calculator program Code below:
    Calculator.java
    Calculator.class
    (code)
    public interface Calculator
    extends java.rmi.Remote {
    public long add(long a, long b)
    throws java.rmi.RemoteException;
    public long sub(long a, long b)
    throws java.rmi.RemoteException;
    public long mul(long a, long b)
    throws java.rmi.RemoteException;
    public long div(long a, long b)
    throws java.rmi.RemoteException;
    } (/code)
    CalculatorImpl.java
    CalculatorImpl.class
    (code)
    public class CalculatorImpl
    extends
    java.rmi.server.UnicastRemoteObject
    implements Calculator{
    // Implementations must have an
    //explicit constructor
    // in order to declare the
    //RemoteException exception
    public CalculatorImpl()
    throws java.rmi.RemoteException {
    super();
    public long add(long a, long b)
    throws java.rmi.RemoteException {
    return a + b;
    public long sub(long a, long b)
    throws java.rmi.RemoteException {
    return a - b;
    public long mul(long a, long b)
    throws java.rmi.RemoteException {
    return a * b;
    public long div(long a, long b)
    throws java.rmi.RemoteException {
    return a / b;
    (/code)
    calculatorserver.java
    calculatorserver.class
    (code)
    import java.rmi.Naming;
    public class CalculatorServer {
    public CalculatorServer() {
    try {
    Calculator c = new CalculatorImpl();
    Naming.rebind("rmi://localhost:1099/CalculatorService", c);
    } catch (Exception e) {
    System.out.println("Trouble: " + e);
    public static void main(String args[]) {
    new CalculatorServer();
    (/code)
    calculatorclient.java
    calculatorclient.class
    (code)
    import java.rmi.Naming;
    import java.rmi.RemoteException;
    import java.net.MalformedURLException;
    import java.rmi.NotBoundException;
    public class CalculatorClient {
    public static void main(String[] args) {
    try {
    Calculator c = (Calculator)
    Naming.lookup(
    "rmi://localhost/CalculatorService");
    System.out.println( c.sub(4, 3) );
    System.out.println( c.add(4, 5) );
    System.out.println( c.mul(3, 6) );
    System.out.println( c.div(9, 3) );
    catch (MalformedURLException murle) {
    System.out.println();
    System.out.println(
    "MalformedURLException");
    System.out.println(murle);
    catch (RemoteException re) {
    System.out.println();
    System.out.println(
    "RemoteException");
    System.out.println(re);
    catch (NotBoundException nbe) {
    System.out.println();
    System.out.println(
    "NotBoundException");
    System.out.println(nbe);
    catch (
    java.lang.ArithmeticException
    ae) {
    System.out.println();
    System.out.println(
    "java.lang.ArithmeticException");
    System.out.println(ae);
    (/code)
    Okies now you have my code ill start with the first error
    1. When i try to rmic calculatorimpl i get this error:
    error: Class calculatorimpl not found.
    2. I read somwhere that it auto creates the stubs for you, so i tried running: rmiregistry which ran up fine
    so i ran the server and got this:
    Trouble: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: Calculator
    can you please help

    Code tags are with brackets [] not ().
    You need to specify a classpath either as an ENVIRONMENT value (CLASSPATH=) or with the command line when you start your application (-cp).
    Then you are going to need a policy file or you'll get security errors. Use the standard "policy all" file found in the documentation.
    grant {
        permission java.security.AllPermission "", "";
    };start java
    -Djava.security.manager
    -Djava.security.policy=%YOUR_HOME%\Security\policy.all
    -cp %YOUR_HOME%
    name_of_your_class

  • RMI with JMF - Pls help

    Hi all,
    I am trying to develop some program to allow user to activate video recording over the network. The basic idea of what I am doing is this: I have implement a Object to handle recording from a web cam. The recording work fine on a single JVM. The code follows
    // Get the processor's output, create a DataSink and connect the two.
    DataSource outputDS = processor.getDataOutput();
    try {
    MediaLocator m2 = new MediaLocator("file://c:"+fileName+"." +"avi");
    datasink = Manager.createDataSink(outputDS, m2);
    datasink.open();
    datasink.start();
    In order to achieve the remote invocation of the method, I expose the method as an RMI interface. However an exception : java.lang.RuntimeException: No permission to write files from applets is thrown when the program attempts to execute datasink.open().
    The policy file that was use is as follows
    grant {
    permission java.security.AllPermission;
    Any advise is appreciated. Thanks in advance
    Regards
    Sze Kong

    In the Sun Java control panel, in the runtime parameters box, type
    -Djava.security.policy=c:\mypolicy.policy
    where c:\mypolicy.policy is the policy file you are using.
    Warning : your setting of
    grant { permission java.security.AllPermission; };
    will allow all applets, even ones from the Internet, full access to your machine.
    At least put machine specific permissions in.
    regards,
    Owen

  • Pls help   how to check the condition in java server faces.....???

    Hi All
    I have strucked with code pls help....
    How can i check the codition in java server faces.....?
    like in my Application when user provides the in put like some state name in the next page i have to display some url for that state .......if he provide some other state name it will be different url .....pls help me how can i do that,,,,,,???
    thanks in advance..

    There are certainly ways to do that. E.g. using the rendered attribute, using conditional statements in EL, using a specialized getter for that (lazily loaded if necessary), etcetera. But your functional requirement is unclear, so I can't go in detail with that.
    In the future, please try to write normal English sentences. Don't write like SMS talk and save the periods and commas. The more effort you put in your question, the more chance you will be taken for serious and the more effort others will post in their answers.
    Also, in the future, JSF related questions should be posted in the JSF forum.
    Edited by: BalusC on 12-aug-2008 7:47

Maybe you are looking for

  • How to invoke a web service asynchronously using ws-addressing model?

    Hi Gurus, We are invoking an external web service asynchronously using Oracle Work Flow Business events using the following mechanism - 1)Created a web service invoker event to invoke the web service. 2)Created a subscription that invokes the web ser

  • Calculations not working in browser window.

    I have a .PDF form with several points of of user data input, with other fields in the form doing the math for the user. My issue is that when the user downloads the form, it usually automatically downloads in a browser window and while they can view

  • Tables for tracing the Maintenance Order Operation to Purchase requistion

    Hi Everyone, Can any one suggest appropriate table for finding the link for tracing Maintenance Order Operation to Purchase Requistion for Service Items. My requirement if I give the Order Number, I require Operations in it & PR Item associated if th

  • Pdf never loads in safari, gray screen

    After updating my Safari, pdf's show up as a gray screen.

  • JMF Payload type 33

    Hey guys, i m trying to play RTP stream video but everytime i play, it give me the following error. No format has been registered for RTP Payload type 33 Does anyone has any idea about this?? I am using VLC media player to stream the output. Please h