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 SkipVought 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. portagal

    JDK compliance on WASD 5

    I have imported a webapp on WASD 5, this webapp is running on tomcat but when i imported it to WASD 5 i have got a bunch of compile errors on my java classes; it is complaining on methods like indexOf(...) called on StringBuffer object or replacefirst(...) method on String object. These methods...
  2. portagal

    tomcat -> out of memory error

    Ok, it worked after all. it turns out if tomcat is started form the Start Menu under windows, setting CATALINA_OPTS/JAVA_OPTS has no effect and i have to start from tomcat-home>bin>startup.bat Thanks, Portgal
  3. portagal

    tomcat -> out of memory error

    Thanks for the reply. I cannot get this working, i have tried different approaches (out of desperation): adding CATALINA_OPTS and/or JAVA_OPTS as my environment variable and i have tried the value with and without qoutation marks and i have tried to edit the catalina.bat file under tomcat/bin...
  4. portagal

    tomcat -> out of memory error

    Hi, I am admining an application running on tomcat 4.1.29/ windows 2000. Recently i am getting java.lang.outofmemory error every now and then. As I checked CATALINA_OPT and JAVA_OPT environment variables are set to following value: "-Xms1024m -Xmx1024m -Xmn512m" Quotations are part of the value...
  5. portagal

    creating .EAR file

    Could anyone help me in creating an ear file out of an application which consist of web app, different jar files, EJB.... I need to move this application and deploy it in a new webserver. Any hint/link to a resource in how to create an ear file would be greatly appreciated. Thanks, Portagal
  6. portagal

    custom error page when tomcat is down

    I am assuming this is Apache's error message and not the browser's; and because of this email address: you@your.address I naturally thought I should be able to some how substitute it with a real email address.
  7. portagal

    custom error page when tomcat is down

    My application is running on tomcat 4.1; when tomcat is down I see the following message. Is there any way to create a custom page to be shown instead of this error message or at least to be able to provide a valid email address for server administrator: Internal Server Error The server...
  8. portagal

    scheduled Vs. on event agent

    Hi Pascal, I posted this problem here by mistake, please see my post titled: "getting error running an agent, only when on schedule not on menu" Thanks
  9. portagal

    getting error running an agent, only when on schedule not on menu

    A simplified version of my code is as following: Sub Initialize On Error Goto ErrorHandler Dim agentLog As New NotesLog(theLog) Dim session As New NotesSession Dim db As NotesDatabase Dim nview As NotesView Dim doc As NotesDocument Dim body As NotesRichTextItem Dim...
  10. portagal

    getting error running an agent, only when on schedule not on menu

    I have an agent (writen in LotusScript) when run creates a new doc using a form and along the way it adds new elements to it such as creating new RichTextItem, sections, tables, text... in one part of the script after i create a new RichTextItem and a section in this item i am appending a table...
  11. portagal

    scheduled Vs. on event agent

    I have an agent (writen in LotusScript) when run creates a new doc using a form and along the way it adds new elements to it such as creating new RichTextItem, sections, tables, text... in one part of the script after i create a new RichTextItem and a section in this item i am appending a table...
  12. portagal

    Strange 400 error

    I am managing an internal site for our company, it runs on Tomcat 4.1.24. Users use the provided links to navigate the site and no one types the address for different part of the site(except for the home page of course) but we frequently and quite randomly get 400 error by randomly i mean the...
  13. portagal

    scheduled Vs. on event agent

    Problem Solved. My Notes Client wasn't set to run scheduled agent -- As simple as that !!!!
  14. portagal

    scheduled Vs. on event agent

    Thanks for your reply Pascal. i am very new in Lotus and greatly appreciate your help, I examined your suggestions: 1- I am not using any NotesUI objects 2- I am trying to run this agent on Local 3- I have set the agent to run on be half myself, so if i don't have the right to run scheduled...
  15. portagal

    scheduled Vs. on event agent

    Hi, My agent is running perfectly when run from menu but when i set it to run on schedule it is not running. This agent is supposed to connect to several different databases and collect some info and create a new document. Any idea why it is not running on scheduel? Many thanks in advance
  16. portagal

    Preventing access to Links on secure site

    i thought you have defined the security for your app. and just asking how to define the secure resources. I am not an expert in this field but i know this much that all have to be defined on your web.xml file: <login-config> which defines what is your authentication method and you also have to...
  17. portagal

    Preventing access to Links on secure site

    i believe restricted resource should be define on your web.xml file, you can update your web.xml file defining a <security-constraint> tag and define <url-pattern> to cover everything on 2006 dir (/2006/*) - of course assuming all material under 2006 are supposed to have restricted access...
  18. portagal

    is any setting needed to view tooltip in IE

    I have a list of links not all of them having title. I am obtaining what i need to show as title dynamically so to keep my code cleaner I am using <span>, however the question is if the problem is due to some kind of precedence issue, don't you think i should have this problem on all machines...
  19. portagal

    is any setting needed to view tooltip in IE

    I am not quit sure what you mean by transparent element, but I have tried it in a simplest form posible: <html> <head> <title></title> </head> <body> <span title = "Text to be seen as tooltip"> <a href="http://www.google.ca"> Google site </a></span> </body> </html> Portagal
  20. portagal

    is any setting needed to view tooltip in IE

    Hi Dan, No I didn't. I still cannt see the tooltip on Netscape and have the same problem on IE in some of our machines, so i decided to go with popup window. Portagal

Part and Inventory Search

Back
Top