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 bkrike 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: *

  • Users: forrozeiro
  • Content: Threads
  • Order by date
  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

    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...
  5. 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 ?
  6. 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...
  7. 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...
  8. 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(...
  9. 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...
  10. 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.
  11. 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.
  12. 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 ? */ ) ) {...
  13. 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...
  14. forrozeiro

    &lt;a title=...&gt;

    Hi, Using the code <a title='description'>desc</a>, I get a square with the text 'description' whenever I put the mouse pointer over 'desc'. Is there a way I can insert line breaks or tabs into the text that is poped up to the user ? Something like: <!-- this doesn't work --> <a...
  15. forrozeiro

    &lt;a title=...&gt;

    Hi, Using the code <a title='description'>desc</a>, I get a square with the text 'description' whenever I put the mouse pointer over 'desc'. Is there a way I can insert line breaks or tabs into the text that is poped up to the user ? Something like: <!-- this doesn't work --> <a...
  16. forrozeiro

    Eliminating the toolbar from the current window

    Hi, Is it possible to make the toolbar, menubar and locationbar of the current window not visible ? I know I can open a new window without them, but so far I could not change them from the current window. I have tried this: self.toolbar.visible = false But it didn't work. Any help on that ...
  17. forrozeiro

    Showing a full description of an option

    Hi, I need a select field that has the following behaviour: when the user points the mouse to an option, a description of that option is displayed to the user. That is similar to the property ALT of an IMG tag. Is that possible??
  18. forrozeiro

    Openning a maximized window

    Hi, Is it possible to open an Internet Explorer 5 or latter window that fills the whole available screen ? In other words I'd like to force my new window to be created maximized. And I have a unusual question too: Is it possible to disable the 'X' (close) button in the upper-right corner of the...
  19. forrozeiro

    Maximum filename in apache

    Hi, I have a jsp file whose name has 94 characters, deloyed to a apache1.3.2-tomcat3.2.3 enviroment. When I try to access it I got a http 404 error message (file not found). Does any one of you know what is the filename size limit in such a enviroment ?? Is it configurable ?? ps: I have such...
  20. forrozeiro

    Forward to URL that contains parameters

    Hi, Please, consider the following pages test.jsp % pageContext.forward( &quot;test2.jsp?bla=2&quot; ); % test2.jsp html body %= request.getParameter( &quot;bla&quot; ) % /body /html When I call test.jsp, using JRun, I get &quot;null&quot;. When I do the same call, using Tomcat, I get...

Part and Inventory Search

Back
Top