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

    Download email attachements from MS Exchange Server automatically

    Hi, Is there a way to automatically download attachedment files from Microsoft Exchange Server and save it on a filesystem in some specified folder. I want to automatically download attached files when a new email arrives from a specific contact. Don't want to delete the previous emails just...
  2. sheed

    Automatically download attached files from MS Outlook when new email

    Hi, Is there a way to automatically download attachedment files from Microsoft Outlook and save it on a filesystem in some specified folder. I want to automatically download attached files when a new email arrives in Microsoft Outlook. Is it possible to achieve this using java. Thanks
  3. sheed

    How to use hbm2java and cfg2hbm in HIBERNATE

    Hi, I am new to hibernate and need some information. I looked at several examples online and tried them too. One thing I can't figure out is how to use cfg2hbm and hbm2java, didn't find any docs., can someone point me to some tutorial that explains how to use these. I see following text on...
  4. sheed

    XML Parse error

    Hi, I have a following code and need some help. When I try to run it it gives me the following error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.ArrayList.RangeCheck(ArrayList.java:507) at java.util.ArrayList.get(ArrayList.java:324) at...
  5. sheed

    Check folder and files modified in last 5 days

    Hi, Need some help in figuring out how to find out if the folder is modified within last 11 days and then going through the folder content and checking if any of the files are modified within last 5 days. Here is the code I am trying but some how it doesn't work: #!/usr/bin/perl # Check if...
  6. sheed

    Find Directory Timestamp

    How can I get the timestamp of a directory
  7. sheed

    EDI transactions flow

    I am new to EDI, can someone please tell me if I have 837,835,270,271,276,277 what is the flow of transactions i.e. which goes first and what I get back kind? Outbound 837 in response what do I get? are 270/271/276/277 used for 837? when is 835 used? can someone kind of give a layout of what...
  8. sheed

    Trigger help needed!

    Hi, I am new to PL/SQL and trying to solve the following problem. I have a trigger on a table that is fired on INSERT/UPDATE on STARTINGTBL (i.e. TABLE), I am checking one of the inserted value against TABLE_CHECK2 (i.e. TABLE) and if I find a value, I am trying to to grab all values matching...
  9. sheed

    Trigger hekp needed!

    I have the following trigger that is not working. In the following trigger the statement: SELECT COUNT(*) into var1 FROM LKUP_TBL WHERE upper(FTCH) = var2; and it always returns me 0 even though I have the values in LKUP_TBL. CREATE OR REPLACE TRIGGER FETCHINGVAL AFTER INSERT OR UPDATE ON...
  10. sheed

    How to get User window uid/pwd to achieve SSO using kerberos and java

    I have a web application that I want to enable signle sign on. Initially a default page comes up with a login link on the page plus some public accessable data, when a user clicks on the link I want to grab user's network domain username and password as whatever user/pwd is logged into a...
  11. sheed

    How to set-up log4j

    I have a jsp/servlet application and I am trying to use log4j for logging purpose. Can someone tell me how can I set-up log4j to work in my application. I have log4j.jar in the path , have custom class to logging i.e. import java.io.File; import java.io.FileInputStream; import java.net.URL...
  12. sheed

    changing web.xaml after deployment

    I have J2EE application. I am using <init-param> <param-name>first</param-name> <param-value>value is</param-value> </init-param> in my web.xml file. Now if I deploy the application on the app. server can I change the value of <param-value>value is</param-value> without redeploying the...
  13. sheed

    Compare data in multiple tables

    I have 4 tables with 4 columns each that hold the same data 99% of the time. But there might be some data inconsistency in those tables i.e. some data missing in some tables or sometimes some columns having inconsistent data. How can I compare the records in these 4 tables and see what data or...
  14. sheed

    How to detect browser types

    Hi how can I detect a browser type using jsp. Is there a way to detect all browser types i.e. IE,Netscape,Firefox,Opera etc.. I know I can use the following to get info about the browser: String ua = request.getHeader( "User-Agent" ); But using so doesn't get me back about Opera and don't...
  15. sheed

    Drop Down Menu not Work in IE but not in Netscape, Firefox. Help

    I have the following menu. It works fine in IE only but it doesn't doesn't work in Firefox, Netscape I didn't try it in Opera but I assume that it wouldn't work in that either. Can someone please tell how can I make it work in all the browsers. Is there something wrong with code or how I can fix...
  16. sheed

    Drop Down Menu foramtting. Need Help

    I need some help witht he following drop down menu. How can I hide all the DOT's from in front Link 3a,Link 3b etc. I don't want to show the dots but just the text i.e. . Link 3a . Link 3b . Menu 2 . Link 2a . Link 2b . Link 2c and rather want to show as: Link 3b...
  17. sheed

    Show Javascript Navigation Menu expanded in JSP Page....

    Need some help in the drop down menus. My menu hierarchy is: AMenu | -BMenu -CMenu -DMenu | -EMenu -FMenu HMenu | IMenu Above each and every node is a link to some page. AMenu and HMenu are at same level with nested sub-menus. I have this whole nav bar in a separate jsp file...
  18. sheed

    Show Javascript Navigation Menu expanded in JSP Page....

    Need some help in the drop down menus. My menu hierarchy is: AMenu | -BMenu -CMenu -DMenu | -EMenu -FMenu HMenu | IMenu Above each and every node is a link to some page. AMenu and HMenu are at same level with nested sub-menus. I have this whole nav bar in a separate jsp file...
  19. sheed

    StoredProcedure to insert data as a CLOB

    Hi, Can someone please provide some sample code for a StoredProcedure to insert data as a CLOB in a table. I am trying to have a StoredProcedure that takes some arguments along with a CLOB data to be inserted. Insise a procedure I want to get a unique value from a sequence to be inserted in the...
  20. sheed

    onclick event change background color of table cell

    I am dynamically generating my table with 15 rows and 5 columns. How can I change the background color of a cell when the user clicks in the table cell. For example if a user clicks in the 1st column of the 1st row the color changes, now if the user clicks in 3rd column of the 4th row I want to...

Part and Inventory Search

Back
Top