Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.1 KiB

  1. <SCRIPT LANGUAGE=Javascript RUNAT=Server>
  2. function Application_OnStart()
  3. {
  4. var L_OCA3_CUSTOMERDB_RO_TEXT; //Read only customer DB connection
  5. var L_OCA3_CUSTOMERDB_RW_TEXT; //Read/Write customer DB connection
  6. var L_OCA3_SOLUTIONDB_RO_TEXT; //Read only solution DB connection
  7. var L_OCA3_SOLUTIONDB_RW_TEXT; //Read/Write solution db connection
  8. /*This will equal:
  9. OCATest for testing
  10. ' oca.microsoft.com for english
  11. ' oca.microsoft.fr for french
  12. ' oca.microsoft.de for german
  13. ' ocajapan.microsoft.rte for japanese
  14. ' This value should be replaced during localization to point to the correct
  15. ' home URL. So during production, just a minor change to this value will
  16. ' make this site ready for release.
  17. */
  18. L_OCA3_CUSTOMERDB_RO_TEXT = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=web_ro;pwd=!OCA_Realtime_RO*;Data Source=redbgitsql13;initial catalog=KaCustomer3";
  19. L_OCA3_CUSTOMERDB_RW_TEXT = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=web_rw;pwd=!OCA_Realtime_RW*;Data Source=redbgitsql13;initial catalog=KaCustomer3";
  20. L_OCA3_SOLUTIONDB_RO_TEXT = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=web_ro;pwd=!OCA_Realtime_RO*;Data Source=redbgitsql13;initial catalog=Solutions3";
  21. L_OCA3_SOLUTIONDB_RW_TEXT = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=web_rw;pwd=!OCA_Realtime_RW*;Data Source=redbgitsql13;initial catalog=Solutions3";
  22. //web_RO - !OCA_Realtime_RO*
  23. //web_RW - !OCA_Realtime_RW*
  24. Application( "L_OCA3_CUSTOMERDB_RO" ) = L_OCA3_CUSTOMERDB_RO_TEXT;
  25. Application( "L_OCA3_CUSTOMERDB_RW" ) = L_OCA3_CUSTOMERDB_RW_TEXT;
  26. Application( "L_OCA3_SOLUTIONDB_RO" ) = L_OCA3_SOLUTIONDB_RO_TEXT;
  27. Application( "L_OCA3_SOLUTIONDB_RW" ) = L_OCA3_SOLUTIONDB_RW_TEXT;
  28. L_OCAV3_SITE_LCID_TEXT = "1033";
  29. Application( "LCID" ) = L_OCAV3_SITE_LCID_TEXT;
  30. Application( "CORPORATE_REDIRECTOR_VALUE" ) = "914";
  31. }
  32. function Session_OnStart()
  33. {
  34. //'nothing in here at the present time.
  35. }
  36. function Session_OnEnd()
  37. {
  38. //nothing here yet, once we move to big IP
  39. }
  40. </SCRIPT>