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 strongm 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. Jay1Roy

    Default message Expiry on MQ Queue level.

    Greetings MQ Gurus... I have a queue which is stacking up with orphan messages that have been returned after the timeout value in the application. I can’t get the application changed to set the MQGets to use expiry. And the application retries after sometime if it didn’t get a response anyway...
  2. Jay1Roy

    trim(), startsWith() and endsWith() in JavaScript?

    All programmers who use JavaScript at some stage get frustrated searching for some standard functions that are simply not built into JavaScript! Also if you manage to write your own version for it, the call isn't as neat as the standard ones. eg. calling the in-built substr() function would...
  3. Jay1Roy

    Trouble with Stream downloads from JSP on XP SP2

    Hi all, I have a page that exports data to a file (in .CSV, .TXT, etc formats) on client's PC. Everything was fine until Microsoft released SP2 for Windows XP. The home page of the application is a regular browser page and when the user enters a valid user id/password, a popup window opens...
  4. Jay1Roy

    unterminated string constant ???

    This sure is a common error... I have found this happening in cases where the data is being fed to the java script like a name for e.g. Mark Kelly works fine but as soon as it’s Mindy O'Grady it crashes... the single quote is the culprit… as the variable assignment may be as follows: Var uName =...
  5. Jay1Roy

    Adding fields dynamically using JavaScript

    Easy way is to load all fields but have the optional ones hidden by default. Only on a certain condition do they show up. You can combine JavaScript and Styles for this. You can always have an onchange event written for both the date fields and check them when either of them changes. Cheers! Roy
  6. Jay1Roy

    ServerSockets and Proxies using Authentication.

    Hi, I am trying to write a test utility that sits between a client and a web server and writes to a file all pages/requests going up and down. This is fine when I work locally or even through a proxy that doesn't use authentication. Now I need to use it on a proxy that needs a user ID and...
  7. Jay1Roy

    How to read values of the system's registry

    Hi all, Here is a small piece of code that reads any key/value from registry. This program will compile right away (Win32), tested on VC++6.0 . #include "windows.h" #include <winreg.h> #include <stdio.h> int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE...
  8. Jay1Roy

    How to execute a servlet request from javascript?

    Hi, Some facts about servlets: 1. Servlets execute before the pages loads. 2. There is no dynamic communication between the page and the servlet. 3. If you need some info to dynamically passed and processed by a servlet, you’ll have to submit and reload. To get a text back from a servlet, try...
  9. Jay1Roy

    HELP - JSP - Button Click to populate TextArea

    Asaabi, Try this: out.write(&quot;<TEXTAREA id=\&quot;txtSQLRes\&quot; >&quot;); out.print(mySqlObj.getSQLResult()); out.write(&quot;</TEXTAREA>&quot;); Good luck![thumbsup] Roy.
  10. Jay1Roy

    Divert Dialup traffic to proxy on LAN! (**Tough one**)

    Hi &quot;thedaver&quot; Thanks for your reply. I’ll give you a particular example of software that uses dialup connectivity instead of going through proxy. Achilles is ”middle-man” software that sits between the browser and the web server and records/modifies information sent between them. This...
  11. Jay1Roy

    Divert Dialup traffic to proxy on LAN! (**Tough one**)

    Dear friends, I connect to the Internet through my corporate proxy and have my IE point to it. Now the trouble is I need to run some utilities that don’t understand proxies but work only with dialups. Not to mention, the proxy requires authentication and therefore failing some utilities that...
  12. Jay1Roy

    IE 6.0 on Win2k stopped applying CSS!!!

    Mr Einstein, You are f*** right [2thumbsup] and I am so happy to get my colors back. I was so depressed that I thought the only option is to re-install my OS which I never want to do. Thanks a million... you sure get my vote for that. Cheers [wavey3] Roy.
  13. Jay1Roy

    IE 6.0 on Win2k stopped applying CSS!!!

    Dear MrBelfry, Thanks for your help, it was a useful info alright but since I installed that SP, even my windows system has gone nuts. May components that depend on IE have gone black and white with extraordinarily big fonts! Even the Microsoft site isn't showing up properly on my IE! Netscape...
  14. Jay1Roy

    IE 6.0 on Win2k stopped applying CSS!!!

    Hi guys, Last week I happened to update my Win2k with patches and unchecked the &quot;keep a backup&quot; option. I updated my IE 6.0 as well. Since then, my browser and some windows programs that were integrating IE dont apply Styles and all appear in blunt defaults. No proper coloring, no...
  15. Jay1Roy

    Bizarre IE behavior

    Hi CoderMan, There is a quick fix to your problem. Try zipping (.ZIP) the files as they are generally in the default MIME list will eleminate the download issue. Hope it helps! Cheerio Roy.
  16. Jay1Roy

    1 Web Server connecting to 2 JRun srvrs (failover, alternate boxes)

    Hi guys, I have trouble failing over two JRun3.1 servers. Following is the description, please help! Scenario: There are TWO instances of JRun on two different hardwares (with different IPs). There is a virtual IP that can point towards either of them when need be, like a crash of one server...
  17. Jay1Roy

    Hi guys, I am not sure if this i

    Hi guys, I am not sure if this is the right place to put this question,but anyway... I have trouble failing over two JRun servers. Following is the description, please help! Scenario: There are TWO instances of JRun on two different hardwares (with different IPs). There is a virtual IP that...
  18. Jay1Roy

    Hi guys, I am not sure if this i

    Hi guys, I am not sure if this is the right place to put this question,but anyway... I have trouble failing over two JRun servers. Following is the description, please help! Scenario: There are TWO instances of JRun on two different hardwares (with different IPs). There is a virtual IP that...
  19. Jay1Roy

    writing variable length structs #2 URGENT HELP NEEDED!!

    Hi vlakas1981, This is a very fundamental problem you are stuck in to. You are having a pointer in your structure, and I guess you know what a pointer contains? Its just an address. There is no information other than the starting address of the memory block a pointer points, like its size. So...
  20. Jay1Roy

    JCrypto 3.3 on Netscape!!!SOS

    Hi Folks, I need to run JCrypto3.3 on Netscape browsers. I know its old but that's what the client wants to use. I must make it move on Netscape... I got it working on IE. I need to know if its not supported on NN is there any alternate way? A custom JVM installation or something? thanks in...

Part and Inventory Search

Back
Top