Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. forrozeiro

    EJB CMP 2.1 - update question

    Hi there, I have a table with, say, these columns table mytable col1 (PK) col2 col3 col4 I am using a container managed persistence bean do map the table. Versions: EJB 2.1 JBoss 3.2.7 The question is, which is the best way to do an update like this: update my table set.... where col3 =...
  2. forrozeiro

    BIOS doesn't recognize Samsung SP1604N HD

    Hi there, I tried to install a Samsung SP1604N HDD on an Asus A7V600-X motherboard and the BIOS didn't recognize the new HDD. First I tried to install it as a slave. Then I removed my current HDD and install the new one as master, just like the current one. In both cases BIOS didn't recognize...
  3. forrozeiro

    Using DBMS_LOCK in distributed environment

    Hi :) When I call DBMS_LOCK.request with the release_on_commit parameter set to TRUE in a distributed transaction subordinate session I get this: ORA-02089: COMMIT is not allowed in a subordinate I did not commit in the subordinate, I only set for the lock to be released when the...
  4. forrozeiro

    EJB deployment error on WebLogic startup

    Please ignore this thread. I´ve found the solution. Sorry.
  5. forrozeiro

    EJB deployment error on WebLogic startup

    Hi there, I have deployed some EJBs on WebLogic 5.1 sp 13 on a HP-UX, and it says for some EJBs jar files that the file "is not a valid jar file, or does not contain a valid bean". There are nested NoClassDefFound errors in all the stack traces. All my EJBs use classes stored in a jar file...
  6. forrozeiro

    How to connect my pc on the tv

    I´ve got a gforce card with tv-out and can´t figure out how to configure it so it uses my TV as the display. Could anyone help me on that ?
  7. forrozeiro

    Can´t initialize struts on WebLogic 5.1

    domind, Yes, I did figure this out but forgot to write the solution here... sorry. Well, I step into the struts source and realized that the exception was due to a class loader problem. The version 5.1 of WebLogic doesn´t automaticaly find the classes deployed in your application as one could...
  8. forrozeiro

    Can´t initialize struts on WebLogic 5.1

    Hi, When I start the WebLogic 5.1 SP12 server, on which I´ve deployed an application that uses Struts 1.1, I get the exception below. On Tomcat 5 it works fine. I´ve tried either deploing an war file or an expanded directory. Any Help ? Thnx. Ter Mai 25 14:29:34 GMT 2004:<E> <HTTP> Error...
  9. forrozeiro

    Searching method calls in Eclipse

    Hi, When I right click a method declaration in an Eclipse project and select 'search -> references -> workspace', it returns all calls to methods of the same name instead of returning only the calls to the method I specified. Example: Class A { public int getId(); } Class B { public int...
  10. forrozeiro

    IBM DK 1.2.2 bug

    Hi there. I think I've found a bug on IBM Developer Kit 1.2.2 in an AIX 4.3. I would like to know whether anyone of you has experienced this bug. Please consider the following method: public String crazyMethod( long aLongParam ) { .... } When I call the above method like this: crazyMethod(...
  11. forrozeiro

    MissingResource crashs the VM

    Hi there, I am using a resource from which I retrieve Strings to be inserted on my jsp pages. I am using tomcat3.2.3 running on an AIX 4.3 and using IBM jdk1.2.2. Some times, with no reason, the VM crashs and a javacore file is generated with a MissingResourceException stack trace. Do any of...
  12. forrozeiro

    How to use handleEvent()

    jemminger, That's because function b() is called only when the input's value is changed by the user. If the value is changed via code, b() is not called. See: //this does not trigger a call to b() : form.a.value = '1'; form.a.value = '2'; I´ve just found a solution. I just need to do this...
  13. forrozeiro

    How to use handleEvent()

    xutopia, I am afraid that's not what I want. Rather than defining the event handler for the onChange event I would like to call the event handler already defined for that control. Thanks anyway.
  14. forrozeiro

    How to use handleEvent()

    Hi, I have a text input like this: [input type=text name=a onChange=b()] When I call document.forms[0].a.handleEvent('onChange') I get the error 'The object does not support this method or property' (or something like that). What did I do wrong ? Thank you in advance.
  15. forrozeiro

    How to send function and arrow keys

    Hi, I have an applet that connects to an IBM AIX 4.3 host through a socket on port 23 (telnet). How can I find out the character sequences I should write on the socket stream for the function and arrow keys ? Thank you.
  16. forrozeiro

    Detecting page loading completion

    I think I didn´t explain my problem very well. Sorry. Suppose I have links on frameA that load pages on frameB by calling a function, say, loadPage( url , frameB ). I would like loadPage() to behave like this: function loadPage(url,target){ target.location=url; while(...
  17. forrozeiro

    Detecting page loading completion

    Hi there, Is there a way I can detect when a frame has finished loading a page? I have a link in a frame that calls a function which loads a page in another frame. Like this: function loadPage( url, target ) { target.location.href = url; if( loadingFinished( /* params ? */ ) ) {...
  18. forrozeiro

    Hourglass

    Thanks, It worked.
  19. forrozeiro

    Hourglass

    Hi, Is that a way to force the hourglass to be shwon after clicking a link, or to disable that link after clicking it ?? The scenario is: frame A: [base target=frameB] [a href=newlocation]mylink[/a] When the users click on 'mylink', the hourglass doesn't appear, and some of them keep clicking...
  20. forrozeiro

    Frame Targets

    I am used to do this: top.myframe.location.href=newLocation That usually works fine.

Part and Inventory Search

Back
Top