Cheap problem with duke dollars

i have 17 duke dollars but i can not give then
along with questions i ask...
what to do...

At the top of the thread, you should see a link saying "assign Duke Dollars". Click on this, and select how many from the drop-down box. Then click on the button "Assign Duke Dollars".
Next go back to the thread, and by each person's name you should see a little picture of a Duke with a green +. Click on that to assign Dukes to that person.

Similar Messages

  • Problems with Duke's Bookstore Examples (Chapter 3 of the J2EE 1.4 Tut)

    Hi
    Please help me, I am going through the J2EE tutorial (I have the Sun App Server 8 installed on a Win XP Service Pack 2 machine) but am running into problems.
    I'm having a problem with the
    1. asant build and
    2. asant create-db_common
    commands.
    1. asant build
    ===========
    When trying to use the command asant build I get the following problems:
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant build
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    prepare:
    build:
    [javac] Compiling 11 source files to D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\booksto
    re\build
    BUILD FAILED
    file:D:/P.Files%20Ext/MJ%20Ext/J2EE%201.4%20Tutorial%20EXT/j2eetutorial14/examples/web/bookstore/build.xml:54: D:\lib not found.
    Total time: 8 seconds
    I then created an empty folder = D:\lib
    It then seemed to work?? but still could not find targets.xml as below
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant build
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    prepare:
    build:
    [javac] Compiling 11 source files to D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore\build
    BUILD SUCCESSFUL
    Total time: 18 seconds
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>
    2. asant create-db_common
    ======================
    When trying to use the command asant create-db_common I get the following problems (I had to create an empty folder - D:\pointbase\lib to get this far)
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant create-db_common
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    create-db_common:
    [java] java.lang.NoClassDefFoundError: com/pointbase/tools/toolsCommander
    [java] Exception in thread "main"
    [java] Java Result: 1
    BUILD SUCCESSFUL
    Total time: 8 seconds
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>
    Now I know that creating empty folders is not the solution so if anyone has any ideas as to what is wrong PLEASE tell me. I think there is something I need to add to a configuration file or something. I have re-installed the App Server but I still get the same problems. Thanks for your time!!

    Hi
    I have the same problem with the hello2 example, in the tutorial... You didnt??
    anyway maybe you are not setting the j2ee.home.
    somebody named " Jennifer " give me this advise ( i told you this to recognice that i was helped before)
    " Hello,
    You are probably not setting j2ee.home correctly. Please go to the following page and read section Building The Examples. Pay special attention to the Note in that section.
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/About.html
    thanks,
    Jennifer "
    good luck, see ya

  • Search Jtree Problem (Easy Duke dollars)

    Hi all,
    I know that in order to find a node is a tree I can use getNextMatch method given by JTree. However, the problem here is that I want to serach for a child node and I don't know how to... for example...
    Root
    - Child 1
    - Child 2
    - Child 3
    If I search for the root node I would simply do
    getNextMatch("R",0,Position.Bias.Forward);But what if I want to search for Child 1 or Child 3? What would be in my search string?

    Hi,
    To search for a node in a JTree, you may use the breadthFirstEnumeration() method of the DefaultMutableTreeNode and then iterate through that enumeration until the desired node is found or the node is not found.
    You need to have a reference to the Root of the tree as a DefaultMutableTreeNode where the seacrh will begin.
    Let's say that the desired node's data = desiredElement
    DefaultMutableTreeNode root = new DefaultMutableTreeNode(.....);
    java.util.Enumeration enum = root.breadthFirstEnumeration();
    while(enum.hasMoreElements())
    DefaultMutableTreeNode node = (DefaultMutableTreeNode) enum.nextElement();
    if(node.getUserObject().equals(desiredElement))
    //you have found the node in the tree
    //you can get the parent using the getParent on this node as well
    //if you want the search path as well
    //if you reach here, the desired node is not in the tree
    mail me in case of problem : [email protected]

  • Flicker Problems with a dynamic Canvas and scrollpane

    Hello all,
    I'm having some trouble with flickering in a dynamically sizing canvas. Basically I have a new component similar to a text area implemented as a canvas. I put this canvas into a scrollpane and it is updated when a new message comes in. problem occurs both when a new msg comes in and when the scrollbar is used. I get heavy flickering in the component area and no where else. I've tried double buffering, I've looked through some of the old topic threads here and tried a few suggestions but it still occurs. I traced the paint/update calls with printlns into the console and found that only the paint gets called and not the update. I'm thinking that the changing height of the canvas is automatically calling the paint method directly. Any and all help (that works) will be rewarded with duke dollars. I really need help on this one. Below is a cut away of the code:
    CANVAS COMPONENT
    public class IconBox extends Canvas {
    //other methods to handle text processing
    public void append(String text)
    //places text into a vector and calls repaint to add it to
    //the canvas and updates the height of the canvas
    public void update (Graphics g)
    paint(g);
    public void paint(Graphics g)
    // I basically refresh the canvas with new text updates
    // here with g,drawtexts and add a few images with
    // drawimage
    APPLET
    public class ConfDraw extends Applet implements ComponentListener
    newTextarea lC;
    ScrollPane appletScroller
    public void init()
    lC = new IconBox(427);
    lC.addComponentListener(this);
    appletScroller = new ScrollPane(1);
    appletScroller.add(lC,0);
    appletScroller.setSize( 445, 380 );
    public void componentResized(ComponentEvent e) {
    appletScroller.doLayout();
    public void componentHidden(ComponentEvent e) {
    public void componentMoved(ComponentEvent e) {
    public void componentShown(ComponentEvent e) {
    // other methods that send text to IC
    public void update(Graphics g)
    //tried with and without this over ride at this level
    paint(g);
    }

    Create offscreen image & graphics
    eg.
    Image offscreenImg = createImage(w, this.size().height);
    Graphics offscreenG = offscreenImg.getGraphics();paint all ur contents on off screen grpahics.
    eg.
    offscreenG.drawString("Hello", 10, 10);finally paint the off-screen image to the Graphics
    g.drawImage(offscreenImg,0,0,this);This will avoid flickering as whole of the image is replaced at once. Also override update.

  • Duke Dollars Question

    Hi,
    I have posted couple of questions with DUke Dollars. I did not reward them because nobody answered my question. Now i can i use those dollars in my New Posts.
    thanks.

    You can also un-assign them (get them back) assuming Sun hasn't changed the web site lately, but I don't remember exactly the URL you have to hit. Search the forums for "reward.jsp" and see if you can find another post about doing that.

  • How are duke dollars distributed?

    Hi all,
    I wonder.... For the last 2 months, I replied on several messages with Duke Dollars on it. But those Duke dollars were never attributed to anyone. Very often there wasn't even a feedback from the person that posted the message.
    What happens with those dollars?
    Marc

    Don't let others fool you.
    I am collecting all unassigned dukes. Just post the
    threads you have been answering and I'll make sure you
    get those dukes (charging only a small fee).Don't trust him! He said he would collect for me but instead he intimidated the user into giving him all their Duke Dollars!

  • HT4539 I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I down

    I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I downloadeder pro but I don't kno way to do?

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • Problem with MSI X58 Platinum SLI - IOH temperature !

    Hi guys.
    I have this PC configuration:
    - MSI X58 Platinum SLI ( Bios Version 3.8 - http://img822.imageshack.us/img822/6707/161020101249.jpg )
    - Intel Core i7 930 2.80 GHz box ( with Intel Turbo Boost running sometimes at 3.06 Ghz )
    - MSI GeForce GT240 1GB DDR5 128-bit HDMI
    - Corsair 6GB DDR3 1333MHz CL9 XMS3 Triple Channel Kit ( sets to AUTO and running at 1066 Mhz )
    - Corsair CMPSU-750TXEU
    - Ordinary case ( http://img828.imageshack.us/img828/4200/161020101246.jpg & http://img29.imageshack.us/img29/8480/161020101247.jpg ).
    - Windows 7 Ultimate 64 bit.
    I bought my PC components 2 months ago, so they are new.
    Now, guys I think that is a problem with my motherboard. When I turn on the computer in Bios I have this temps: CPU – 30 C (86 F); IOH – 71 C (159 F); System 30 C (86 F) - http://img687.imageshack.us/img687/394/161020101242.jpg. After 2 minutes the temperatures are: CPU – 34 C (93 F); IOH – 82 C (179 F); System 41 C (105 F) and 2 more minutes later the temperatures are: CPU – 34 C (93 F); IOH – 84 C (183 F); System 43 C (109 F). After 30 minutes of doing nothing I have this temps: CPU – 35 C (95 F); IOH – 85 C (185 F); System 42 C (107 F) -
    Guys it is normal with IOH temperature ? I am a little worried about it ( to be honest I am more than “a little” … I am worried a lot ).
    Ok, I know I don’t have a good case but in 3 weeks I should receive this Thermaltake Spedo Advance Case (http://www.thermaltakeusa.com/Product.aspx?C=1121&ID=1829) and I will buy a new CPU cooler ( I don’t know yet wich one – maybe Corsair CWCH70 or Noctua NH-D14 but I have to see the case first … to be sure there is a plenty of space for those coolers ).
    Pls help me with that IOH temperature. It is normal ? What if I intend to make a little OC ( lets say CPU to 3652 Mhz and RAM to 1333 Mhz … but also I will ask for your support ! ) my motherboard will burn ?
    If it is necessary I will contact my retailer and send him back the motherboard but … I like MSI a lot.
    Thx guys for your support !

    Hey guys,  
    Here is a nice cheap alternative.
    Here is my story about the same issue.  I found it after looking at why my computer freezes sometimes. Not very often but enough for me to do some investigation.   I noticed my IOH temp was a whopping 117 degrees Celsius. lol.  Surprised my mobo didn't burn out by now.  I wanted to evaluate the situation with the heat sink and decided to take it off.  After taking it off I found extremely crusty purple compound on board the chipset and the heatsink.  I took me FOREVER to scrape it off. it was almost like a cement which I found odd.  After scraping and cleaning the surfaces with alcohol, I placed some silver compound on and proceeded to put it back on.  
    Well, upon hooking everything back up I was still at 95 to 103 degs.   Now I started to really look at the options to replace this.  I had SLI config which means I had to do something clever with the southbridge as well.  A nice thermaltake chipset solution w/fan and a low profile copper southbridge with shipping was about 45 bucks.  Hmm ... This is a sure fix from the threads I have read and its really kid of expensive to fix a simple defect. the problem is not necessarily with the heatsink not being sufficient.  Its the combo of the compound used vs the amount of pressure applied between the heatsink and chipset.  It was completely unacceptable.  I knew this right away when I was watching the temp and then I would press on the top of the IOH heatsink and I would watch it drop another 15 degrees in less then 10 seconds. The springs are extremely weak and not effective at all in transferring the heat from the NB.
    Here if my fix.  Cost me less than a dollar at the hardware store and it works ideal thus far.  Do this at your own risk.  Doing this will probably void any warranty too.   All my problems are solved and I am running at 57 degrees, YES, 57 degrees with the stock heatsink and no additional cooling.
    For one scrape all that old crap off like I did. Apply your new compound. But when you go to replace your heatsink, use the following method.  The trick is to use metal screws with a mobo washer, original springs from the plastic studs and a nylon locknut.  Use screws that are the same diameter and length (maybe a tad bit longer) as the plastic retainer studs.  Also grab a few of those red nylon mobo washers too, were gonna need them as well.
    After scraping and applying compound, reassemble as follows.  Screw with washer inserted into the back of the mobo so the threads are out front.  The plastic/nylon washer is betweeen the screwhead and the back of the mobo as a insulator. Put the heatsink on. With the threads thru the heatsink already, put the springs on and start spinning on the locknut.  I torqued the nut down on the spring until the spring almost became fully compressed.  The purpose of the spring here is really to prevent you breaking something and at the same time using the max force of the spring since it weak to begin with. Thats why we need to compress it down pretty much all the way. There will be little to no room in the spring at this point.  The heatsink at this point should be pretty solid to the board as well.  I noticed with the plastic studs before the heatsink would wobble if you gave it a little rocking back and forth before.  Not this time. Shouldn't move much if at all.  Remember not to torque down too much. You don't want to go beyond the springs compression. Even if you did by accident, its better then not using a spring at all. If you feel that it starts to feel tight when torquing, you torqued too far. Stop an backup a 1/4 turn or so.  It is also very important to make sure both torques are equal on both sides as well. Alternate sides when torquing down.  I could tell by how much thread I had left on both sides and by looking for any uneven sides.
    To summarize, the compound is a problem no doubt.  After you resolve the compound issue, its all about the adequate pressure between the heatsink and the IOH.  Much like the amount of pressure needed between your CPU and your heatsink give or take. And the pressure that would be as an aftermarket solution like the thermaltake chipset cooler. You dont see cheesy springs on that.  Wake up MSI. Simpy using a more effective spring could save MSI some cash in the long run. I envision a leafsprin design like the thermaltake chipset one.  The heatsink design could be better, sure, but the design itself is not the problem. Replace the heatsinks if you would like to, if your overclocking and stuff.  Funny, this board I have is a refurb too and only had it for a few weeks. Figured they would have done something about it.
    Sorry the pics are not the best. Here is about as close as I could get to the finished product

  • Printing problem with DocFlavor.SERVICE_FORMATTED RENDERABLE_IMAGE

    Does anyone use javax.print for printing ?
    I wanted to print the content of a JPanel, so a created a RenderableImage implementation, but my problem is that my EPSON Stylus Color C60 seems to not support this DocFlavor !
    So I had to use a PRINTABLE, that is not a good thing since it is the same as java.awt.print.Printable : you should trick and workaround with scaled AffineTransform and disabled double-buffering when asking for the print.
    So if anyone succeed in using javax.print to print BufferedImage, please tell me (tutorial,....)
    EDIT : added 10 Duke Dollars
    Message was edited by:
    Kilwch

    I've worked hard to print a complex Gantt chart using both javax.print and java.awt.print packages. As I've to use only Postscript printers, I've implemented Printable and Pageable interfaces instead of RenderableImage. However, the results has been very good, including the zoom feature implemented using the Graphics2D' scale method.
    Look at this user guide:
    http://java.sun.com/j2se/1.4.2/docs/guide/jps/spec/JPSTOC.fm.html
    Hope this help

  • Problems with the jax-rpc testcase from the JWSDP tutorial

    Hello.
    I have e few problems with the hello case from the JWSDP tutorial.
    Everything works fine during the build/compile/installation phase but when I'm accessing the url http://localhost:8080/jaxrpc-hello/jaxrpc, the server wont find the service and I get:
    404 The requested resource (/jaxrpc-hello/jaxrpc) is not available.
    I've trippel checked the environment settings and other properties and I don't know where to go to error check.
    I've tried to install the client as well but it wont detect the service so I guess there is a problem on the server side.
    I'm quite new to the whole "Web Service thing" So I would be happy to get som help.
    Chris

    if you run the tomcat manager application at http://localhost:8080/manager/list, what do you see? I suppose if you have successfully run the ant "install" task after "compile-server" and "xrpcc-server", you will see that your service is registered with its context path, but is not "running". This will be probably because of a runtime error. For further diagnosis of errors like these, I recommend to take a look at the log file at "<%JWSDP_HOME%>/logs/catalina.out".
    If you are satisfied with this answer, please be so kind and assign some of your duke dollars to me ;-)

  • Where's my monthly duke dollars?

    according to the faq "Duke dollars: JDC members acquire Duke Dollars upon registration, then again on a monthly basis. "
    I dont know enough to earn dukes (yet)... so i count on getting this... otherwise i will have to continue being cheap! I dont like being miserly with my dukes : (
    PS While i have your attention, Christmas is coming - so can i make a request for "lots" of dukes?? ; )

    they are hiding under the Chrismas Tree.

  • SDN Forum points vs Sun Forum Duke Dollars

    I believe that a points system is a great way to encourage participation by the community in problem solving.
    With the points system in SDN, however, there is room for abuse, for example, by having people you know award points to you on threads.
    I personally like the points reward system (Duke Dollars) on Sun's Developer Forums. In this scheme, you work with credits. Every user is given a certain amount of points (Duke Dollars) when they join. When you post a question, you can assign a number of Duke Dollars up front from your available credit as a reward to entice responses. You can also accumulate more Dollars by answering threads which have Dollars assigned.
    Every month, Sun gives a gift to the user who has accumulated the most points.
    I'm not sure that this solves the problem of users not assigning points for valid help, but, because users are working with limited credit, it does force them to be careful when assigning points, and prevents abuse as that mentioned above.
    I would like to hear what other people think about this scheme. Perhaps there are aspects I have not considered.
    Regards,
    Martin

    Would a moderator make it more positive? 
    Actually Craig went into each of the forums and published a "rules of engagement".  Maybe that kind of a "sticky note" post would be the place to remind people about the inappropriateness of redundant questions (across various forums) and the confusion and poor sporting behavior associated with "copied" answers.  I can ping Craig with that suggestion to add text if you think it makes sense to "remind" people in each of the respective forums.
    Or..to be a little more provocative, we could suggest that community members who have a good track record of participation, collaboration, and exemplary attitude be given the moderator rights in forums where the activity volume might be too overwhelming for an SAP moderator alone to manage and given the rights to move content to a more appropriate thread.
    This is what I meant about "self-policing".  Also, perhaps the moderators (internal as well as SAP) could identify themselves in a sticky post and invite participants in those designated threads to track "abuses" or issues, thus identifying them and hopefully resolving them publically.
    Strange, it reminds me that in old, Puritanical, America, of the 17th century community culprits were subjected to a public dunking or stocks when they broke the law.  The purpose being that public condemnation sent a clear message to other "would be" misbehavers.... and thus deterred further bad conduct.
    While a rather radical and unpleasant method it was an open way of dealing with abuses to the system.
    Perhaps others can offer less extreme and more effective suggestions here
    Marilyn

  • 10 Duke Dollars if you help me set up tutorial

    After several posts to this forum w/o any success, I am now offering 10 Duke Dollars to get this problem fixed:
    I am trying to work through the j2ee tutorial on a Windows XP platform, specifically the servlets section which requires me to build the bookstore1 example (chapter 11). I am having problems with using asant to compile and package the project. I have been at a complete standstill for about a week now because I cant get the example to run - Im tearing my hair out, so plese help me!!!
    The command I am using is asant create-bookstore-war. This throws about 80 compilation errors because classes referenced within the source files are not found . I therefore know that the compiler cant find the classes (suggesting CLASSPATH problems), but I dont know what settings Im supposed to be using.
    Some info for you:
    I tried adding JAVA_HOME and J2EE_HOME to the environemt variables, pointing to the java sdk (inside the app server) and J2EE application server installation location respectively. This didnt work. Initially I had JAVA_HOME pointing to a seperate installation of the SE SDK I had, but since discovering the SDK inside the appserver, I uninstalled J2EE, J2SE SDK, and re-installed J2EE, using the enclosed sdk as JAVA_HOME. None of this solved my problem.
    I think I know now that the environment variables are not anything to do with the tutorial - this is just for the locations of the J2EE and J2SE SDK command path files - is this correct? In which case, using J2EE_HOME and JAVA_HOME is just for shorthand declarations in the environemtn/system variables?
    (As you can probably guess by now I have spent a lot of time trying out different things!!!).
    I also tried setting the j2ee.home and j2ee.tutorial.home attributes in the build.propoperties file located in <INSTALL>/j2eetutorial14/examples/common. This didnt work. I also tried setting the admin username property in this file, and the corresponding password in the password file (cant remember offhand what its called). Again, no luck.
    In another post, somebody asked for the following oputput from my system:
    D:\J2EE\j2eetutorial14\examples\web\bookstore1>asant listprops
    Buildfile: build.xml
    listprops:
         [echo] Path information
         [echo] j2ee.home = C:\Sun\AppServer
         [echo] env.Path = C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C
    :\BORLAND\BCC55\BIN;C:\Sun\AppServer\jdk\bin;C:\Sun\AppServer\bin;
         [echo] env.PATH = ${env.PATH}
         [echo] Classpath information
         [echo] classpath = .;D:\Packages;
         [echo] Admin information
         [echo] admin.password = ${admin.password}
         [echo] admin.host = localhost
         [echo] admin.user = admin
         [echo] admin.port = 4848
         [echo] https.port = 8181
         [echo] Domain information
         [echo] domain.resources = "domain.resources"
         [echo] domain.resources.port = 8080
         [echo] Database information
         [echo] db.root = C:\Sun\AppServer/pointbase
         [echo] db.driver = com.pointbase.jdbc.jdbcUniversalDriver
         [echo] db.host = localhost
         [echo] db.port = 9092
         [echo] db.sid = sun-appserv-samples
         [echo] db.url = jdbc:pointbase:server://localhost:9092/sun-appserv-samples
         [echo] db.user = pbpublic
         [echo] db.pwd = pbpublic
         [echo] url.prop = DatabaseName
         [echo] ds.class = com.pointbase.jdbc.jdbcDataSource
         [echo] db.jvmargs = -ms16m -mx32m
    BUILD SUCCESSFUL
    Total time: 1 second
    D:\J2EE\j2eetutorial14\examples\web\bookstore1>There must be somebody out there who has set this tutorial set up on Windows XP - please can you give me a dump of your system and environment variables, and any other settings I need (build.properties etc.).
    Many thanks

    Heres the last couple of errors on running asant creat-bookstore-war. All errors are cannot resolve symbol, so im sure its a classpath problem.
    I only have PATH properties set in the environment variables, and the set CLASSPATH only points to my own J2SE packages.
        [javac] D:\J2EE\j2eetutorial14\examples\web\bookstore1\src\servlets\ShowCart
    Servlet.java:147: cannot resolve symbol
        [javac] symbol  : class ShoppingCartItem
        [javac] location: class servlets.ShowCartServlet
        [javac]                 ShoppingCartItem item = (ShoppingCartItem) i.next();
        [javac]                                          ^
        [javac] D:\J2EE\j2eetutorial14\examples\web\bookstore1\src\servlets\ShowCart
    Servlet.java:148: cannot resolve symbol
        [javac] symbol  : class BookDetails
        [javac] location: class servlets.ShowCartServlet
        [javac]                 bd = (BookDetails) item.getItem();
        [javac]                       ^
        [javac] 68 errors
    BUILD FAILED
    file:D:/J2EE/j2eetutorial14/examples/web/bookstore1/build.xml:56: Compile failed
    ; see the compiler error output for details.
    Total time: 8 seconds
    D:\J2EE\j2eetutorial14\examples\web\bookstore1> and heres the build.properties file:
    j2ee.home=C:\\Sun\\AppServer
    j2ee.tutorial.home=D:\\J2EE\\j2eetutorial14
    sunone.home=${j2ee.home}
    admin.password.file=${j2ee.tutorial.home}/examples/common/admin-password.txt
    admin.host=localhost
    admin.user=colr
    admin.port=4848
    https.port=8181
    domain.resources="domain.resources"
    domain.resources.port=8080
    db.root=${j2ee.home}/pointbase
    db.driver=com.pointbase.jdbc.jdbcUniversalDriver
    db.host=localhost
    db.port=9092
    db.sid=sun-appserv-samples
    db.url=jdbc:pointbase:server://${db.host}:${db.port}/${db.sid}
    db.user=pbpublic
    db.pwd=pbpublic
    url.prop=DatabaseName
    ds.class=com.pointbase.jdbc.jdbcDataSource
    db.jvmargs=-ms16m -mx32m Thanks.

  • Need Help:  Problem with JSP setProperty to Bean

    Hi,
    This is my first time posting to this forum so I am not completely aware how Duke dollars work but if anybody can help me I will be happy to give some... whats normal for solving a problem?? 10??
    Anyway... the problem...
    I have a simple JSP with a simple HTML <form> that has a text field and a Submit button. Submit takes the user to the next JSP page however the setter method for property 'user' is never called. I can verify this through an attached debugger.
    I am using Tomcat 5.5, and I never had a problem like this in previous versions of Tomcat.
    I have tried changing the scope of the bean to request however nothing changed. I excluded all my business logic and tested this one more time just to make sure I wasn't inadvertadely screwing with something however this still does not work.
    I am sure I am missing something small but for the life of me I can't figure out what.
    Here is my code:
    index.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JSP Page</title>
        </head>
        <body>
            <jsp:useBean id="something" scope="session" class="com.db.servlet.UserBean">
                <jsp:setProperty name="something" property="*"/>
            </jsp:useBean>
            <p>Select</p>
            <form id="Form1" method="post" action="multi.jsp">
                <p>User: </p>
                <input type="text" name="user" size="20"><br>
                <input type="submit" value="Submit">
            </form>
        <br><p>Or select Single mode.</P><br>
        <a href="tris.html">tris</a>
        </body>
    </html>UserBean:
    package com.db.servlet;
    public class UserBean {
        private String user = null;
        public UserBean() {
        public void setUser(String user) {
            this.user = user;
        public String getUser() {
            return user;
    }

    Oops!
    I not only realized my mistake, I also accidentally posted this in the wrong forum. I meant to post in the JSP Forum.
    For reference, what I did wrong was I placed my setProperty tag in index.jsp rather than placing it in multi.jsp (the file specified in the form action).
    Everything works now.

  • I'm not being given new Duke Dollars

    Hey all,
    I read through the FAQs and they say I'm supposed to get 10 Duke Dollars each month as long as I login at least once a month. I've been logging in and helping others with the little bit of knowledge I have (I'm still a beginner).. but I'm not getting any new Duke Dollars..
    Is anyone else having the same problem?
    Kenny

    Oh Great, I wish I had known that before I gave all of
    mine away... sigh how are newbies supposed to get
    questions answered? I certainly can't answer other
    people's questions to get dollars... I'm a fricking
    newbie!I never answer questions based on dukes. I don't believe most people do either. So it shouldn't matter.
    And even as a newbie it might be possible for you to answer some questions.

Maybe you are looking for

  • Calendar Host doesn't show up in WGM

    When I edit the advanced settings for a user in WGM, I can't choose a host in the 'Enable Calendaring' drop-down, as it says "No Calendar Host Selected". I configured iCal Service in SA such that "Host name" is the servers host.domain.com name I have

  • Filter IDoc segments

    Hi, in a HRMD_A IDoc I want to transfer segment E1P1001 only if field RSIGN equals 'A'. What are the steps to configure this scenario? Please describe the steps instead of sending me links (as I know them already). Thanks and regards Patrick

  • A Required COM Add-in program for XL Reporter has not been loaded and ....

    A Required COM Add-in program for XL Reporter has not been loaded and prohibits Microsoft Excel from running. For more information, click help. XL 2007, with the Trust level for macros set to minimum. SBO 2007 PL 42. Thanks Charles

  • Snow Leopard 10.6.5 causes iMac wifi hub problems

    I have used my iMac's Airport feature to temporarily make my iMac a WiFi hub for our iPad for several months. It worked like a charm. We'd just click the Airport icon to turn it on when we needed it and then turn Airport off when we were done with th

  • Service info records

    All SAP Gurus, As we have Purchasing info records, for materials. Similarly for procuring services, do we have anything like service info records? If yes what is the path to maintain/create those? Regards,