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: sheed
  • 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

    Thanks it worked. I am also trying to move the files from one directory to another also I only want to move a file not a directory here is what I am doing: #!/usr/bin/perl my $dir = 'C:/test/data'; if (-M $dir >= 11) { print "Directory $dir/ last modified ", scalar localtime((stat...
  6. 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...
  7. sheed

    Find Directory Timestamp

    How can I get the timestamp of a directory
  8. 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...
  9. sheed

    Trigger help needed!

    How do I Rollback the whole transaction if some of the records in the cursor don't pass the condition for inserting. How do I make all the records to be committed only if all the records in the CUR_V1 CURSOR meets the condition IF VAR_1 IS NOT NULL AND VAR_2 IS NOT NULL AND VAR_3 IS NOT NULL...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. sheed

    changing web.xaml after deployment

    Oracle Application Server is there a way I give or provide some properties file but changing the values after deployment I don't have to redeploy or restart the server. I thought if can put in web.xml file it should work or is there any other way. Thanks
  15. 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...
  16. 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...
  17. sheed

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

    Any idea why the following following expands the content in IE while in Netscape it only shows the one expanded: <ul class="look2" style="list-style-image:url(list.gif);display:none"> <li><a href="fdddf">Link 3a</a></li> <li><a href="fdddf">Link 3b</a></li> <li><div...
  18. sheed

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

    Thanks it does work in IE,Netscape,FireFox, AOL and Opera. But can you please tell me why the behavior is different when I have the following values i.e. In my above sample have following for both <ul...> e.g. <ul class="look2" style="list-style-image:url(list.gif);display:show"> <ul...
  19. 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...
  20. 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...

Part and Inventory Search

Back
Top