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: samit700
  • Content: Threads
  • Order by date
  1. samit700

    temp web space for a week

    Hi, I want to upload data from my computer to a secure web space for a week before I get my new computer. Can anyone recommend some good (Secure and Reliable) sites? thanks, Samit.
  2. samit700

    differences between cookie specifications

    Hi everyone, Does anyone have a clear understanding of differences between cookie1 (RFC 2109) and cookie2 (RFC 2965) specifications and how the latter offers more flexible cookie handling? It would be great if we could enumerate the differences between the two specifications. Any help or...
  3. samit700

    EJB QL

    Hi, Could anyone please tell me if it is possible to write EJB-QL on multiple tables without specifying CMR fields and the syntax for it? thanks SJ
  4. samit700

    Excel grid values formatting

    Hi, I want to create a chart with the following set of values X Y 1x1 323 2x2 4234 3x3 32323 4x4 323232 I am using XY scatter chart but the chart displays the X-grid values as 1,2,3,4 instead of 1x1,2x2,... Is there a way to display the values...
  5. samit700

    Grid Values in custom format

    Hi, I want to create a chart with the following set of values X Y 1x1 323 2x2 4234 3x3 32323 4x4 323232 I am using XY scatter chart but the chart displays the X-grid values as 1,2,3,4 instead of 1x1,2x2,... Is there a way to display the values...
  6. samit700

    win2k network domain problem

    Hello, I have just removed network domain from my OS and now running everything locally. But there are many network mappings that are still present in the computer due to which programs start very slow, installations fail, etc. since the connection to network domain controller is no longer...
  7. samit700

    reset windows 2000 admin pass

    Hi, I am using a Dell laptop with Windows 2000 OS. The laptop does not have an internal floppy drive or a cdrom drive. I need to reset my admin pass but I dont recall my old pass. All I have is a USB port so how should I go abt doing this ? I have come across some suggestions but all require...
  8. samit700

    excel chart with two series

    Hi, I am trying to create a line chart in excel with two series. Consider the following data: np time1 time2 1 1000 100 2 900 90 3 850 80 4 700 70 5 600 60 6 400 30 7 300 10 8 270 5 The first series is plotted correctly but the second series is completely wrong. I was wondering if someone else...
  9. samit700

    C memory profiler

    Hi, I am looking for an advanced memory profiler for C programs. I need to study the memory model including alloc,dealloc,realloc,accesses,etc. of certain benchmark programs, find bottlenecks and patterns which causing delay at various points in the code due to thrashing, too many disk...
  10. samit700

    URL Encoding url

    Does anyone know the best way to automate the encoding of urls so that they work on most systems. The java.net.UrlEncoder.encode encodes URLs which do not work in most browsers. It also uses + for spaces whereas the browser prefers %20. What is the best way to get url encoded ??? thanks, samit
  11. samit700

    save microsoft word as html

    Hi, I am trying to write a VB script to save a specified microsoft word document as htm (filtered html) format. But I am getting an error. Could anyone please look into the syntax. I am not very familiar with VB so not sure whats wrong. oDoc.SaveAs folderToSave & curFileName & ".htm", 10 The...
  12. samit700

    Struts FileUpload

    Does anyone know where I can find information on file upload using Struts. I tried to write a simple action that will upload a file and process it but it is failing... sample code wil be great
  13. samit700

    classpath problem

    Hi, I have an " application properties " that I use in my actions and classes. I place this file in WEB-INF/classes directory which is supposed to be in the classpath of the web application. But I am getting "File not found" exception when I try to read the file using: File f = new...
  14. samit700

    log exception trace

    Hi, I am using log4j for logging in my application. How do I log the full exception trace in the problem. the only available method is - log.info(e.getMessage()) which only gives a basic error message, not the trace. thanks, samit
  15. samit700

    Log Exceptions

    Hi, I am logging my exceptions in my log file. What is the best way to log an exception into the log file using log4j. for example: try { --- throw e; } catch(Exception e) { // how to log e into log file } I don't want to log only the message but the full stack trace. Thanks, Samit
  16. samit700

    logging in Struts

    Hi, I am using the log4j framework for logging in my application. I am specifying my own custom log file in the log4j.properties file. But somehow Struts logs so many of its own errors and debug messages to my log file. How does Struts discover the logger I define in my application. Also how do...
  17. samit700

    Different log file when the server is restarted

    Hi, I was wondering if I could have a different log file whenever the application server (Tomcat) is restarted. Right now whenever the application server is restarted, the log file is over-written and all previous logs are lost. How can I create the log file name similar to ones that Tomcat...
  18. samit700

    setting error page

    Hi all, I am trying to set my error page for my application. This is what I have in the web.xml file: <error-page> <error-code>500</error-code> <location>/error.jsp</location> </error-page> But whenever a server 500 internal error occurs, Tomcat still displays its own built in error...
  19. samit700

    displaying messages using &lt;html:messages&gt; tag

    Hi, I am following the standard jakarta struts API to display action messages in my jsp page. But for some reasons, it is not displaying any action messages. However <action:errors> are working fine. There is no log for this problem so I can't figure out what the problem is. This is what I am...
  20. samit700

    JavaMail authentication

    Hi, I am trying to use JavaMail to enable sending and receiving mails from my application. First of all I am not able to understand the basics of JAF (Javabeans Activation Framework) and why do we need it for JavaMail. Could someone please leave a line or two on this. Another thing I could not...

Part and Inventory Search

Back
Top