problem to run build.xml

I downloaded the Demo Application Fusion Store Front "FusionOrderDemo_R2.zip" of

I am facing following problem.



BUILD FAILED
C:\JDeveloper\mywork\Sherman_FOD\Infrastructure\Ant\build.XML:51: The following error occurred during the execution of this line:
C:\JDeveloper\mywork\Sherman_FOD\Infrastructure\DBSchema\build.XML:91: The following error occurred during the execution of this line:
C:\JDeveloper\mywork\Sherman_FOD\Infrastructure\DBSchema\build.XML:56: The following error occurred during the execution of this line:
C:\JDeveloper\mywork\Sherman_FOD\Infrastructure\DBSchema\build.XML:28: Class not found: oracle.jdbc.OracleDriver JDBC driver could not be loaded


Thank you
Prateek

When you went to the page where you downloaded FOD, namely http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html

Did you read at the top where it says «this will not work in earlier versions...» See the bottom of this page for older versions? »

And when you went to the bottom of the page, you have found a link.

And when you follow this link, you have found a page for the 11.1.1.5 version of the demo.

And at the bottom of this page you find links to previous versions, so

A Little reading goes a long way {noformat} :) {noformat}

John

Tags: Java

Similar Questions

  • Eclipse Blackberry plug-in: "run as" problem with build.xml

    Hello

    I use windows 7 (32 bit), Eclipse 3.5 with the blackberry plugin.

    I created a very simple "helloworld" "TestBuild" blackberry project that uses build.xml to build. Here's buildRIM desciption I used in build.xml


      
    jdkhome = "C:\Program Files\Java\jdk1.6.0_20"
    DESTDIR = 'out '.
    output = "TestBuild.
    quiet = "false" >
       
       
    title = "TestBuild" vendor = 'abc '.
    version = "Version = 1.0" description = "My Test Build1"
    arguments = "" systemmodule = 'false' "
    runonstartup = "false" startuptier = "7".
    "RibbonPosition ="0"icon ="... /res/img/TestBuild.png ">
       
       
       
        
         
         
        

       

      
      
       
        
        
        
        
        
            
       

       
      
     

    By right click on build.xml, when I "Debug As"-> remote Java Application, everything works fine.

    However when I do "run as"--> Blackberry app man goes well and called the Simulator, but without the built application.

    In the end, I get this error:

    Packaging project TestBuild
    C:\eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25\components\bin\rapc.exe -quiet codename=deliverables\Standard\5.0.0\TestBuild deliverables\Standard\5.0.0\TestBuild.rapc -sourceroot=C:\Users\Shikha\workspace\TestBuild\src;C:\Users\Shikha\workspace\TestBuild\res -import=C:\eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25components\lib\net_rim_api.jar; C:\Users\Shikha\workspace\TestBuild\lib \bb-ant-tools.jar;C:\Users\Shikha\workspace\TestBuild\build.xml C:\Users\Shikha\workspace\TestBuild\bin
    
    I/O Error: error in opening zip file: C:\Users\Shikha\workspace\TestBuild\build.xml
    Packaging project TestBuild failed (took 1.327 seconds)
    

    Please help me!

    Hey thanks for your reply. Yes, indeed, I had added build.xml to build the access road. Thus, even when I have not used build.xml for building application, it still existed in the way of the construction and has caused the problem.

    works fine now.

    Thank you!

  • Building xml in oracle without unnecessary tags using sql

    I wanted to build XML in oracle using sql, I found a way to construction using sql functions after a little research, I am completely unaware of any XML. My query is


    SELECT XMLELEMENT("orderwave",
      XMLAGG
    (XMLELEMENT("order_header",
      
    -- XMLATTRIBUTES(t2.l_name AS "order_number"),
      XMLFOREST
    (
      nvl
    (t2.l_name,' ') as "order_number",
      
    (
      SELECT XMLAGG
    (XMLELEMENT("order_line",
      XMLFOREST
    ( nvl(t1.l_name,' ') AS "label_type",
      nvl
    (t1.l_num,0) AS "lpn",
      nvl
    (t1.l_num,0) AS "sku"
      
    )
      
    )
      
    ) 
      FROM test_table t1
      WHERE UPPER
    (t1.record_type)='D'  
      
    ) AS sap
      
    )
      
    )
      
    )
      
    ) AS HEADER
      FROM test_table t2
      WHERE UPPER
    (t2.record_type) ='H';


    My problem is for using xmlforest, I had to use alias name 'sap' in my query to work and to get xml output. If i am using that, I am getting an unwanted tag 'SAP' around my data which I have to later cut it, which is unacceptable. Is there a way I can get rid of this extra 'SAP' tag without having to cut. The output data is


    <orderwave>
      
    <order_header>
      
    <order_number>order1</order_number>
      
    <SAP>
      
    <order_line>
      
    <label_type>test1</label_type>
      
    <lpn>1</lpn>
      
    <sku>1</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type>test2</label_type>
      
    <lpn>2</lpn>
      
    <sku>2</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type />
      
    <lpn>0</lpn>
      
    <sku>0</sku>
      
    </order_line>
      
    </SAP>
      
    </order_header>
      
    <order_header>
      
    <order_number>order2</order_number>
      
    <SAP>
      
    <order_line>
      
    <label_type>test1</label_type>
      
    <lpn>1</lpn>
      
    <sku>1</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type>test2</label_type>
      
    <lpn>2</lpn>
      
    <sku>2</sku>
      
    </order_line>
      
    <order_line>
      
    <label_type />
      
    <lpn>0</lpn>
      
    <sku>0</sku>
      
    </order_line>
      
    </SAP>
      
    </order_header>
    </orderwave>


      Any help is really appreciated and thanks in advance.

    -- sample data
    with test_table
    as
    (
        select 'H' record_type, 'order1' l_name, 0 l_num from dual
        union all
        select 'H' record_type, 'order2' l_name, 0 l_num from dual
        union all
        select 'D' record_type, 'test1'  l_name, 1 l_num from dual
        union all
        select 'D' record_type, 'test2'  l_name, 2 l_num from dual
    )
    -- end of sample data
    select xmlelement
           (
              "order_wave"
            , xmlagg
              (
                xmlelement
                (
                    "order_header"
                  , xmlelement("order_number", t1.l_name)
                  , xmlagg
                    (
                      xmlelement
                      (
                         "order_line"
                       , xmlelement("label_type", t2.l_name)
                       , xmlelement("lpn", t2.l_num)
                       , xmlelement("sku", t2.l_num)
                      )
                    )
                )
              )
           ) xml_data
      from test_table t1
     cross
      join test_table t2
     where t1.record_type = 'H'
       and t2.record_type = 'D'
     group
        by t1.l_name;
    
    -- output
    /*
    
            
                    order1
                    
                            test1
                            1
                            1
                    
                    
                            test2
                            2
                            2
                    
            
            
                    order2
                    
                            test1
                            1
                            1
                    
                    
                            test2
                            2
                            2
                    
            
    
    */
    
  • Problem in Flex Builder user interface after installation of Flex 3

    So, here's an interesting question. And my apologies in advance if it has been reported before. But I spent the greater part of two days, installation / uninstallation / cleaning / resettlement. However, still having the problem with Flex Builder 3:

    After the launch of Flex Builder 3, I create a new project and "right click" on the name of the project in the browser in Flex in order to launch the 'Properties' dialog box. " Tab property page resource, various fields are truncated and drop-down list boxes are all jacked. In fact, under the Flex Build Path tab, it is completely empty. Basically, throughout the Flex Builder IDE, I have various missing fields or bizarre behavior.

    Then... at this point, I've pretty much uninstalled, uninstalled the JRE (think this is related to java), cleaned the system registry, uninstalled flash players, edited the flexbuilder.ini with one "-clean", installed updates for Vista (so now this system is on SP1) essentially... I have everything humanly possible short of formatting the system again.

    Running Windows Vista x 64; 8 GB of RAM; NVidia 8800 video card.

    To make sure that I wasn't completely lose my mind... I installed on a portable system and everything ran like a charm. Thus, after traveling through these forums and Google the issue to death... I can't find the answer.

    If anyone can help me it would be much appreciated!

    You're probably also using the logitech SetPoint on Vista x 64 drivers, who have a known conflict with Eclipse 3.3.

    (The 'solution' is one) to get rid of the drivers (but I love my DiNovo Edge keyboard!) or Eclipse use b) 3.4M4 and the plugin. However, it is not entirely taken in charge, so they sometimes issues, especially with design mode, so generally I use FB3 and switch and then run away when I need to change a setting (not optimal, I know, but not as frequent as that, once a day on average for me). Or just edit the parameters with a text editor.

    Or (c) perform virtualization VMWARE etc. and do it all in x 86.

    (Mise en garde, je n'ai jamais essayé un) personally, but have read that it works.)

  • Y560 - problems when running games

    Hello world

    I bought the Y560 about a year and half ago and I was a proud owner since.

    A few days ago I formatted drives, then reinstalled Windows and since I have problems executing Battlefield 3.

    The problem is this: after a few minutes of play, the screen freezes and I can't hear a sound of "grrrrrrrrrrr" on the speakers. I can not give any command keyboard and can only force - turn off the laptop.

    I had no problems to run the game before you reinstall Windows, so I guess that the problem lies in a driver conflict, but how do I know which drivers are the cause?

    Anyone have any ideas on how to solve this problem?

    Thank you very much

    Vyksa

    Problem solved! It turned out that the problem was with the game.

    Thanks to you all.

  • How can I save xml file n, run the xml file? Please help me

    How can I save xml file n, run the xml file? Please help me

    Hello

    The question you have posted will be well suited in the MSDN forum. Click on the link below.

    http://social.msdn.Microsoft.com/forums/en/categories/

    In the meantime, I suggest you to return the item mentioned below.

    How to use XML Notepad to create an XML document

    http://support.Microsoft.com/kb/296560

  • Whe trying to download anything, I get a warning of viruses despite tests showing no problem am running Vista

    Whe trying to download anything, I get a warning of viruses despite tests showing no problem am running Vista

    And how does this relate to the features of Windows Update?

    Help us help you: start by reading this post 'sticky '...

    What information to post in the Windows Update forum
        http://answers.Microsoft.com/thread/1467f44b-ee27-4F7D-98d7-f1c4b35b3395

  • By the way the Pls/Sql variable to build xml via XQuery code

    v_ID number (3): = 5;

    v_UserID nvarchar2 (5): = 'abc ';

    v_Password nvarchar2 (8): = "passw0rd"

    v_Panel nvarchar2 (20): = "AppPnl";

    v_loginFailReason nvarchar2 (200): = 'IUIP | Invalid user or password ID ';

    v_SpParam xmltype: = XMLTYPE ("< QueryParam / > '");

    SELECT Xmlquery (' for $el in /QueryParam)

    return < QueryParam > {Rec <>

    < EmpID > {$ID} < / EmpID >

    < user name > {$UserID} < / UserID >

    < password > {$Password} < / password >

    < sign > {$Panel} < / sign >

    < reason > {$loginFailReason} < / reason >

    AppLogin < callde > < / callde >

    {< / rec >}

    < / QueryParam > '

    Passage v_SpParam

    , v_ID AS "ID".

    , v_UserID AS "UserID".

    v_Password AS 'Password'

    , v_Panel AS 'Panel '.

    , v_loginFailReason AS 'loginFailReason '.

    RETURN CONTENT)

    in the double v_SpParam;

    OPEN rc to SELECT v_SpParam FROM dual;

    DBMS_SQL.return_result (RC);

    the result is:

    < QueryParam >

    < rec >

    < EmpID > 5 < / EmpID >

    < user name > < / UserID >

    <>password < / password >

    < sign > < / sign >

    < reason > < / reason >

    AppLogin < callde > < / callde >

    < / rec >

    < / QueryParam >

    Pls. Let me know how I move correctly variable to build xml code, I don't get values in the xml result.

    Should you variables defined as nvarchar2, for a particular reason?  Switching to simply varchar2 allows to operate as you (in 11.2.0.4).  Right now, I'm not sure of the solution correct nvarchar2.

  • Increase the size of the JVM memory in build.xml?

    Hello
    I want to know if it is possible to increase the size of the JVM memory in the file "build.xml" of my java fx itself? If so, how to go on this subject?
    Thank you very much.

    I think you can achieve this by specifying .

    For example:

     
    
         
         
              
              
         
    
    
    

    Hope that helps!

    Published by: ytw on November 16, 2012 12:30

  • What is the use of SOA project build.xml

    Hi all

    I am new to this area of oracle SOA.
    could you please explain to me what is the purpose of build.xml and build.property in soa project files.

    Thanks in advance...

    Hi '.

    Helps these two files in the deployment of the project to the server, usually in the phase of development projects are deployed through JDeveloper.
    In Jdev we right-click and here also deploy these files are used to deploy the jar of project. These files do the same work as any other web project
    File Build.xml and property.xml.

    Yatan-

  • problem after running with spreadsheet report

    Hi evry one

    Thers a problem after running with the spreadsheet report.
    After runing iexplorar open and close quickly no else
    When I check the work of successful professional appserver with say spreadsheet.
    what I'll do.


    Thank you.

    Hello

    Do you use the internal order of Oracle Forms WEB. SHOW_DOCUMENT?

    If Yes, take a look at: "IE7 windows opened and closed immediately.

    http://www.experts-exchange.com/software/Internet_Email/Web_Browsers/Internet_Explorer/Q_23304982.html

    You can test the suggested solution:

    We found the framework we needed, in the Internet Options
    Security tab, if you select the internet zone, then click Custom level
    button, then scroll down to the downloads section, the first option is
    Ask confirmation for file downloads, set this to allow Guard IE 7
    to interfere with this kind of download.

    Concerning

    Example with screenshots:
    http://www.Celt.iastate.edu/WebCT/SecuritySettings.html

    Concerning

  • Problems with tutorial building a website with Web Premium CS4 – part 2: creating a local site

    I have problems with

    Building a website with Web Premium CS4 - part 2: creating a local site

    Since after taking all the steps in the tutorial and choosing Localhost from the menu to open the homepage of the Apache server in a web browser, IIS7 opens instead of the home page of the Apache server...

    I use Google Chrome as the default webbrowser...

    Looks like you have IIS as the Web server 'by default'.

    Try this http://localhost: 8080

    If that takes you to the Apache Web server, then you must set it as your default.

    Jim

    News added: it is possible that both are listening on port 80 and IIS is a winner. To reconfigure IIS, open it and site web by default, you must change the site link. Http must be on port 8080.

    If Apache is already set to port 80, then you will not need to do anything else. I think that is fair. I don't know how to set up Apache to listen on port 80 if it is defined on port 8080. I do not have to look at.

    Make sure that you stop and restart your web services.

  • Problem with XMLSerialize / indented XML

    My problem is that my XML output is only a line like:
    <? XML version = "1.0" encoding = "ISO-8859-15? > < rss version = "2.0" > < channel > < title > Test < / title > < / channel > < / rss >

    IAM want to export xml like this:
    <? XML version = "1.0" encoding = "ISO-8859-15? >
    < rss version = "2.0" >
    .. < String >
    ... < title > Test < /title >
    .. < / channel >
    < / rss >


    I heard from xmlserialize that should be used like this:
    Select xmlserialize (DOCUMENT xmltype (' <? xml version = "1.0" encoding = "ISO-8859-15"? > < rss version = "2.0" > < channel > < title > Test < /titre > < / channel > < / rss > ')) twice;

    but its no change in my outings.
    Can someone help me?

    Published by: Oliver L the 07.11.2008 14:15

    You are interested in the concept called "pretty printing".
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14259/xdb04cre.htm#sthref469

    If you're on 11, you can use one of the examples posted by mdrake to Re: generation of XML using XMLGEN

    The concept of printing enough has been discussed in this forum before and I think that the SQL and PL/SQL forum as well.

    select xmltype('Test').extract('*')
     from dual
    

    The question to ask is "do you really need to? Compliant systems do not care if the XML of entry is a string unique or nice print.

  • Problem with build.xml

    jdev 11.1.1.6

    I have a request for which I created the Application Ant build file (when searching for the task of packing include (deploy uses OJ)).

    When I try to run the file with default ant deploy option that I have two files to deploy the file:

    1. ojdeploy-construction

    2 ojdeploy-statuslog

    and deploy ear of bot file created in the folder.

    Exception message get however following in the file statuslog:

    <? XML version = "1.0"? >

    < ojdeploy-Journal >

    < deploy task >

    < target >

    profile <>AIMSAdmin < / profile >

    workspace <>/C:/JDeveloper/mywork/AIMS_Admin/AIMSAdmin.jws < / workspace >

    < project > ViewController.jpr < / project >

    /C:/JDeveloper/mywork/AIMS_Admin/deploy/AIMSAdmin.ear < fichier_resultat > < / fichier_resultat >

    < / target >

    < exception msg = "== ERROR: no module j2ee detected in the Archives of the EAR." Abandoned deployment. == ">"

    <! [CDATA]

    oracle.jdeveloper.deploy.VetoableDeployException: == ERROR: no module j2ee detected in the Archives of the EAR. Abandoned deployment. ==

    at oracle.jdevimpl.deploy.ear.EarDeployerListener.willDeploy(EarDeployerListener.java:113)

    at oracle.jdevimpl.deploy.fwk.ListenerSupport.fireWillDeploy(ListenerSupport.java:198)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:88)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:457)

    at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:217)

    at oracle.jdevimpl.deploy.common.ModulePackagerImpl.deployProfiles(ModulePackagerImpl.java:86)

    at oracle.jdeveloper.deploy.common.ModulePackager.deployProfiles(ModulePackager.java:63)

    at oracle.jdeveloper.deploy.common.ModulePackager.deployImpl(ModulePackager.java:52)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:457)

    to oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ 1.run(DeploymentManagerImpl.java:315)

    []] >

    < / exception >

    < status exitcode = "4" > FAILED < / status >

    < / deploy task >

    < deploy task >

    < target >

    profile <>AIMS_ADMIN1 < / profile >

    workspace <>/C:/JDeveloper/mywork/AIMS_Admin/AIMSAdmin.jws < / workspace >

    < project > ViewController.jpr < / project >

    /C:/JDeveloper/mywork/AIMS_Admin/deploy/AIMSAdmin.ear < fichier_resultat > < / fichier_resultat >

    < / target >

    < exception msg = "== ERROR: no module j2ee detected in the Archives of the EAR." Abandoned deployment. == ">"

    <! [CDATA]

    oracle.jdeveloper.deploy.VetoableDeployException: == ERROR: no module j2ee detected in the Archives of the EAR. Abandoned deployment. ==

    at oracle.jdevimpl.deploy.ear.EarDeployerListener.willDeploy(EarDeployerListener.java:113)

    at oracle.jdevimpl.deploy.fwk.ListenerSupport.fireWillDeploy(ListenerSupport.java:198)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:88)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:457)

    at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:217)

    at oracle.jdevimpl.deploy.common.ModulePackagerImpl.deployProfiles(ModulePackagerImpl.java:86)

    at oracle.jdeveloper.deploy.common.ModulePackager.deployProfiles(ModulePackager.java:63)

    at oracle.jdeveloper.deploy.common.ModulePackager.deployImpl(ModulePackager.java:52)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)

    at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)

    at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:457)

    to oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ 1.run(DeploymentManagerImpl.java:315)

    []] >

    < / exception >

    < status exitcode = "4" > FAILED < / status >

    < / deploy task >

    < Summary >

    < - > 2014 start time - 06 - 02 10:56:25 EDT < / time >

    < end of time > 2014-06-02 10:56:34 EDT < / end times >

    < total-tasks > 2 < / total-tasks >

    < chess > 2 < / failures >

    < status exitcode = "4" > FAILED < / status >

    < / Summary >

    < / ojdeploy-log >

    the ear could be empty... profile for deployment goto properties and verify application modules ee Assembly.

  • Problem with Web Builder and MySQL connection

    Hello

    I created a web service VI (see picture attached) to connect my Web Builder application with a MySQL database. The problem is that I get nothing on my exit signs during the call to the web service VI.

    Some tests I've done:

    (1) this web service VI works perfectly (I mean indicators 'value', 'status' and 'data_hora' give the desired result) when the VI run directly through LabVIEW. MySQL connection and my VI are OK...

    (2) I know my web service VI was successfully built and deployed because the indicators give me some value if I sign something for them other than my SQL output

    (for example: if I put a string constant "Hello" on indicator "valor" I get "Hello" when calling the web service VI)

    I suppose that the database connectivity kit is not supported when a VI is integrated with a web service VI. In my case, kit screws are inside the subVIs 'start', 'exec 2d' and 'stop' showed in the picture as an attachment.

    Any idea?

    Thank you

    Marcelo

    I'm using LabVIEW 2001 Wesley, but I solved my problem.

    It was just a MySQL data source problem: I just had to add my info DB through C:\Windows\SysWOW64\odbcad32.exe.

    Thank you

    Marcelo

Maybe you are looking for

  • How to set a minimum size of the 'location' box in the toolbars?

    I reorganized my toolbars by merging the location and the tab bar. I have the location on the left side and tabs * following *, like this: [/ tab\/tab\/tab\ (<) (>) [LOCATION]] Unfortunately, when the number of tabs increases, the location box become

  • Satellite C660 - 18 c - can't get the microphone to work

    So, I couldn't get the microphone to work so I bought a new one. I also can not get this to work. I tried everyway I can think of and he will simply record is not all sounds and yes the microphone is on and the volume is full. Can someone please help

  • APs (LAP1142N) disconnect after joining the WLC (5508)

    Hello We have a problem in the school I work at. There are 133 APs located on campus. They worked for 3.5 years without any problems. Recently, we have problems with APs disconnect randomly. He began the week last with just a couple. We've got them r

  • Best practice? Storage of large data sets.

    I'm programming a Client to access the customer address information. The data are delivered on a MSSQL Server by a Web service. What is the best practice to link these data namely ListFields? String tables? Or an XML file with is analyzed? Any ideas?

  • MSE 8510 TelePresence Server Migration - Issue of license

    I am following the process of conversion to a MCU 8510 into a server TS 8710. I ordered and received the migration SKU 0-dollar and have the code PAK Part number of top-level L-8000-CHLIC-PAK MSE 8000 chassis Licenses PAK PIDs Option part number L-80