Spring Contextsingletonbeanfactorylocator  problem in locating spring file

I am doing enhancement in one application developed by someone using Spring. I have to use one thirdparty jar which is placed in App-Inf/lib folder. Application uses Contextsingletonbeanfactorylocator to load the spring application context(s). This class by default try to look beanRefContext.xml file in the classpath. Now I have this file both in the App-Inf/lib jar file and in App-Inf/classes dolder. It is picking up this file from inside this jar(App-Inf/lib folder). How I can force weblogic to refer beanRefContext.xml from App-Inf\classes rather than App-Inf\lib?
Thanks in advance.

1. Remove the APP-INF/lib xml file inside the jar. Redeploy
2. Change the Class Loader Hierarchy [Custom Module Classloader Hierarchies].
For more reading:
http://download.oracle.com/docs/cd/E11035_01/wls100/programming/classloading.html#wp1083313

Similar Messages

  • Photoshop Elements 9 - problems with locating photo files

    I have saved my photos and my catalog on a removable hard drive.  When my laptop's techical support had to unexpectedly replace my laptop's hard drive, it meant I had to reinstall Photoshop Elements 9, which we have done.  For some reason, the My Catalog on the removable hard drive was showing that it was created in Photoshop elements 6 which was surprising since I know that I had used it in Photoshop Elements 9.  I went ahead and converted My Catalog.  It now shows the key tags,star ratings, and captions, etc.  Everything except the basic picture.  It is not looking for the files on the removable hard drive.  What can I do to get it to look at the removable drive where they are stored with a matching file name in the appropriate subdirectories?  The properties of the pictures seem to be showing the photos as being at various other locations that no longer exist!  What do I do?  I do not relish having to reimport, re-caption, re-edit, etc., etc. for hundreds of pictures.  Photoshop's catalog sensitivity is really frustrating.  I am about ready to go to another product.  If I have to re-construct everything again, it will be my second re-construction of a PS catalog.  And I will strongly consider a much more forgivng product.

    Suggest that you make your own collage, esp. since time is running out. Do the math and determine the size that each of the 5 pictures should be, leave enough room to add text.
    Crop each picture to the appropriate size.
    Go to File>new>blank file, enter height and width of your document, background white, resolution 300px/in. The resolution of the pictures should be the same.. However, resolution 240-300px/in is probably ok for printing
    Open the 5 picture files. Access pict. #1, go to Edit>copy, open the blank file created in step #3, then go to Edit>paste
    Repeat for the other pictures. Each will on on its own layer. Use the move tool to position, and resize with the corner handles if necessary.
    Using the type tool add text.
    TIP: Open the grid to help you to position the pictures. The grid can be configured via Edit>Preferences>Guides and grid. You may want to check "snap to grid" under View>snap to grid

  • Unable to locate Spring NamespaceHandler for XML schema namespace

    I am not sure if this is the best practice approach but this is the problem I am ruining into. Below, I explain what I am doing:
    1) What I am doing:
    =============
    Based on the oracle incubator example (http://coherence.oracle.com/display/INCUBATOR/Processing+Pattern+Examples); I am running a server and submitting tasks through a proxy application that submits them to ProcessingPatternConfigurator; let's call my task processReport.
    a) my processReport is using spring and ibatis together, I created a utility static class to obtain a spring context and retrieves beans using the following lines ( see exhibit "A1 and A2" below).
    b) when my task calls the context and that spring loads, it is failing with the error show in exhibit "B".
    I suspect I am missing a lib? I googled the error and searched you site but could find a meaningful discussion on it. I guess my question is if this is not the best approach, how do I integrated with spring initializing beans and setting up ibatis framwork, providing beans and database access through Ibatis for each task ruining on the grid (processReport).
    thanks
    A1) processReport (submitted in the grid) uses this line
    AbstractXmlApplicationContext ctx = (AbstractXmlApplicationContext) AmrContextUtil.getInstance();
              System.out.println("Classpath loaded. Executing Report...");
              ReportProcessor repProcessor = (ReportProcessor) ctx.getBean("reportProcessor");
    A2) Here is the AmrContextUtil:
    import org.springframework.context.support.AbstractApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    public final class AmrContextUtil {
         private static AbstractApplicationContext ctx = null;
         public AmrContextUtil() {
              super();
         public final static synchronized AbstractApplicationContext getInstance(){
              if (ctx == null){
                   ctx = new ClassPathXmlApplicationContext("classpath:config/applicationContext.xml");
                   setCtx(ctx);
              return ctx;
         public final static synchronized AbstractApplicationContext getCtx() {
              return ctx;
         public final static synchronized void setCtx(AbstractApplicationContext ctx) {
              AmrContextUtil.ctx = ctx;
    B) Here is the error reported by the server:
    2010-02-10 15:42:28.312/57.986 Oracle Coherence GE 3.5.2/463 <Warning> (thread=GridExecutor:Thread-2
    , member=1): TaskRunner - Failed to process 0x00000126B99E5524AC1F007AAB1587BBCFEC5E6637E1DED6CCB984
    03D6AADF4D due to:org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:config/reports-application.xml] Offending resource: class path resource [config/applicationContext.xml]; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unexpected failure during bean definition parsing
    Offending resource: class path resource [config/reports-application.xml] Bean 'reportSqlMapConfig'; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: *Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/util]*
    *Offending resource: class path resource [config/reports-application.xml] Bean 'reportSqlMapConfig'*
    -> Property 'resourceMap'
    c)Here is my application-context.xml offending line:
    <bean id="reportSqlMapConfig"
    class="com.xx.report.generator.ReportSqlMapConfig">
    <property name="resourceMap">
    <map>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.FPA"/>
    </key>
    <value>classpath:config/diehardReportSqlMapConfig.xml</value>
    </entry>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.FCN"/>
    </key>
    <value>classpath:config/falconReportSqlMapConfig.xml</value>
    </entry>
    <entry>
    <key>
    <util:constant static-field="com.xx.report.domain.ReportType.ODS"/>
    </key>
    <value>classpath:config/odsReportSqlMapConfig.xml</value>
    </entry>
    </map>
    </property>
    </bean>

    My guess is that something is broken in the configuration of the cacheServer and its not finding
    all of the dependencies that your process pattern application needs. Probably the best way
    to debug this stuff is to define a static main in your runnable task which will make the call
    to the run() method and invoke it as the main class using the identical settings (classpath,
    run directory) that you are using to launch the Coherence cache server.
    Regards,
    Bob

  • Error: "We're having a problem opening this location on file explorer. Add this website to your trusted sites list and try again"

    Hello,
    When i try to open document library from SharePoint Production portal then it throws the specified error. However, when i open document library from SharePoint Development portal then it opens it in file explorer quite easily.
    Production portal is on https whereas development portal is on http. Also, UAG has been configured on production portal.
    Any idea where it's getting stuck up? Surely, this is not a browser issue on Windows 7 as it's opening the development portal's document library on the same machine.
    I've also done following things:
    - Configured Desktop Experience on production environment
    - Installed the hotfix for Windows 7
    Regards,
    Sohaib
    Sohaib Khan

    Hello Sohaib.
    Here is the list of causes defined here.Hope it helps you
    The cause and the resolution methods are the following:
    Cause: There is a missing Root site collection...
    Resolution: Check and ensure,  that the “Managed Paths” are not changed in the web Application’s page, there is a (root) explicit for
    this web application and there is a working Root site collection.
    If for any reason this is not the case in your environment, you may try the following:
    - Apply (if not already) the following Hotfix to one of those clients:
    Error when you open a SharePoint Document Library in Windows Explorer or map a network drive to the library after you install Internet Explorer 10 in Windows 7 or Windows Server 2008 R2 
    http://support.microsoft.com/kb/2846960
    Then, try to delete the cache of the IE browser before reproducing the issue. Check the result..
    - Try to temporarily disable the Antivirus and test again.
    - Check if you have installed the Desktop Experience feature on the SPS13 server.
    - Check if you face this behavior with all users, Or only with some specific ones, Or with all different client OSes.. 
    Otherwise you will need to collect the logs to further analyze...
    http://blogs.msdn.com/b/george_bethanis/archive/2013/11/04/sps13-quot-open-with-explorer-quot-random-error-quot-we-re-having-a-problem-opening-this-location-in-file-explorer-add-this-web-site-to-your-trusted-sites-list-and-try-again-quot.aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Sharepoint 2013 explorer view error - problem opening this location in file explorer (HTTPS + Win7 Enterprise 64 bit + IE9 32 bit + Office 2007 32 bit)

    Hi,
    We have a problem using Sharepoint 2013 explorer view. (Error - We're having a problem opening this location in file explorer. Add this web site to your trusted sites list and try again).
    I'm using Windows 7 Enterprise 64 bit, Office 2007 32 bit and IE9 32 bit. And the sharepoint site is a https site.
    Some people in my organization are able to browse and some users getting the above error. (with the same client machine configuration)
    If I clear my browser cache, closes the browser and open it then the explorer view is working. But after a minute if I try again I'm getting the above mentioned error. This 1 minute expiration happens is since the first time I have used explorer
    view, not since I opened the browser.
    I have tried the following on my machine:
    1. Modified the web client service to run automatically.
    2. Verified the sharepoint site is part of trusted sites (https://*.spsite.com/)
    3. Compatibility mode is turned on.
    4. Tried adding
    AuthForwardServerList in the webclient registry settings under parameters. (restarted the web client)
    5. Verified the BasicAuthLevel set to 1 (since we are using SSL). Tried setting the BasicAuthLevel to 2 as well. (restarted the web client)
    6. Tried installing software update for web folders (KB907306).
    Verified the below on the production server:
    1. The web application has the root site collection.
    2. It has WebDav Publishing disabled under IIS Web Server feature.
    Could some one please help me in resolving this issue?
    Thanks.

    Hi  Deepak,
    According to your post, my understanding is that you failed to use "Open with Explorer"  in a document library.
    For your issue, please verify the following:
    ActiveX controls must be enabled in IE.
    As you are using Windows 7 Server as the client computer, you must install the Desktop Experience feature from Server Manager.
    Make sure there is a working Root site collection.
    Install this hotfix for windows 7 work with sharepoint 2013 :hotfixv4.microsoft.com/.../463266_intl_x64_zip.exe
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Problem with locating file with windows

    Hi,
    I tried to use SAX parser to read some files through network using windows 2000.
    I use parser.parse("\\\\Some directory\\some file");
    when I try to execute program, SAX translates \\ to / and it can't locate the file.
    Is there solution for this problem or should I install http server on far end machine and use http:....
    Thanks.

    use this syntax:
    parse("file:////server_name/share_name/path/your.
    ml");
    I came to the same conclusion. But the "file://" prefix may only be present in front of a UNC file spec (\\server\share\...). If I use a drive letter (c:\mydir), it works without (and only without!)the "file://" prefix.
    I am also using NT4, but would be very interested:
    a.) if this is the same for Win2000 and XP
    b.) if this is documented somewhere (I find this behavious rather strange)
    Regards,
    Bernhard

  • Problems "locating" referenced files after importing from iPhoto.

    I recently began importing old iPhoto libraries to Aperture, mostly successfully, but have run into a couple problems locating referenced files. While the locate referenced files function worked for most of the photos, there are a handful of photos that, when I located the original file,  the time stamp was different (by 2 hours in most cases) and it was about 15% smaller than the file Aperture was looking for. As a result, even though it was clear from the thumbnails that they were the same images, Aperture doesn't even give me the option to Reconnect them.
    Aperture 3.4.5
    OS X 10.7.5

    . I use the Reconnect All button, but it only finds the one file, even when there are hundreds more in the same folder that are unlinked.
    Reconnect all works best, if you select all files that need reconnecting at once, and then select the first file in the list to reconnect. If the other files are in the same folder and are correctly named and match, then "reconnect all" should do it. But if the filenames differ, you will have to do it one by one.
    Also,  the files are all still correctly linked in iPhoto, but every single link is broken once I import it to Aperture.
    You are importing with "File > Import > Library", correct?
    That is supposed to work. Have you tried to repair your iPhoto Library before importing to Aperture?
    Use iPhotos First Aid Tools to repair:
    Try to repair the permissions, followed by repairing the library.
    To launch the First Aid Tools,  hold down the Command and Option keys ⌥⌘ while double-clicking the iPhoto library or the iPhoto icon in the Dock.
    The iPhoto Library First Aid dialog appears.  Select the Repair option you want to use - first "permissions", then "database".
    Léonie

  • Locate referenced files problems

    hi there,
    i have a big problem with aperture "locate referenced files" dialog panel.
    it doesn't allows me to select the source hd where files are stored.
    i usually create new library and import files as referenced. but when you move them to another hd, and Aperture doesn't find them, it seems impossible to select the new source hd.
    can anybody help me? it is a Aperture's problem or a conflict within Aperture and Os?
    is a matter of the hard disk?

    In the Info dialog, what is listed under "General➞Format"?
    the format is macos extended (journaled)
    i made a little video to explane what appens. you can follow it here

  • ITunes can't locate music files

    Any music that was copied into my iTunes music folder cannot be located. Anytime that I try to play the file from iTunes, it shows an error message, requests that I locate the file, and then proceeds to tell me that I need to format my hard drive. When I try to open my iTunes music folder directly, my computer freezes and then after 10 minutes informs me that my hard drive needs to be formatted. I never had this problem until I downloaded the new version of iTunes. This is only going on with music I have copied into my iTunes folder, which is all the CDs I have or had. Many of these CDs I no longer physically have. I have tried to use a previous iTunes library to fix the problem. I have also moved my preferences files to the desktop as suggested in another thread, but neither have worked. I am not having any other problems with my computer that would encourage me to format my hard drive besides this issue. I would appreciate any help possible with this predicament.
    Compaq Presario V2000   Windows XP   AMD 64, 60GB

    Any music that was copied into my iTunes music folder cannot be located. Anytime that I try to play the file from iTunes, it shows an error message, requests that I locate the file, and then proceeds to tell me that I need to format my hard drive. When I try to open my iTunes music folder directly, my computer freezes and then after 10 minutes informs me that my hard drive needs to be formatted. I never had this problem until I downloaded the new version of iTunes. This is only going on with music I have copied into my iTunes folder, which is all the CDs I have or had. Many of these CDs I no longer physically have. I have tried to use a previous iTunes library to fix the problem. I have also moved my preferences files to the desktop as suggested in another thread, but neither have worked. I am not having any other problems with my computer that would encourage me to format my hard drive besides this issue. I would appreciate any help possible with this predicament.
    Compaq Presario V2000   Windows XP   AMD 64, 60GB

  • How do you locate the file where iPhoto library is kept? I moved iPhoto library from hard drive to external dedicated photo drive.

    I am trying to restore some elements of my iPhoto library using time machine.
    Apple instructions call for locating the file where iPhoto library is kept, and tells you where it is on your hard drive. But I've recently moved my iPhoto library to a dedicated external hard drive, and copied my i photo library there. when i click on it, all the photos are there, but it's an iPhoto library, not a file. 
    When I go into time machine and click on the date i would like to enter, most of my apps have a circle with a line through it, unaccessible. So: a related question, how would i retrieve a photo file from time machine's previous backup? thank you.

    Thank you!
    I am trying to retrieve photo uploads from my Android phone. When I last updated my OS, most of these vaporized, leaving only thumbnails. I have had two lengthy sessions with Apple phone support, but still haven't solved the problem.
    Apparently I can't go back to July '14 iPhoto in time machine and browse files; i have to copy the entire library.
    Which I just did, taking 2 hours.
    In order to open the iPhoto library from July '14, I had to first update iPhoto.
    When I went into the files, the same problem existed -- photo files gone, only thumbnails there. So now I'm thinking that it's the update that was the problem. This scares me to death, because when we're asked to update, we don't get a menu of preferences to make sure something has been unchecked, like the copy option i had enabled when opening photo files from my phone, which i store in a dropbox folder.
    No one at Apple could tell me why this happened, so I have no idea how to prevent it from happening in the future.
    That's why I'm trying to create better backups...but i can't figure out deja vu, because it won't open and sync the iPhoto library folder -- it wants me to find the file, and i don't know where it is on the external dedicated photo drive.
    I realize this is about six issues, not one. But I'm really appreciative of any help i can get!

  • Hi! I´m having problems with showing video files in Qlab on my Macbook Air. A sound/video technician told me to "blow out" my Mac. Was told to use  cmd+ r  when restarting. Is this the right way?

    Hi! I´m having problems with showing video files in Qlab on my Macbook Air. It started suddenly. Consulted a sound/video technician who told me to "blow out" my Mac. Was told to use cmd+r  when restarting. Is this the right way to clean up my Mac? And is it likely that some kind of bug is causing problems for Qlab to show video files? I´ve already tried with a bunch of different video files and sometimes Qlab plays them and sometimes not. I need the Qlab playlist for a theatre show and only have a week until showtime so starting to really worry. Is there anyone out there who can help?

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • Problem in Creating .wsdl file and mapping.xml with ant

    hi
    i am created my .wsdl file and mapping.xml file with wscompile tool but when i run this by ant tool it show a problem.
    the command runs on command prompt but when run throught ant file it shows a following error :-
    Execute failed: java.io.IOException: CreateProces: wscompile -define -mapping build\classes\META-INF\mapping.xml -d . -nd build\.................and so on
    so if anybody have any idea then plz help me asap
    thanx

    The following Ant snippet is the way I've defined my wscompile task. I'm creating a web application and it looks like yours might be an EJB endpoint, but you can adjust where necessary:
    <taskdef name="wscompile" classname="com.sun.xml.rpc.tools.ant.Wscompile">
         <classpath refid="compile.classpath" />
    </taskdef>
    <target name="init">
         <echo message="-------- ${appname} --------" />
    </target>
    <!-- This target compiles the server components using an existing WSDL as the driving document.
           The configuration file must use the <wsdl> element giving the location (local file system
           or URL) of the WSDL document.
           Note: the fork argument is needed to over come a bug when using the mapping argument. See
           http://forum.java.sun.com/thread.jspa?threadID=592994&tstart=0
      -->
         <target name="generate-server-from-WSDL" depends="init">
              <wscompile fork="yes"
                           keep="true"
                           base="${basedir}/WebContent/WEB-INF/classes"
                           import="true"
                           features="wsi"
                           xPrintStackTrace="true"
                           verbose="true"
                           mapping="${basedir}/WebContent/WEB-INF/jaxrpc-mapping.xml"
                           sourcebase="${basedir}/src"
                           config="${config.server.doclit.file}">
                   <classpath>
                        <path refid="compile.classpath" />
                   </classpath>
              </wscompile>
         </target>
         <target name="compile-server-from-WSDL" depends="generate-server-from-WSDL">
              <javac srcdir="${basedir}/src" destdir="${basedir}/WebContent/WEB-INF/classes" debug="${compile.debug}">
                   <classpath refid="compile.classpath" />
              </javac>
         </target>Just make sure that the named destination directories exist before you run the script.
    If you'd like more details on the wscompile Ant task, I found the following pages invaluable:
    https://jax-rpc.dev.java.net/whitepaper/1.1/index-part1.html

  • Problem while updating excel file in Km

    Hai,
      I am using jxl api to generate excel file . I need to update the excel file. for that i am creating tht excel file in temp location , and updating using this code.
    excelFile=new File(fileName);
    embedDataIntoExcel();
    workbook.write();
    workbook.close();
    IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
              com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
               IUser ep5User =WPUMFactory.getUserFactory().getEP5User(sapUser);
               ResourceContext context = new ResourceContext(ep5User);
               RID rid = RID.getRID("/path/excelFile.xls");
               IResourceFactory factory =ResourceFactory.getInstance();
               IResource folder = (IResource) factory.getResource(rid,context);
              FileInputStream fin = new FileInputStream(excelFile);
               fin.read();
               Content content = new Content(fin,"ms-excel", -1);
               folder.updateContent(content);
    <b>problem is the excel file is generating with some junk data </b>
    how can i solve this
    regards,
    naga

    Hai,
    I am using jxl api to generate excel file . I need to update the excel file. for that i am creating tht excel file in temp location , and updating using this code.
    excelFile=new File(fileName);
    embedDataIntoExcel();
    workbook.write();
    workbook.close();
    IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
              com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
               IUser ep5User =WPUMFactory.getUserFactory().getEP5User(sapUser);
               ResourceContext context = new ResourceContext(ep5User);
               RID rid = RID.getRID("/path/excelFile.xls");
               IResourceFactory factory =ResourceFactory.getInstance();
               IResource folder = (IResource) factory.getResource(rid,context);
              FileInputStream fin = new FileInputStream(excelFile);
               fin.read();
               Content content = new Content(fin,"ms-excel", -1);
               folder.updateContent(content);
    problem is the excel file is generating with some junk data
    how can i solve this
    regards,
    naga

  • Aperture 3, iPhoto-08 and Locate Referenced Files

    I usually import my photos to iPhoto-08 and work with my favorite ones in Aperture as Referenced Files.
    After upgrading my hard drive and using SuperDupper to restore my system to the new drive, the referenced masters are missing. I have tried Locate Referenced Files but the problem is that the iPhoto-o8 Library is shown as empty which is not. Navigating the bottom panel in Relocate Referenced Files, iPhoto-08 Library only shows 2 folders: Events and Last Import, with nothing inside them.
    Using Aperture iPhoto Browser I can see that all the files are in there. Using Finder I can see all my files under iPhoto-08 Library->Originals. No problem under iPhoto either.
    The problem seems to be that Aperture doesn't recognize iPhoto-08 Library structure since I upgraded my hard drive.
    Has any one had this problem? Any solution?
    Thanks in advance,
    Adolfo

    I just found out this piece of information:
    "Yep - Aperture 2 lets you reference files in your iPhoto libraries, while Aperture 3 does not... I have imported all my iPhoto libraries to the Aperture library now in a separate location from the iPhoto libraries."
    (http://discussions.apple.com/thread.jspa?threadID=2328349)
    Can somebody confirm this?
    Adolfo

  • How can I locate the file /Library/Keychains/FileVaultMaster.cer to reset my master password? Thanks!

    How can I locate the file /Library/Keychains/FileVaultMaster.cer to reset my master password? Thanks!

    The files that weren't inside the media folder on the original machine need to be copied over to exactly the same paths as they had on the source machine. See this thread for an ongoing discussion of a similar problem. See also this post on migrating the iTunes library.
    tt2

Maybe you are looking for

  • Reset of counter in file adapter after restart J2EE

    Hi, When the J2EE engine is restarted all counters in the file adapter (Add Counter to filename) are resetted and start at 1 again. Is this a bug? How to prevent this? Even when I put into the file adapter that is has to start counting at 00009 it st

  • Macbook pro to flat screen

    I have an "older" MacBook Pro that doen't have a mini HDMI port. Is there a way to link the MacBook to my flat screen tv? I just got back from a trip to Norway, and would like to show my IPhoto slide show on the big screen.

  • TiTNS operation timed out

    Hi All, DB 10.2.0. I have one issue , where my tnsping is timing out. I have done some investigation and found, when I do a ping to host , it's pingable as given in listener.ora file, but strange to see the ip is different. it seems to me the servet

  • All inclusive Joins in Business Objects XI

    Post Author: Jethro CA Forum: WebIntelligence Reporting Hi All,Hopefuly this is a simple one for somebody...  Although new to BO XI, I have several years experience on Databases so jumped straight into WEBI I have two tables connected via a  value ca

  • Premier elements 10 can't find a burner when using Windows 8.1 Would using a USB disc burner solve the problem?

    Using Premier Elements10 with Windows8.1, the program cannot detect a burner. I understand that Windows8 designates the burner as a DVD in order to facilitate drag and drop. I don't want to get too technical and want to know if purchasing an external