Teststand problem when try to close a modified seq file.

  I have a problem when using Teststand. My seq file consists several custom step types, which call external DLL/VIs. The problem is every time when I modified this seq file and tried to close it without save it, Teststand will always popup a warning dialog "Unable to discard seq file, because it is in use", please see below. Hope somebody here could give me some suggestions on it and tell me how to resolve this problem.
Thanks!
Jacky
Attachments:
screenshot1.JPG ‏108 KB

Hi Ray
  Attached is the structure I used in Teststand. Here I want to describe my problem once again:
Case1: if I open a seq file and then close it, there will be OK
Case2, if I open a seq file and insert some custom step types, then close it, it will be OK.
Case2: if I open a seq file and run it, then try to close it, but without any chang, there will popup a dialog"unable to discard this seq file,because it is in use...."
Thanks!
Jacky
Attachments:
Structure.jpg ‏13 KB

Similar Messages

  • Problem when try to use ACSE+ Windows AD to authenticate two kind of WLAN c

    I met a problem when try to use ACSE+ Windows AD to authenticate two kind of WLAN clients:
    1. Background:
    We have two WLAN: staff and student, both of them will use PEAP-MSCHAPv2, ACSE will be the Radius server, it will use Windows AD's user database. In AD, they create two groups: staff and student. The testing account for staff is staff1, the testing account for student is student1.
    2. Problem:
    If student1 try to associate to staff WLAN, since both staff and student WLAN using the same authentication method, the auth request will be send to AD user database, since student1 is a valid user account in AD, then it will pass the authentication, then it will join the staff WLAN. How to prevent this happen?
    3. Potential solution and its limitation:
    1) Use group mapping in ACSE(Dynamic VLAN Assignment with WLCs based on ACS to Active Directory Group Mapping), but ACS can only support group mapping for those groups that have no more than 500 users. But the student group will definitely exceed 500 users, how to solve it?
    2) Use methods like “Restrict WLAN Access based on SSID with WLC and Cisco Secure ACS”: Configure DNIS with ssid name in NAR of ACSE, but since DNIS/NAR is only configurable in ACSE, don't know if AD support it or not, is there any options in AD like DNIS/NAR in ACSE?
    Thanks for any suggestions!

    I think the documentation for ACS states:
    ACS can only support group mapping for users who belong to 500 or fewer Windows groups
    I read that as, If a user belongs to >500 Windows Group, ACS can't map it. The group can have over 500 users, its just those users can't belong to more than 500 groups.

  • Problem when try to use 2 computers

    Hello there.
    I'm now facing a problem when try to use 2 computers. Specifically, I downloaded my ebook (pdf form) in my laptop and open it without problems. But when I tried to reopen the same book (from human kinetics site) to my pc, the known message revealed ("E_LIC_ALREADY" etc etc).
    As I realised, in my laptop, the ADE wasn't authorized (in fact, "is authorized without an ID"). I tried but didn't achieve to authorize it (it's not accepting my username and password, saying that the specific ID is already used, obviously when I made the similar procedure on my pc, a year ago), whereas I'm also not able to re-open the book in my pc (I made copy-paste to the appropriate folder of my pc, by the way...). What's the solution in this case? I mean, it's very annoying for me and I desperately want to solve it...
    Thank you in advance,
    Nikolas

    Answer 1 : Really not quite sure about this ....
    Answer 2 : turn the card upside down and check the model number .. the model number would be WPC54G and if there v2/v3/v4 after it it means that the card is version 1 ....
    Answer 3: As you windows xp , go to start >> programs >> uninstall wireless notebook adapter.... insert the CD for the adapter ...take the card out and insert it back again.... follow the instructions on the found new hardware wizard ... this will install the drivers for the adapter and then you can use the windows wireless configuration utility to connect to the wireless network ....

  • I have a problem when try to select any of option from menu bar

    I have problem with mozilla since last update. When try to use any of options from menu bar, this appears:
    http://www.dodaj.rs/f/1p/Sl/1jR36iaa/mozilla-firefox-bug.png
    Also, i uploaded video to show how my problem appear.
    http://www.youtube.com/watch?v=shZGaZ0-_po

    thanks for reporting back with your details - turning off HWA might have slight negative effects on the performance/rendering speed of the browser but it shouldn't impact any functionality.
    i've seen a handful similar threads by users mentioning this issue since they've upgraded to firefox 18. so when it is a widespread problem, mozilla might further investigate this & offer a fix in a later version...

  • Problem when try to start SQL Developer

    I have problem when I clicked to start the SQL Developer. It wants me to enter the full pathname for Java.exe. Could some one tell me what should I enter.

    Thank you for your help. I don't have the C:\Program Files\Java\jdk1.6.0_11\bin\java.exe in my machine.
    I checked and found that the SQL Developer I have use Java 1.6.0_11 which is same as you have mentioned. I have the path
    "C:\Program Files\Java\jre7\bin\java.exe" in my machine. When I enter this path, there is a message say Cannot find J2SE SDK installed at path.
    Does this mean that I need to install java 1.6.0_11 ?

  • Hashtable containsKey() problem when String key is read from a file - HELP

    I'll try to be brief:
    I open a .txt file of Unicode encoding (not ANSI) in order to fetch some info.
    After I manipulate each line with splits etc I use a String as a key to a Hashtable.
    The problem is that later inside my code, I try to check wether this key (and hence its corresponded value) exists and I get a false value from the containsKey() method.
    and here's the code (I have embedded some comments //-type that address to this thread):
    FileInputStream fis = new FileInputStream(initFilename);
    InputStreamReader isr = new InputStreamReader(fis, "UTF-16");
    BufferedReader br = new BufferedReader(isr);
    lineText = loadSubiPhraseFilter(br);
    //In the loadSubiPhraseFilter method
    //parsing an input like this:
    //δόξα τώ Θεώ,1:1,2:2
    //Yeah, I know, its all greek to you ;)
    //Thus we first split the line with ','
    //we split the first token with ' ' and each one of the N words,
    //serves as an index in a N-dimension hashtable
    //This is achieved implicitly by adding another hashtable as a value to a String key etc...
    //When all words are added, the hashtable which contains the last word is used
    //to put another hashtable whose only key is the String "Index"
    //which points to the rest of the data. The thing is, I never get that far...
    //I dont get to even get a positive containsKey() when giving an inserted key at a later time
    //here's the loading procedure
    while((lineText = br.readLine()) != null && (lineText.charAt(0) != '#'))
         String [] info = lineText.split("[,]");
         /*Load subi indeces in a vector*/
         Integer [][] subiIndex = new Integer [info.length-1][2];// = new Vector<Integer>();
         for(int i = 1; i < info.length; i += 1)
              //load subiIndex here...
         /*Then fetch phrase to be modified and load its 'n' words in an n-dimesion hash which will utterly point to the subi indeces*/
         /*Starting from the last word, we  put the index vector*/
         String [] word = info[0].split("[ ']+");
         Hashtable<String, Object> nextWord = new Hashtable<String, Object>();
         nextWord.put("Index", subiIndex);
         /*Then we create a chain of hash dimensions corresponding to phrase words*/
         for(int i = word.length-1; i >= 0; i -=1)
              Hashtable<String, Object> prevWord = new Hashtable<String, Object>();
              //Yeah, I even tried the .trim() method...
              prevWord.put(word.trim(), nextWord);
              nextWord = prevWord;
              System.out.print(word[i] + "<-");
         /*We update the hash head and also add the first word with its first letter capitalized as key pointing to the same next key in hash dimension chain*/
         subiPhraseFilter = nextWord;
         subiPhraseFilter.put((capitalMap.get(word[0].charAt(0))+word[0].substring(1)).trim(), subiPhraseFilter.get(word[0]));
         //The following debbuging print outs work just fine. Its only just later when I cant get a containsKey()...
         System.out.println("|| "+subiPhraseFilter);
         System.out.println("subiPhraseFilter.containsKey("+word[0]+"): "+subiPhraseFilter.containsKey(word[0]));
    //Then the following code is executed
    Integer [][] subiPhraseIndeces(String word1, String word2, String word3)
         String [] tmp = {word1, word2, word3};
         Hashtable<String, Object> dimension = subiPhraseFilter;
         //The following debbuging print out does NOT return true
         //even when I explicitly give a String key which I know it is inserted
         System.out.println("subiPhraseFilter.containsKey(" + tmp[0] + "): " + subiPhraseFilter.containsKey("&#949;&#957;&#955;&#972;&#947;&#969;".trim()));
         for(int i = 0; (i < tmp.length) && (tmp[i] != null) && dimension.containsKey(tmp[i]); i += 1)
              //This is NEVER executed...
              System.out.println(i + ": dimension.containsKey(" + tmp[i].trim() + ")");
              dimension = (Hashtable<String, Object>)dimension.get(tmp[i].trim());
              return (Integer [][])dimension.get("Index");
    Whats most irritating is that this also happens arbitrarily in another place of my code where I load again info by using each line as a key to another Hashtable and, the containsKey() method returns true to all but one (!) line-words, even if I change its position in the file. I won't put the latter code here because its just very simple. (in case I wasnt clear I read a section of a file that looks like
    wordA
    wordB
    wordC
    wordN
    each wordX is put as a key to a Boolean value and yet, containsKey(wordA) returns false even if i change the input file to
    wordB
    wordA
    wordC
    wordN
    isn't that just peculiar?
    A significant note in this problem is that I do not read english characters, rather than greek (hence the unicode filetype) which I put as keys to the hashtable; later I try to get corresponded values by fetching text (which I also manipulate) from a JTextfield, as key, and I'm afraid that maybe something is happening there.
    However the code sample I added above didnt work even when I added an english word in the file and explicitly asked wether it is contained as a key...
    Maybe I am doing something I really can't see right now...
    Help would be appreciated                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    BalusC: "I would also not be surprised if that file is after all actually just UTF-8"
    No, it's not cause I explictly saved the .txt file as Unicode in wordpad and NOT as UTF-8. By the way notepad has ANSI as its default save-type.
    However I converted my input files to UTF-8 and read them using the "UTF-8" String flag in the constructor of the reader I was using. All the same.
    EDIT: Not to metion, the UTF-8 file needed an empty line at the beggining or my parsing would skip the first line, messing everything up!
    Just for the sake of it I will show the output of my program (redirected to a file cause cmd.exe does not support greek letters, or I didnt find a way to make it so):
    (This is the output when I load from the UTF-8 file the word "&#949;&#957;&#955;&#972;&#947;&#969;" in my has as a key (pointing to a Boolean i think - it doesnt really matter). What I print is the key of each dimension of the hash -here there's only one dimension- and then I print the hash reference, i.e like a toString() representation. The result shows that the Hashtable contains at key "&#949;&#957;&#955;&#972;&#947;&#969;" a value which is another Hashtable which contains the key "Index" pointing to something you shouldnt care. The hash head also contains the key "&#917;&#957;&#955;&#972;&#947;&#969;", which is actually the same as before only to have its first letter capitalized, which in turn points to a hash with one key etc...)
    &#949;&#957;&#955;&#972;&#947;&#969;<-|| {&#949;&#957;&#955;&#972;&#947;&#969;={Index=[[Ljava.lang.Integer;@360be0}, &#917;&#957;&#955;&#972;&#947;&#969;={Index=[[Ljava.lang.Integer;@360be0}}
    subiPhraseFilter.containsKey(&#949;&#957;&#955;&#972;&#947;&#969;): true
    (And later on I get a string from a JTextField I tokenize it and here's what I get when I reach the same word:)
    (Don't mind "Checking: ..." its 'cause I check a window of three words in order to reach up to a 3-dimension hash key. Yet I dont even get the first key!)
    Current token: '&#949;&#957;&#955;&#972;&#947;&#969;'
    Checking: &#949;&#957;&#955;&#972;&#947;&#969;, null, null
    subiPhraseFilter.containsKey(&#949;&#957;&#955;&#972;&#947;&#969;): false
    Now isn't that making one crazy?
    Any other ideas?
    Thnak you in advance!
    P.S. In case that I haven't done something really stupid which is ommitted here and yet can't be tracked, I think the problem must be somewhere between the encoding of JTextField and the encoding I read...
    P.S.2 Excuse me for saying hash instead of Hashtable sometimes in the above text
    Edited by: M.M. on Sep 2, 2009 3:22 AM
    Edited by: M.M. on Sep 2, 2009 3:23 AM

  • I have a problem when  try to update Item (DI API)

    I created a program and i can to add a Item but can't modify a existing item. I show my code:
            oItSBO = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
            oItSBO.ItemCode = ItemCode
            oItSBO.ItemName = ItemDescription
               If oItSBO.GetByKey(ItemCode) Then
                    lErrCode = oItSBO.Update()
                    If lErrCode <>0 The
                             oCompany.GetLastError(lErrCode, sErrMsg)
                    End If
                Else
                    lErrCode = oItSBO.Add()
                    If lErrCode <> 0 Then
                             oCompany.GetLastError(lErrCode, sErrMsg)
                    End If
               End If
    IS THERE ANY ERROR????
    Thanks.

    try the code as - the problem in your code was, that you with getbykey overwtited all sets properties at the end and the product stays same.
    oItSBO = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
    dim edit as integer
    edit = 1
    If not oItSBO.GetByKey(ItemCode) Then
    edit = 1
    end if
    oItSBO.ItemCode = ItemCode
    oItSBO.ItemName = ItemDescription
    if edit = 1 then
    lErrCode = oItSBO.Update()
    else
    lErrCode = oItSBO.Add()
    end if
    If lErrCode 0 Then
    oCompany.GetLastError(lErrCode, sErrMsg)
    End If
    End

  • Problems when trying to close periods

    Hi all,
    I'm trying to close period and when using the Oracle Diagnostic Tool it gave me this error: Items have been found in one or more organizations sharing set of books 'XX_DOVERIE' which will prevent closing of period '12-2010'. But there is no unaccounted payments, invoices, etc. The report Period Close Exceptions Report is empty. Any ideas?
    Thanks,
    Alex

    You should typically avoid changing values using diagnostics > examine.
    And for far reaching things such as period status, you should never do it via this method.
    If you have to close the period, follow the standard procedure for closing a period. If you are encountering problems with it, you can either ask the question on these forums or raise an SR.
    Sandeep Gandhi

  • Problem When Try to add Master data record for User define form

    Hi,
    I have made one user define form. And assign UDO and fields proerly in form.
    But when I try to add the record from the form it will give me error
    Invalid Code [Operation Master  -Code] [Message 173-36]
    I have already bind the code field of the table to one field in the screen painter.
    Please give me the reply.
    Regards,
    Gunjan Shukla.

    Dear Shukla
    Can you please try to do the binding in the code (after loading the from).
    Doing that, do you still have the problem?
    Best regards,
    Miki

  • Problem when try to get the next refresh date of a materialized view

    I have a materialized view set to auto refresh(e.g hourly), I need to query this date and display in the report. I create a procedure which return the NEXT_DATE from the ALL_REFRESH_CHILDREN table, the procedure and the view all in schema HK3XDDB.
    If I login as sys, dba in the sql plus and query the procedure, it return the next date, but if I login as normal user which has permission to execute all procedures, it didn't return anything, so I change ALL_REFRESH_CHILDREN to USER_REFRESH_CHILDREN, still no luck. But the details from the USER_MVIEWS can be returned, just won't return anything in the REFRESH one. How to query the next date out?
    Another strange thing is, if I login as sys dba, it return the next date, but if I use a select next_date into statement in the procedure it will throw a data not found error.
    I stuck here for several hours just can't figure it out, any suggestions are welcome,
    Cheers

    Thank you for the reply. It's same with USER_REFRESH_CHILDREN, I can get the result when I run the procedure in SQL PLUS login as sys dba, but if I run the procedure using normal user which has permission to run any procedure, then nothing return. It might be a permission problem but I just can't figure out why.
    Let me explain in detailed:
    Schema HKXDDB, this schema has procedure TestProcedure, in the procedure, I have two ref cursor return, one is for select * from USER_JOBs (or from USER_REFRESH_CHILDREN, I have tried both), one is for select * From USER_MVIEWS, this schema has the materialized view. User HKDWUser has permission to run any procedures, so when this user run the TestProcedure which is own by HKXDDB, the cursor that select from USER_MVIEWS can return results which are materialized views owned by HKXDDB, but the cursor that select form USER_JOBS or USER_REFRESH_CHILDREN always return no rows.
    Any permission I need to assign to HKDWUSER to get the jobs or fresh group that owned by HKXDDB?
    Cheers

  • Problem when try to upgrade with -Syu

    Hi all,
    I'm back on linux and today installed my old Arch(3.11.2-1-ARCH). I want to update it because I didnt start it 1+ years ago. I run pacman -Syu and it ask for replace some package but whatever i answer( I try with all Y and all N) there is the same error - unresolvable package conflicts detected. Here is my output from the terminal. I'll glad if someone point me to the right way
    p.P.:I have many customization on it like - intel HD graphic driver, sound manager, compiz, eclipse  and so on... so I'll be happy if I can upgrade and dont losing all of them
    Sorry for my bad english (:
    [vanrea@lpVaNReA ~]$ sudo pacman -Suy
    [sudo] password for vanrea:
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    :: Replace attica with extra/attica-qt4? [Y/n] n
    :: Replace ca-certificates-java with core/ca-certificates-utils? [Y/n] n
    :: Replace dirmngr with core/gnupg? [Y/n] n
    :: Replace grantlee with extra/grantlee-qt4? [Y/n] n
    :: Replace heirloom-mailx with core/s-nail? [Y/n] n
    :: Replace intel-dri with extra/mesa? [Y/n] n
    :: Replace lib32-dbus with multilib/lib32-libdbus? [Y/n] n
    :: Replace lib32-intel-dri with multilib/lib32-mesa? [Y/n] n
    :: Replace libltdl with core/libtool? [Y/n] n
    :: Replace libusbx with core/libusb? [Y/n] n
    :: Replace lirc-utils with extra/lirc? [Y/n] n
    :: Replace lzo2 with core/lzo? [Y/n] n
    :: Replace phonon with extra/phonon-qt4? [Y/n] n
    :: Replace phonon-vlc with extra/phonon-qt4-vlc? [Y/n] n
    :: Replace polkit-qt with extra/polkit-qt4? [Y/n] n
    :: Replace shared-color-profiles with extra/colord? [Y/n] n
    :: Replace sysvinit-tools with core/procps-ng? [Y/n] n
    resolving dependencies...
    looking for conflicting packages...
    :: ca-certificates-utils and ca-certificates-java are in conflict. Remove ca-certificates-java? [y/N] n
    error: unresolvable package conflicts detected
    error: failed to prepare transaction (conflicting dependencies)
    :: ca-certificates-utils and ca-certificates-java are in conflict

    killvanrea wrote:p.P.:I have many customization on it like - intel HD graphic driver, sound manager, compiz, eclipse  and so on... so I'll be happy if I can upgrade and dont losing all of them
    Running `pacman -R` without the -n switch will leave all of your configuration files alone and just remove the package files. In this case it might be helpful to remove anything you can without removing packages from the "base" group, to minimize conflicts. After successfully upgrading the remaining packages, run `pacman -S <packages>` to (re)install the newest version of the packages you removed. At least it has worked for me to avoid package conflicts in the past; your mileage may vary. See removing packages and pacman tips.
    If all else fails, in theory you could run something like `pacman -r /mnt -R $(pacman -r /mnt -Q | cut -d ' ' -f 1)` from a live CD to remove all packages, then use pacstrap to reinstall them. Use this as a last resort and make a backup first!

  • Apache DNS problems when control terminal closes

    So, I'm having the weirdest problem. I log in to my Mac OS X Snow Leopard server (10.6.4) using SSH. I sudo -s to root and then I run "apachectl start" to start the HTTPD server. Right, no problem here. It starts and serves webpages without a problem.
    Right, but then I log out of SSH and my Apache Error.txt log files start filling up with this:
    *could not lookup DNS configuration info service: (ipc/send) invalid destination port*
    Up until a point where the server stops responding. Googling a bit found this page: http://lists.apple.com/archives/unix-porting/2010/Jul/msg00001.html that doesn't concern Apache but clearly says that loosing the control terminal ended up messing up the process DNS requests. Since this doesn't concern Apache I'm unsure as to how I would apply his solution to my problem. As far as I know - "apachectl start" will start httpd in the background as a daemon. What am I doing wrong here? It worked fine with Mac OS X server 10.4 which I upgraded from yesterday. I also upgraded from httpd 2.2.4 to 2.2.16 - maybe there is something in the httpd.conf that I need to adjust this upgrade change?
    Anyone has any idea?

    I am not running the built in server, but rather a server I've compiled myself...
    There is little that I can provide for you here for a resolution, short of access into and digging through and debugging the (variant) Apache environment involved here, and what may turn into a whole lot of time and thought. The port is (obviously) missing something, or Apache has an incompatibility or a bug, or the build or system environment has an incompatibility or a bug.
    What can go wrong in these cases is chosen from a large set of potential weirdnesses.
    Start by searching for existing reports of that diagnostic (and any potential resolutions), and then by looking for differences between the Apple Apache environment and what you're working with, and then work your way into debugging the server.
    Or switch strategies and implementations entirely, and revert to the in-built Apache server, or switch to MAMP or some other pre-built server for Mac OS X, or switch to an OS that has the Apache configuration you're looking for.

  • RoboHelp 8 crashes on project close after modifying htt files outside RoboHelp

    Recently I have made some changes to the .htt (master page/template) files that are used with our RoboHelp projects. It was easier to make those changes outside of RoboHelp, so I made them in a simple text editor program, making sure that RoboHelp was not open at the time. I did this for multiple projects.
    Since then, RoboHelp hangs up every time you close any of these help projects or if you attempt to close RoboHelp itself with the projects open.
    Things to know:
    -I am using 8.0.2, so it has the latest updates.
    -I am using Windows 7, 32-bit.
    -I can find no code errors in the htt files themselves. (I had RoboHelp problems in one project a long time ago when I accidentally omitted a "?" in the RoboHelp header tag. Nothing like that is going on here.)
    -I have tried renaming the CPD so that RoboHelp creates a new one. This does not solve the problem.
    -I have tried opening the master page file in RoboHelp and then closing it. RoboHelp opens the file with no problems and does not seem to make any changes.
    I have searched the forums and have found many references to RoboHelp crashes in Windows 7, but none seem to have the same cause as mine.
    Has anyone else had this problem?
    Thanks,
    Tammy

    OK, now I know what causes it, but I'm not sure what to do about it yet. I'm working on it.
    We have a new "@import" line in our style sheet (turns out it wasn't my htt modifications at all!!) that RoboHelp apparently doesn't like. We did this because I couldn't get RoboHelp 8 to let me asisgn multiple style sheets to topics, so I had to put an import line in one to pull in the other.
    Since I did this, I have logged a feature request asking that RoboHelp allow multiple style sheet links in topics. Adobe has replied that this is possible in RoboHelp 8, but the forums had previously said it was not, and I was seeing my second link deleted, so I'll have to revisit this to see if I can get it to work one more time. If not, we'll have to live with the crash. Hope RoboHelp becomes more flexible with these things in the future!

  • EJB classpath problem when refering a DAO in library jar file

    Hi
    When I tried to deploy an EJB jar file in 10g which references the DAO for getting database[SQL Server2000] query results.Its not retriving data nor throwing any exceptions.Other DAO business methods which do not access database are working well.
    When I tried to import the DAO inside a JSP and calling the DAO data access method which is working fine. Even I have set the resource-ref [datasource JNDI Name] in ejb-jar.xml files for the EJB beans, but its not referencing. If you have any ideas, how to resolve this problem, please forward me your suggestion.
    Thanks in Advance
    Best Regards
    Venugopal Balu

    Hi
    When I tried to deploy an EJB jar file in 10g which references the DAO for getting database[SQL Server2000] query results.Its not retriving data nor throwing any exceptions.Other DAO business methods which do not access database are working well.
    When I tried to import the DAO inside a JSP and calling the DAO data access method which is working fine. Even I have set the resource-ref [datasource JNDI Name] in ejb-jar.xml files for the EJB beans, but its not referencing. If you have any ideas, how to resolve this problem, please forward me your suggestion.
    Thanks in Advance
    Best Regards
    Venugopal Balu

  • Problem when copying over the Oracle Lite DB Files...

    Hi All,
    i have installed oracle Lite 10g on my desktop and created a Database and then created a user on it.
    when i created all of that, it created two files: one which is a .odb (datbase file) and .opw (password file).
    the opw files has encrypted info about the user that i created on the DB.
    i am trying to port my entire application on to a laptop.
    so i install oracle lite 10g on it and then copy over these Datafiles (.odb) and password (.opw) file.
    i make the neccesary entries in the ODBC.ini file.
    now when i try to msql into the database it gives me an POL-5150 Access Violation error.
    any clue as to why it does not let me login.
    I Tried logging in both as the system user and the user that i created on the DB.
    any help would be great.
    i can login into the DB on my Desktop with the same username/password. no issues there. the issue is when i copy those files on the laptop.
    thanks,
    Milind

    Make shure that this file is in a folder that is in your path.
    to check this check your path (form cmd prompt typ set path) en search your hard disk for occurences of olod2040.dll.
    On my desktop the file is in C:\oracle\olite\Mobile\Sdk\BIN, this folder is also part of my path.
    normaly the file can also be found in C:\mobileclient\bin or whereever you installed the mobile client. I once noticed that deinstalling the sdk gave me the same error, the path was not set correctly when deinstalling.

Maybe you are looking for

  • SAP Business One 8.8 - Installation

    Hi experts                  I upgraded my SAP B1 from 2007 PL17 to 8.8 PL10.... It worked for demo database.... Den  I tried working on with my current development database... but i get an error like this  " you can't upgrade company database from SA

  • Service billing for the material and service registers

    Dear All, I have doubt, if i do a sale of material 'X' and for the same material if i have to do a service invoice for rendering some service at the customer end. eg:- service charges for transportaion of the material to the customer place, doing ins

  • Need urgent help with creating .war file ...

    My boss gave me one day to create an app. that runs on Apache Tomcat 4.0.6. I managed to get it done, but now I'm trying to move it from my machine to the web server. Each time I try to create a .war file I get an error saying "no such file or direct

  • Browse Messages in IBM MQ

    I have snippet of a code here that reads messages from a queue. Can someone please tell me how I can convert this to browser messages in the queue without destroying them? Thanks. private static void drainQueue()      // create queues      MQQueue qu

  • Can I make links to elements inside a component edge??  as if they are anchors

    I have a menu on dreamweaver with HTML and a component edge, and I want to link to elements (one,two,three,four) inside to component edge it is possible?