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: *

  • Users: moonoo
  • Order by date
  1. moonoo

    Forcing a File Download

    Hi , I jsp page which has file names with Heyperlinks (these files are stored as BLOBS) in Oracle. After Clicking the File the it calles the Download.Do (actionservlet) and downloads the File to the desktop. But after clicking the linkit asks for Open Save and Cancel options . I don't want to...
  2. moonoo

    Multiple File Downloads

    Hi , I have a jsp page which lists files with check boxes for download . Once i click the check boxes it should ask me the saving location and download the files which are checked(multiple download) . Right now i am able to implement a single file download . But i am not able to do so for...
  3. moonoo

    Help in Encoding a String using Cipher

    Thanks for the Reply . I have this already in by CLASSPATH. I have already checked for the other encoding DES/ECB/PKCS5Padding
  4. moonoo

    Help in Encoding a String using Cipher

    Hi , I am encoding a string using the follwing code Cipher cipher = Cipher.getInstance("DES/OFB/PKCS5Padding"); cipher.init(Cipher.ENCRYPT_MODE, key); byte[]inputBytes = input.getBytes("UTF8"); //Encode byte[] outputBytes = cipher.doFinal(inputBytes); BASE64Encoder encoder = new...
  5. moonoo

    HTTPS Connection in Weblogic 6.1 with SP3

    Hi , I am trying to deploy a jsp in Weblogic 6.1 ( service pack3) in HTTPS Protocol (in default port 7002) . Though i can view the same jsp in 7001 port (i.e http://localhost:7001/test.jsp) , i am not able to do so in 7002 port ( i.e https://localhost:7002/test.jsp) . Is there any extra...
  6. moonoo

    Opening a TXT , CSV,DOC , PDF File from a web page

    Hi , I have a web page where i list files of type txt , csv , pdf , doc . If I click the view button beside the list , it should open the file in the respective program . How do i accomplish this ? Thanks a lot in adavance. Regards Dev
  7. moonoo

    Exporting to Excel Problem( Missing StyleSheet)

    Hi , I have a servlet which outputs to excel or html depending on the User selection . The html format is being displayed correctly . But the while loading the Excel Sheet , it gives error ( Error durring load : And its shows that it could not find the StyleSheet). I am exporting to excel using...
  8. moonoo

    Running a Shell Script from a Web Page

    Hi , I have a requirement like this . On a simple web page on the user clicking the Ok Button I want to run a perticuar script( like csh or perl script) . What is the simplest way to do it . Any help with example will be appriciated. Regards
  9. moonoo

    Substituting Shell Variable in XML

    Hi , I am depolying an application in weblogic . I am compiling the application in Unix Envirinment . In Bash shell i am using some user specific variable for example . export MY_LOGFILE_LOC=/home/amosale/logs/deploy/amosale_tc.log. In My Weblogic.xml i am using this variable as $MY_LOGFILE_LOC...
  10. moonoo

    Substituting Shell Variable in XML

    Hi , I am depolying an application in weblogic . I am compiling the application in Unix Envirinment . In Bash shell i am using some user specific variable for example . export MY_LOGFILE_LOC=/home/amosale/logs/deploy/amosale_tc.log. In My Weblogic.xml i am using this variable as $MY_LOGFILE_LOC...
  11. moonoo

    OnChange Method Of Text Box Not Firing

    Hi I have a requirement like this . I have a Text Box and along it with a gif having a calender control . Normally the user can't type into the text box . If the User selects a date from the control the text box date will change . I want to fire a OnChange Event of the Text Box for some menu...
  12. moonoo

    Control Visibility Of Controls At the Same Place

    Hi , I have a A List Box in the HTML and depending on the value in the List Box I want to display a Calender or a Select Box . I can control in the visibilty in OnChange of the list box where i make the calcnder invisble and the list visible or vice versa . But they appear in diffrent areas as...
  13. moonoo

    "grep" search of Sybase procedures

    Hi , You can do a sp_depends on the tablename which will tell you what are the objects in database referencing that table. Hope this helps..
  14. moonoo

    Writing Where Condition in Sybase Store Procedure

    Hi , I have a requirement like this . I have some 10 conditions in the where clause . And if some arguments are null , then the condition is not to be included in the where condotion. I can write a if else conditon to build the query . But it will be diffrent queries. like If ( condition)...
  15. moonoo

    Old Files Are listed in Directory Listings

    Hi , I am working with Tomcat 5 in Unix enviroment with ant build.When I create a new file its being listed in the directory listings in the (eg:http:servername/html) . But when the File is deleted then also it is beimg listed . How do I take out the deleted file from the directory listings in...
  16. moonoo

    Building Servlet Url

    Thanks it Worked !!
  17. moonoo

    Building Servlet Url

    Hi , I am trying to build a servlet url in a Javascript function like this. function ExportReport() { // colsort is a hidden variable var sortcol = document.forms[0].colsort.value; document.forms[0].action =...
  18. moonoo

    Getting Month Name

    Hi , Is there a function in C++ to get the short month name which takes the month Number . Say I want to pass 03 and get "MAR" in return.. Any help will be appreciated .. Regards Dev
  19. moonoo

    Dynamically Loading Combo Box Values

    Hi I am new to Javascript . I have a combo box(Say ComboB) which i load when i display the page . But I want it do it dynamically on selection of an item in the list (say List A)on the same page . So how do i change the contents of the combo box in the changeEvent of the List Box ? Any help...

Part and Inventory Search

Back
Top