What might cause 3 level tree to fail?

hi,
there are VO1,VO2,VO3.Each one has id and name fields.
i try to build a 3-level tree: VO1 is parent to VO2 which is parent to VO3
it's supposed to be a tree containing all elements of VO1 on the upper level, each leaf of which should contain all elements of VO2 etc
in order to ensure cartesian join i created a column lvl1 with value 1, and lvl2 with value 2.
then i created 2 view links between each pair: VO1 and VO2 are linked by lvl1, VO2 and VO3 are linked by lvl2.
any 2 level trees are showing ok in all combinations (between VO1/VO2, VO2/VO3)
but when i define 3 levels in tree level binding , application fails with error: (tree is kept in a region)
<UIXRegion> <_warn> Error handling viewId: /QueueAction URI: /QueueAction.jspx actual-URI: /setup.jsff.
java.lang.IllegalStateException: ADFv: Not inside container.
i follow http://andrejusb.blogspot.ru/2011/12/tuning-adf-tree-retain-view-link.html
JDev 11.1.2.3

blog helped

Similar Messages

  • HT203164 I am getting an error 2131, attempt to burn a disc failed.  What might cause this?

    I am getting an error 2131, attempt to burn a disc failed.  What might cause this?

    Maybe you should post in the iTunes forum or other appropriate forum. This is the iPod touch forum and the iPod can't burn CDs.

  • I get an "Exeeded Limit" error from iTunes Match, but I only have 18000 sings in my library. What might cause that?

    I get an "Exeeded Limit" error from iTunes Match, but I only have 18000 sings in my library. What might cause that?

    Try posting in the iTunes Match forum, you'll probably find more knowledgeable folks there.
    https://discussions.apple.com/community/itunes/itunes_match

  • Unable to access endpoints error. What might cause it?

    I got the below error
    “Unable to access the following endpoint(s): https://secure-ausomxdsa.crmondemand.com/Services/Integration”
    I copied and pasted the below url into a browser and I got the “Page Not Found” error
    https://secure-ausomxdsa.crmondemand.com/Services/Integration?wsdl
    Do you know what might cause this error?
    Thanks

    Hi, ok now I see, no you don't if you use bpel, but anyway the ?wsdl url is not reachable in on demand. Url https://secure-ausomxdsa.crmondemand.com/Services/Integration is right if you are on pod "dsa". I'm not that familiar with bpel but as far as I know it's simply loading the wsdl into your bpel process and use WS-Security for server side session handling. If you don't send security headers you have to define a login step first but normally this is not necessarry if you add ws security header in your requests.
    Best Regards
    SL

  • The Apple ID Password request pops up constantly, I am not purchasing or updating apps, what might cause this to happen?

    What might cause this problem?

    You may have an app that is trying to update or download that needs the password to continue... once you enter it it will time out so you don't have to worry about putting it in.
    Enter it and it should store it for 15 minute only and after that time you'd need to enter it again to buy something.
    Updates do not require password anymore but purchases do

  • What is causing my print jobs to fail?

    Having trouble printing  documents (which range from 12-50 pages) from InDesign CC. Whole job fails to print. Started with new documents based on template created in CC. Trouble fonts have been removed from styles. I can print some individual pages. On the problem pages I have had luck printing them without the images, but other pages with no problems have similar images on them in terms of size, file type, color space, etc. Tried exporting to IDML, still had trouble printing.

    HI, JonJamesDufort
    You might try to save a copy of the file to help troubleshoot the Indesign printing in case if you have to remove other images.
    Have you tried to export to pdf or Print to pdf if you have Acrobat installed? If you can export to PDF from Indesign, then I would look to see if you have linked images that could be causing the problem. Does the print job just fail? Also what kind of printer are you trying to print to? You might have a corrupt image or graphic that could be causing the print job to fail. Do you have any older eps graphics that you are including in your file? Look to see what files are linked and try to embed the files. Did you run a preflight on the file? You should do that first to give you an idea of what could be causing it.
    If you can export to PDF and then Print to your printer, then you have a work around to get your file printed.
    If you find that this resolves your issue or was helpful, could you please take a moment to come back to this discussion and mark the post as helpful. Doing so greatly benefits your fellow users
    Let me know if you have any questions
    Thanks
    Scott V

  • Photoshop CS4 for Mac What can cause the error: Plug-in failed to load - NO VERSION

    With Photoshop CS4 for Mac I install the Kodak Plug-in DIGITAL GEM Airbrush Professional v2.1.0. When Photoshop starts I get an error:
    Plug-ins that failed to load:
       DIGITAL GEM Airbrush Professional v2.1.0 NO VERSION -  - from the file “DigitalAIRProv2.plugin”Flash:
       Connections
       Kuler
    This plug-in works fine on my Mac Pro with Photoshop CS4 and OS 10.6 but fails on a new Macbook Air.
    Reinstalling the plug-in did not make any difference. What can cause this error?

    Thanks Chris, That was my first thought too but this same plug-in works on another installation of CS4. This is a Mac installation and the plug-in is Universal so it should work. Is there any other possible cause for this error? Would Photoshop refuse to load a plug-in in a low memory situation?
    Also, The Flash extensions:Connections and Kuler are working OK, I just copied a little more out of the System Info report than I needed to.

  • What might cause this execption?

    trying to run a simple client, almost stright from the Axis User Guide and I get is error every time. It has no problem building the program but running it is another story. What might be causing it?
    //simple client
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.namespace.QName;
    public class TestClient {
         public static void main(String [] args) {
              try {
                   String endpoint =
                   "https://server.com";
                   Service  service = new Service();  // this is line 11 from exception
                   Call  call = (Call) service.createCall();
                   call.setTargetEndpointAddress( new java.net.URL(endpoint) );
                   call.setOperationName(new QName("server.com", "Login"));
                   String[] ret = (String[]) call.invoke( new Object[] { "1000005", "1111" } );
                   System.out.println("Sent Message, recieved :");
                   for(int i = 0; i < ret.length; i++){
                        System.out.println(ret);
              } catch (Exception e) {
                   System.err.println(e.toString());
    Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.lo
    gging.LogFactory
    at org.apache.axis.components.logger.LogFactory.class$(LogFactory.java:4
    5)
    at org.apache.axis.components.logger.LogFactory$1.run(LogFactory.java:45
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.axis.components.logger.LogFactory.getLogFactory(LogFactory
    .java:41)
    at org.apache.axis.components.logger.LogFactory.<clinit>(LogFactory.java
    :33)
    at org.apache.axis.handlers.BasicHandler.<clinit>(BasicHandler.java:43)
    at org.apache.axis.client.Service.getAxisClient(Service.java:104)
    at org.apache.axis.client.Service.<init>(Service.java:113)
    at TestClient.main(TestClient.java:11)

    it's in there.... still does not work.. uhm...thanks for the idea thoguh
    You don't set a CLASSPATH with Tomcat. It ignores
    your system CLASSPATH if you have one, so if that's
    what you mean by "in there", that's not helping you.
    You need to find the JAR with that .class file in it
    and put it in TOMCAT_HOME/common/lib. That way every
    context running on that Tomcat server will see it.
    If that's what you have, then I don't know why you're
    getting this error.
    %He's beyond that - just didn't have commons-logging.jar, now he does.
    OP - I don't know about your next problem, but it's only a "warning" - looks like if you're not trying to do attachments with the API, you'll be fine. Otherwise, apparently you'll need some J2EE jar in your run-time classpath - is that happening on the client side, or the server side (shouldn't be the latter, as it is running in a J2EE container, so I wouldn't expect it to complain about not finding those classes)

  • What might cause CTI to leave black vertical lines in timeline (CS4)?

    I'm relatively new with Premiere Pro CS 4.
    For some reason, whenever I click on the CTI, or move it around the timeline, it leaves a trail of black verticle lines.
    Sometimes these black lines totally prevent me from seeing anything on the timeline.
    This just started yesterday.  Up until that, everything was fine.
    Any idea what is causing this?
    I must have clicked on some tool or setting.  But I can not get rid of it.
    Even closing Premiere and turning it back on does not help.  Neither does changing projects.
    thx
    Micheel

    OK, I found the solution in one of the forums after searching for  ~ "timeline disapearing."
    Apparently, if you open up FireFox while using Premiere or before using Premiere, it causes the timeline to behave oddly.  Basically, the time line starts to turn black as if it is not getting refreshed.
    The work around is to reboot, and NOT use Firefox at all.  Bummer.  I could not find a real fix.
    Even if you reboot and then open and close Firefox, Premiere's timeline will have this problem.
    But if you reboot and use Premiere, it's OK, until you open Firefox.
    The thread says this also happens with ZoneAlarm and Premiere but I could not confirm that problem.
    http://forums.adobe.com/message/3221982
    Michael

  • Creating new VM ends with Error code 3430 and 3040 in Hyper-V log. Does anyone have any insight into what might cause this?

    The new VM is being created via a P2V process run from SCVVM. It reaches a completion of 60% and dies. I asked about this in another question detail of the VVM can be seen at this link:
    http://social.technet.microsoft.com/Forums/en-US/virtualmachinemgrp2vv2v/thread/71aae7dc-13b5-46f1-b794-cc1b8085541f
    Running Win2008 R2 w/ Hyper-V role enabled & SCVVM 2008R2
    In any event I checked the Hyper-V logs to see if they might shead any light on the problem and there were two error messages associated with the attempted conversion. The first Event ID 3430
    Log Name:      Microsoft-Windows-Hyper-V-Worker-Admin
    Source:        Microsoft-Windows-Hyper-V-Worker
    Date:          5/23/2011 4:51:25 PM
    Event ID:      3430
    Task Category: None
    Level:         Error
    Keywords:     
    User:          NETWORK SERVICE
    Computer:      Virtual-Mgt.amrinc-corp.local
    Description:
    'test1' failed to set/change partition property: The system cannot find message text for message number 0xtest1 in the message file for 18568CA2-82E9-4A9F-B462-701D8FB4C447. '0x8007013D'.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
        <EventID>3430</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2011-05-23T21:51:25.956775200Z" />
        <EventRecordID>1</EventRecordID>
        <Correlation />
        <Execution ProcessID="3316" ThreadID="2716" />
        <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
        <Computer>Virtual-Mgt.amrinc-corp.local</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <UserData>
        <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <VmName>test1</VmName>
          <VmId>18568CA2-82E9-4A9F-B462-701D8FB4C447</VmId>
          <ErrorCodeString>%%2147942717</ErrorCodeString>
          <ErrorCode>0x8007013D</ErrorCode>
        </VmlEventLog>
      </UserData>
    </Event>
    And the second Event ID 3040
    Log Name:      Microsoft-Windows-Hyper-V-Worker-Admin
    Source:        Microsoft-Windows-Hyper-V-Worker
    Date:          5/23/2011 4:51:25 PM
    Event ID:      3040
    Task Category: None
    Level:         Error
    Keywords:     
    User:          NETWORK SERVICE
    Computer:      Virtual-Mgt.amrinc-corp.local
    Description:
    'test1' could not initialize. (Virtual machine ID 18568CA2-82E9-4A9F-B462-701D8FB4C447)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
        <EventID>3040</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2011-05-23T21:51:25.956775200Z" />
        <EventRecordID>2</EventRecordID>
        <Correlation />
        <Execution ProcessID="3316" ThreadID="2716" />
        <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
        <Computer>Virtual-Mgt.amrinc-corp.local</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <UserData>
        <VmInitialize xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <VmName>test1</VmName>
          <VmId>18568CA2-82E9-4A9F-B462-701D8FB4C447</VmId>
        </VmInitialize>
      </UserData>
    </Event>
    I have blownout the server and reinstalled the operating system and SCVVM and applied all the current updates to no avail. I have the exact same issue again. The problem seem to be at least on the serface an authority problem because I have no problem creating
    new VM via the P2V process on an old Virtual Server running on Win2003R2.
    Oh yes I can create new virtual machines on the system in question and move them to the library as was suggested to verify in a Blog post so I am really wondering what the problem is?
    Configuration Analyzer Just gave me a warning about reporting not being setup on the VVM which it isn't so no suprise there?
    Any information that might help me figure this would be greatly appreciated

    I've looked at both threads, and there simply isn't enough information for me to tell you what is wrong.  Please collect a trace (instructions in General forum) and open a case with CSS.  CSS can provide more in depth analysis than what a forum
    post allows. 
    As a shot in the dark, I have seen the issue outlined in the following KB article cause this exact same error message and symptom,
    http://support.microsoft.com/kb/967902
    Best Regards, Mike Briggs [MSFT] -- posting provided "AS IS" with no warranties and confers no rights

  • What might cause this cross version, & cross platform inability to edit PDF?

    Basic info: Our office is PC based using WIndows XP and Acrobat Pro 7.0 and I have created a simple PDF that is totally unrestricted to a book publisher. Latter is MAC based using X Pro and is able to open and move around our PDF, but is unable to use highlighter, comments, edit, etc. Publisher works with PDF files alot and claims that they have never had problems with any other submissions. The only "unusual" think I did in creating the PDF of a simple word doc is that in Acrobat Pro 7 I changed Initial View tab that File Title should display rather than the default file name; and in Properties filled in Title and Author fields. My hunch is that this simple change might be causing the symptoms being experienced.
    While I am primarily looking for a solution, without trying to determine the cause it seems tougher to find solution other than trial-and-error.
    Details: PDF does NOT have any interactive features and is 99% text with a few inserted JPG images. I realize in writing this there is another perhaps unusual aspect. Namely, we are still using MS Word 2003, AND we always make a copy of normal.dot, rename this to book_title.dot and have the word doc file for the book use that _____.dot so that in this way, the Styles that use and update are isolated to that particular book and its associated word.doc.  I mention this, but don't think this is the culprit.
    The steps in the whole process have been:
    1) Close word doc for the book.
    2) In Acrobat Pro create PDF from word.doc file
    3) Make changes to Initial View, and Properties
    4) Save PDF using Pros "Smallest File Size" choice.
    In our office, we have opened a copy of the PDF sent to publisher in Adobe Reader and all looks "normal." We have opened it on a stand alone laptop (not connected to our server) and with Acrobat Pro 7 we are able ourselves to use highlighter, comments, editing, etc.
    This really has me stumped. To add potentially further challenge with "compatibility" our office and publisher are in USA. Publisher needs to add some comments to the PDF file and then it will be sent to several different people in Europe to use the PDF file to make a translation of the book, and we have not even tried that step yet.
    Since our office is 7.0 and not X, am I correct that the latter still allows one to create PDF and have Initial View show pdf Title rather than pdf File Name?
    Your thoughts/suggestions are greatly appreciated.

    @BillI I agree that it is puzzling. I think that @George has the answer and solution, unfortunately publisher will not look at things until this coming Tuesday so can not yet mark his post as "the correct answer" and be done with all of this craziness.
    ============
    After writing above, I tried to learn some basics about PDF/A and now have some additional ?s to understand and unravel this puzzle fully.
    1) PDF/A is a newer "more robust" pdf standard, right? In creating PDF file in Acrobat Pro 7.0, is there actually an option to check box that you want the conversion to meet this standard? In creating the PDF that has been problematic for publisher to edit, I, as the author, did NOT intentionally create a PDF/A file.
    I did embed fonts (which for this document were kept to Times) to increase compatibility.
    I did NOT restrict the PDF file i.e. Printing, Commenting, etc. were allowed.
    It was also created as a Tagged PDF
    I believe it is true that the extension .pdf does NOT tell you whether a file is PDF/A. You need to look at the properties of the actual file, OR with more current versions some Adobe products there is a color bar that would let you know.
    2) If @George has the solution, I am delighted but still has me puzzled. If I did NOT actually create a PDF/A file, could the publisher themselves have done this in their MAX Acrobat X software, and then locked themselves out from using it? Let me try to explain ...
    A) I sent PDF file, that we ourselves are able to edit in Acrobat Pro 7.0 on a different workstation from what had created the file in the first place. However 7.0 does not have the user preference that @George refers to.
    B) Publisher opens original PDF file and then does a SaveAs, so that they would preserve what I had sent as an original. Can they have their MAC Acrobat X setup with predefined job options that would automatically create a PDF/A file? If yes, then even if I as the creator had not made a PDF/A file, the publisher (downstream) had done this with their SaveAs step. Then thereafter because of the setting that @George points to, they had locked themselves out of editing things.
    ======
    I appreciate anyone who tries to add clarity to this. I think I had already mentioned in one of my posts, that solving this between us and Publisher in just the USA is only the first set of steps in this chain. The PDF file that publisher will add comments to, will then be sent to Europe to someone who is translating the book, and I have no idea of what operating system nor what version of Adobe they are using (and they might even be using Adobe).
    Even if @George has solved the problem at the level of the Publisher, I expect that for the entire workflow that everything should be kept as a plain and simple PDF file, and have nothing in PDF/A "mode." For the current use we are not really trying to create a more archival storage of the content and appearance and so it seems that PDF/A has no advantage AND is creating some "compatibility" and usage problems.

  • What might cause MSAS stop processing requests under heavy load?

    I am testing a MSAS 2012 olap database with a high concurrency scenario. I wrote a test program that fires a high load of rather simple MDX queries to the database server (using ADOMD.NET).
    Every 500ms a new thread is started, every thread fires 500 queries without interruption. The query takes about 4ms execution time (measured in SQL Server Profiler). In total 250 threads are started, so 250x500 MDX queries are executed.
    This works for some time, but at a certain point MSAS doesn't execute the requests no more, instead only the number of connections are rising:
    [forum doesn't allow me to add image here]
    What could possibly cause such a behavior?
    The queries can be served from cache, no disk access should happen. I would expect that MSAS would then use the CPU to the limit, but this is not the case. After the outlined point, no CPU activity happens.
    It's not a very specific question, so if you have any ideas it would help me.
    Update: this problem only occurs when a connection is opened for each MDX query, when each thread reuses the connection, everything works as expected and MSAS peaks the CPU.
    Update: with SQL Server 2014 this problem doesn't occur on the same hardware.

    Hi Andreas, 
    Thank you for your question.  
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.  
    Thank you for your understanding and support. 
    Thanks,
    Simon Hou
    TechNet Community Support

  • What will cause the FP-1000 to fail initializa​tion?

    When our Field Point FP-1000 is initialized the Network LED and the Access LED flash then go blank. The Power LED remains illuminated and the Status LED extinguishes. This has become more frequent lately. Sometimes all that is needed is to re-initialize the Field Points again and sometimes cycling the power to the Field points is required. Most of the time a re-initialization has to be repeated several times before the Network and Access LEDs remain illuminated and no Power Controller failure is reported. Once the Field Points are working the FP-1000 will stop communicating with the other modules after several minutes and the Network and Access LEDs extinguish. In this case all that is required is one re-initialization to get all of the modules on-line.
    After the modules are all working and the initial failure is corrected the Field Points will operate for several hours without any failures. Then the same Power Controller Failure will pop up. As before all that is required is to execute a re-initialize to get the modules back on-line.
    We have replaced all of the Field Point modules several months ago for the same problem and the new units only occasionally faulted until the last couple of weeks. Now the failures are every time the modules are powered up.
    Are the Field Point units susceptible to corrosion when exposed to high humidity? We operate near the ocean, about 50 feet, but the Field Points are installed in an air conditioned trailer that once in a while will build up some moisture when the air conditioner cycles off.

    FP-1000/1001 modules do not have RTlogs.
    Considering that you are loosing communication with the module, but the module does not appear to be crashing from an internally recogonized failure (STATUS LED should start to flash), I would look at the communications and grounding. The FP-100X modules use the NETWORK and ACCESS LEDs to indicate when they recognize activity on the serial port (NETWORK) and when a valid command is addressed to the FP-100X or its attached modules (ACCESS). The FP-1000 uses RS-232 for data transmission. RS-232 relies on 3 primary wires; Rx, Tx, and ground. RS-232 ports are generally not isolated since they are single-ended signalling and need to share a common ground. What is the distance between the FP-1000 and the device it is attached to serially? How are both systems grounded (including power supplies)? It may be that due to the corrosive nature of seawater/salt aerosols, a portion of the system ground is at a different potential that is being charged and/or drifting over time. If you are resetting the FP-1000 by turning the power off, you may be allowing the ground to shift back to a level that allows the FP-1000 and device to communicate. Also, check the serial cable itself for broken pins/ground and corrosion.
    Regards,
    AaronMessage Edited by Aaron G on 04-21-2005 04:55 PM
    Message Edited by Aaron G on 04-21-2005 04:55 PM
    Message Edited by Aaron G on 04-21-2005 04:55 PM

  • HT204368 I have a blueant Q2 bluetooth.  Previously I had a Plantronics, and a Jawbone.  All three headsets use up the battery in 4 to 5 1/2 hours.  Actual talk time only about 5  to 10 minutes maximum. What might cause this.

    My bluetooth battery dies in approx. 4 - 5 hours. it's supposed to have 5 hrs talk time, 100 hrs. standby.  At the time it dies I've only used about 5 -10 minutes of actual talk time.  This is the 3rd bluetooth that has done this.  I could use some help here.  Thanks.

    Hi,
    I don't have the same problem as you but I know how to conserve energy battery.   Don't pay $49 extra service as it is a waste of money.  They don't do much and most likely at last they will tell you to contact your carrier and worst of all you need to send in your phone to have it check out.  It is a waste of time and they will give you a temporarily use phone that may not be a smartphone and worst of all you have to a fee and a deposit to use the temporarily phone.  It is not fair.  Don't you agree that the Carrier and Blackberry should pay for the issues?  Why does the customer have to pay for it?  It is not fair and there is no logic to it. the $49 is just for Blackberry to make more money to increase their bottom line in my opinion.  What ever the reason it is, it just does not feel right for the customer to absorb the cost.  Afterall, the customer did not cause the problem.  Right? Then, why does the customer have to pay for an issue, which customer did not cause?  why and why?  It all comes down to one logical conclusion.  Blackberry is not act on the Customer's best interest. To me, it seems like th bottom line and profits are more important than the customer needs.  WRONG WRONG WRONG AND WRONG BELIEVE.  Without the CUSTOMER, there is no BLACKBERRY.  It is  that simple.
    Here is how:
    1) Don't over charge the phone.  Once the phone charge.  Unplugg the the charger and let the battery drain until the last bar in yellow shows.
    2) watching too much videos drain the battery.  Be aware of it
    3) Turn off all application you don't use,  Facebook, Linked in for example.  Just sign out.
    4) Change the display intensity to minimum
    5) vibration mode and call sound drains the battery quickly.  Choose sound mode only. 

  • What might cause this ftp put error?

    In JCAPS5.1.3 I got an error:
    FtpFileClientImpl.put(): No connection is available. The ConnectionEstablishmentMode is [Automatic].
    Unforunately any stacktrace is lost. Can anyone give some hints as to why the automatically connecting connection wasn't available?
    thanks
    Rohan

    it's in there.... still does not work.. uhm...thanks for the idea thoguh
    You don't set a CLASSPATH with Tomcat. It ignores
    your system CLASSPATH if you have one, so if that's
    what you mean by "in there", that's not helping you.
    You need to find the JAR with that .class file in it
    and put it in TOMCAT_HOME/common/lib. That way every
    context running on that Tomcat server will see it.
    If that's what you have, then I don't know why you're
    getting this error.
    %He's beyond that - just didn't have commons-logging.jar, now he does.
    OP - I don't know about your next problem, but it's only a "warning" - looks like if you're not trying to do attachments with the API, you'll be fine. Otherwise, apparently you'll need some J2EE jar in your run-time classpath - is that happening on the client side, or the server side (shouldn't be the latter, as it is running in a J2EE container, so I wouldn't expect it to complain about not finding those classes)

Maybe you are looking for

  • Not a valid photoshop document after time machine recovery and reinstall of photoshop

    After a time machine recovery most of my photoshop documents recovered fine, however there are a select few (and my most recent work unfortuantely) that seem corrupt. It isn't all of my documents. Trying to recover them again from back-up doesn't see

  • Summit Sporting Goods Database

    How can I download script to create the Summit Sporting Goods Database ; In doc. B32122-01 "Oracle Reports User's Guide to Building Reports 11g": "You can download the SQL scripts to install the Summit Sporting Goods (SUMMIT) schema from the Oracle T

  • Alternate Exchange Rate Type Not Picked while converting from Document Currency to Group Currency

    Hello Gurus, We have setup an alternate Exchange Rate type MNB for rate M for the postings happening in Hungary. Local currency is HUF. Group currency is USD. If the document currency is, lets say, EUR, latest MNB rate is correctly picked up (EUR to

  • Restriction of VF01

    Hello All, For a specific need, we don't want to give the ability to some people to bill credit memo documents via the transaction VF01. However, these people should be able to bill the invoice documents via the same transaction. The solutions that w

  • Sharing/Exporting files from iMovie?

    Is there a way to share/export all the individual clips all at once w/ out iMovie making the file one long movie with all the clips?