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. Dynapen

    CVS Login Issue: Permission Denied

    I am getting the following error when trying to connect to the CVS server instance in created on my Fedora Core 5 box. cannot open /playground/cvs/CVSROOT/config: Permission denied I have read all the postings I can find related to this but I can't find the answer. Server cvs version...
  2. Dynapen

    CVS UPD -r to replace on changed files.

    Here is the problem. My office is finally implementnig some automated build tools, (cruisecontrol), and they have me workig on it. Their build process for test builds goes like this. Checkout everything tagged from the last release. Then add on to that all files that have been tagged for the...
  3. Dynapen

    Can we use both RollingFileAppender and DailyRollingFileAppender

    isnotmehere- Can you let us know if you found a answer? This could be very helpful becuase it would allow me to keep my daily log files trimmed down in size. If not, I might look at extending the daily rolling file appender myself, so let me know what you are looking for so I can try to...
  4. Dynapen

    Save log files past restart

    I am using log4j on JBoss 4.0.2. I am currently using the daily rolling file appender so that I get a archive copy of each days's log files and have a auditable history. The problem I am experiencing is what to do when the server has to be restarted. Our server experienced a problem @ 4:00 AM...
  5. Dynapen

    Hyperlinked Images

    A co-worker, when dynamically building a PDF to display on the browser, found that if he requested the URL (.do for a struts action in this case) through Firefox, it only happened once. In IE, the request came through twice. More than likely what you are seeing is IE trying to validate some...
  6. Dynapen

    Hyperlinked Images

    I don't equate Struts creating a input box to IE not being standard. I equate the fact that it worked correctly on Firefox (a standards-adherent browser) and not on IE (a non-compliant browser) to it being a IE problem. And my guess would be that Opera, Gecko, or almost any other browser would...
  7. Dynapen

    Hyperlinked Images

    Actually I found it, was mainly becuase I overlooked something. The Struts tag <html:image> was correctly displaying the image, and everything else, but it also create a image type input box in the source. I just didn't look at it closely enough. Turns out it just another case of IE not being...
  8. Dynapen

    Hyperlinked Images

    I will try to paste more of the full code later. BillyRay- Can't escape the ? becuase Struts is actually generating the link. But even in HTML, the ? is reserved, and I have a number of other links with querystrings that work fine. The image links work fine once I make them text with out...
  9. Dynapen

    Hyperlinked Images

    Here's the problem. Website is a issueTracker. Uses a roster type list of issues, with some links in the last colums for "delete, edit, etc...." Currently each link is done with a image, <a href="test.do?id=8"><img src="/images/edit.png"/></a> Pretty basic stuff. Image shows correctly, and...
  10. Dynapen

    Java Regular Expression Problem

    Using the regexp package from jakarta, I am implementing a profanity filter for a application I am working on. Yes, I could have done this using normal string checks, but this will get used by a file load process, that may run it 10,000+ times in a single file load. So becuase regular...
  11. Dynapen

    XSL Question

    Here's what I have. Receving applications. Each XML file will contain multiple applications for the same person. Each Application can contain multiple XML file will look something like. <application> <event> <event_code>1</event_code> <event_desc>Rejected</event_desc>...
  12. Dynapen

    Reading Images from Hard Drive

    I will definitely check into that.
  13. Dynapen

    jakarta struts and validation

    Just set a property in the request/session/ActionForm to true that shows the validation failed. Then wrap your html in a <logic:equals> tag that tells it which style's to use. <logic:equals property="validationFailed" value="true"> <p color=red>Test</p> </logic:equals> <logic:notEquals...
  14. Dynapen

    Reading Images from Hard Drive

    I guess that's what I am going to have to do. I was hoping that maybe the ServletContext might have a mechanism to do the translation for me, the same way the webserver does. Mainly becuase if I do a string replacement then I have a issue with the site translating things correctly if I come from...
  15. Dynapen

    Reading Images from Hard Drive

    Becuase it's for a photo gallery, I don't want to have to know all the folders or images taht exist. I want Java to read through the file structure and get all the images that exist. The pass up a collection of Strings that represent the file path to the JSP. That way the JSP can iterate through...
  16. Dynapen

    Reading Images from Hard Drive

    I have them inside they webapp. They site in a images folder at the same level as the folders that contain teh JSp's. But becuase I want to use Java to simply display all images that are in that folder (without knowing which ones are there) I have to be able to tell the java code how to make...
  17. Dynapen

    Reading Images from Hard Drive

    I am trying to build a photo gallery into my site. I have all the images located in a folder under the site root Site/Images/etc..... Site/WEB-INF/classes/etc..... The images folder,as shown above is at the same level as my WEB-INF. What I need to try to figure out how to do is determine the...
  18. Dynapen

    Error when trying to retrieve data by user id

    Good check is to force the page to spit out the SQL before you run it. Response.Write strSQL Response.End This will show you exactly what the text that is going to the DB is. Cut and paste that into the DB SQL Editor,and run it. If it breaks, then you can track it down on the DB side. If it...
  19. Dynapen

    Taglib Needed

    I am working a page that will take a list of imageVO objects. (imageVO is a simple bean that contains the filename, and path of a image file on the HD. ) and display them in a HTML table. What I am tryiing to do is find a good way to determine how many imageVO objects are in the collection, and...
  20. Dynapen

    Control desktop from laptop without Terminal Services

    That's what I have been finding out. Thanks anyway.

Part and Inventory Search

Back
Top