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

    Need Help with Spring i18n

    Hello All !!! I have got a problem with spring, could not understand where should i redirect this to.. We are using Spring framework's ResourceBundleMessageSource, to use i18n feature, now my requirement is to have the errorMessages out of my jar, and may not be necessarily on classpath, so...
  2. SwapSawe

    Single Session at a Time

    Hello All !!! What is the best way, performance wise, to ensure, one user can initiate only a single session and if he tries to initiate another session, while logged in, he should get an error page, saying your session is currently active? One of the ways I could think of is keeping...
  3. SwapSawe

    Checking $JAVA_HOME in Build Script

    Hi All !!! I have used tomcat, jsp, servlets to build my application under FreeBSD Unix Environment. Now I intend to produce a build script such that the user can get war file by running a simple "./BUILD.sh". I am not considering using ANT because, the user might be aversive to using...
  4. SwapSawe

    Timeout not supported for HttpURLConnection in Java1.4.0

    Hi All !!! I am trying to create a program to connect to some server wherein, I intend to implement time out. However I have observed that this feature is supported by Java5.0 API, but sadly its missing in Java 1.4.x, which happens to be my production environment. If any of you guys...
  5. SwapSawe

    Web server to shift between 2 NICs

    Hi !!! A situation which has stumped me. Scenario - The web-server running with two NICs hence, two IP-address. Now the Webserver is listening on one IP. Requirement - The Web server should be intelligent enough to shift to another IP, in case the first NIC fails. I do not know if...
  6. SwapSawe

    Proxy issue.

    Hi there!!! I have a strange issue, at hand Scenario: Our clients have three LANs guarded by three different proxy. We configure their IE to match appropriate proxy and the applications run fine. Now they have this "bad" habit of pulling out workstations from one LAN and hook it up...
  7. SwapSawe

    Problem with web.xml file.

    Hi !!! I am using the following web.xml file since long but since the time that I have added these two new entries for index1.jsp, AddWish and modified this one Index Servlet. The AddWish and Index servlet work on Development PC with Linux, but do not work on Testing environment under...
  8. SwapSawe

    The requested resource (myjsp/first.jsp) is not available

    Hi !!! I have installed Tomcat v5.0.25 and was able to surf through the pages in $CATALINA_HOME/webapps/examples but when i created my own directory $CATALINA_HOME/webapps/myjsp and put a simple HelloWorld println in it. I got the following error >> HTTP Status 404 - myjsp/first.jsp type...
  9. SwapSawe

    The requested resource (myjsp/first.jsp) is not available

    Hi !!! I have installed Tomcat v5.0.25 and was able to surf through the pages in $CATALINA_HOME/webapps/examples but when i created my own directory $CATALINA_HOME/webapps/myjsp and put a simple HelloWorld println in it. I got the following error >> HTTP Status 404 - myjsp/first.jsp type...
  10. SwapSawe

    Need help for CDONTS object.

    Hi all !!! Why this code won't send me mail. <%@ Language= VBScript %> <% Option Explicit %> <HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <% Dim myMail Set myMail= Server.CreateObject( &quot;CDONTS.NewMail&quot; ) myMail.From= &quot;swapnils@convergelabs.com&quot; myMail.To=...
  11. SwapSawe

    Unable to run Applets in IE

    Hi All!!! Its a strange situation for me that I am unable to run Java applets in my IE, when I have already made the required changes in Tools/Internet Options/... to enable Java Applets (actually that was allready checked). I am running IE 5.0, with jdk1.3.1. It would be extremely helpful...
  12. SwapSawe

    newbie question disabling a Button

    Can we disable a button in HTML depending on a condition? Regards, SwapSawe 8-)
  13. SwapSawe

    Performance Parameters

    Hi!! Actually I am working on a code where I am required to know what percentage of CPU is being used and how much memory is used at current point of time, as I m executing the program. If I am not clear lets talk something through example, when we go in the task manager in Win NT the...
  14. SwapSawe

    Which Win API to use?

    Hello, Dear All, I wish to use Windows API to access the following information through C Program : Software currently running. System Up time. Numbr of Process Loaded, Number of Process Running. I hope i m able to make my question clear.... coz it cannot be more clearer than the...
  15. SwapSawe

    Setting system variables on Win 2000

    Dear all this is a prog. which means to turn the CAPSLOCK on. This prog works fine in Win9x, WINNT, DOS but when I tried it in Windows 2000 - DOS it simply didnot work. the code follows - int main() { int *p; p=0x417; *p=65; } I wud also like to know how to access the system variables which...
  16. SwapSawe

    Signal Handling

    Dear All, I am required to send a signal from one program to another program so as to execute the specified function. I am familiar with raise() and signal() ie. what they do. But I am unable to use them. Can anyone be kind enough to give me a sample source code. I am posting this again coz...
  17. SwapSawe

    Signal Handling

    Dear All, I am required to send a signal from one program to another program so as to execute the specified function. I am familiar with raise() and signal() ie. what they do. But I am unable to use them. Can anyone be kind enough to give me a sample source code. Thanx, SwapSawe.
  18. SwapSawe

    Tower of Hanoi.

    Hi Friends !!!! Can you help me with algorithm of Tower of Hanoi using Recursion. Thanx, SwapSawe.
  19. SwapSawe

    Callback Function in C

    Can you help me regarding callback() function, how it is used and what its for.

Part and Inventory Search

Back
Top