Working with ANT /CVS/JDeveloper doing integrated build

Is there a documentation out there which gives details structurally on doing builds using ANT and CVS under JDeveloper?

Check the JDeveloper online help and search for CVS
"Using Concurrent Versions System (CVS) With JDeveloper"
and also for ANT
"About Ant Integration in JDeveloper"
You can access the online help online on OTN at:
http://otn.oracle.com/jdeveloper/903/help/

Similar Messages

  • Wlcompile - nested javac elements not working with ant 1.6.1

    Hi
    I have a problem with Ant 1.6.1 and wlcompile.
    I get the following error: The <wlcompile> type doesn’t support the nested “javac”
    element.
    Heres the error msg I get in debug mode:
    BUILD FAILED
    C:\P2Development\dev\testing\test.xml:3: The <wlcompile> type doesn't support
    the nested "javac" element.
         at org.apache.tools.ant.IntrospectionHelper.throwNotSupported(IntrospectionHelper.java:573)
         at org.apache.tools.ant.IntrospectionHelper.getNestedCreator(IntrospectionHelper.java:624)
         at org.apache.tools.ant.IntrospectionHelper.getElementCreator(IntrospectionHelper.java:691)
         at org.apache.tools.ant.UnknownElement.handleChild(UnknownElement.java:529)
         at org.apache.tools.ant.UnknownElement.handleChildren(UnknownElement.java:320)
         at org.apache.tools.ant.UnknownElement.configure(UnknownElement.java:176)
         at org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:152)
         at org.apache.tools.ant.Task.perform(Task.java:363)
         at org.apache.tools.ant.Target.execute(Target.java:301)
         at org.apache.tools.ant.Target.performTasks(Target.java:328)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1215)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1063)
         at org.apache.tools.ant.Main.runBuild(Main.java:632)
         at org.apache.tools.ant.Main.startAnt(Main.java:183)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:197)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:56)
    I’m using windows 2000. I’ve tried with weblogic.jar from Weblogic Server 8.1
    SP1 and SP2. I’ve tried with JDK 1.4.1_02 and 1.4.2_04. If I’m using Ant 1.5.3
    then everything works perfectly.
    I’ve tried to remove the WLS included Ant version to avoid conflicts with Ant
    1.6.1 and Ant 1.5.3 (that comes with Weblogic server). I’ve tried to uninstall
    Weblogic Server and just keep weblogic.jar, but I still get the same error. I’ve
    tried to put weblogic.jar on the classpath, still not working. I’ve tried to remove
    all jar files from $ANT_HOME/lib except those jar files needed to run my test
    project - ant.jar and ant-launcher.jar, but still doesn’t work. If I change $ANT_HOME
    to Ant 1.5.3 and run Ant 1.5.3 then everything works. So it seems to have something
    to do with Ant 1.6.1.
    Here’s my example code:
    <project name="wlcompile_test" default="test" basedir=".">
         <target name="test" depends="init">
    <wlcompile srcdir="${src.dir}" destdir="${build.dir}">
    <javac debug="${build.debuginfo}" debuglevel="${build.debuglevel}"
    nowarn="${build.nowarn}" deprecation="${build.deprecated}" source="${build.source.version}"/>
    </wlcompile>
         </target>
    <target name="clean" depends="init">
    <delete dir="${build.dir}"/>
    </target>
    <target name="init">
    <taskdef name="wlcompile" classname="weblogic.ant.taskdefs.build.WLCompileTask"
    classpath="C:\P2Development\weblogic.jar"/>
    <property name="src.dir" value="src"/>
    <property name="build.dir" value="classes"/>
    <property name="build.compiler" value="modern"/>
    <property name="build.compiler.pedantic" value="true"/>
    <property name="build.debuginfo" value="true"/>
    <property name="build.debuglevel" value="lines,vars,source"/>
    <property name="build.deprecated" value="false"/>
    <property name="build.nowarn" value="off"/>
    <property name="build.source.version" value="1.4"/>
    <mkdir dir="${build.dir}"/>
    </target>
    </project>
    And I try to run “ant test”
    It doesn’t work with Ant 1.6.1 and weblogic.jar from WLS 8.1 SP1 and SP2. But
    it works perfectly if I change to Ant 1.5.3.
    Here’s a link to the Ant wlcompile task documentation from BEA:
    http://e-docs.bea.com/wls/docs81/programming/environment.html#1098348
    Regards,
    Tobias Wallter

    Yes, this one is fixed in 8.1 SP3. If you need a patch before then,
    contact [email protected] and reference CR136493.
    -- Rob
    Tobias Wallter wrote:
    Hi
    I have a problem with Ant 1.6.1 and wlcompile.
    I get the following error: The <wlcompile> type doesn?t support the nested ?javac?
    element.
    Heres the error msg I get in debug mode:
    BUILD FAILED
    C:\P2Development\dev\testing\test.xml:3: The <wlcompile> type doesn't support
    the nested "javac" element.
         at org.apache.tools.ant.IntrospectionHelper.throwNotSupported(IntrospectionHelper.java:573)
         at org.apache.tools.ant.IntrospectionHelper.getNestedCreator(IntrospectionHelper.java:624)
         at org.apache.tools.ant.IntrospectionHelper.getElementCreator(IntrospectionHelper.java:691)
         at org.apache.tools.ant.UnknownElement.handleChild(UnknownElement.java:529)
         at org.apache.tools.ant.UnknownElement.handleChildren(UnknownElement.java:320)
         at org.apache.tools.ant.UnknownElement.configure(UnknownElement.java:176)
         at org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:152)
         at org.apache.tools.ant.Task.perform(Task.java:363)
         at org.apache.tools.ant.Target.execute(Target.java:301)
         at org.apache.tools.ant.Target.performTasks(Target.java:328)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1215)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1063)
         at org.apache.tools.ant.Main.runBuild(Main.java:632)
         at org.apache.tools.ant.Main.startAnt(Main.java:183)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:197)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:56)
    I?m using windows 2000. I?ve tried with weblogic.jar from Weblogic Server 8.1
    SP1 and SP2. I?ve tried with JDK 1.4.1_02 and 1.4.2_04. If I?m using Ant 1.5.3
    then everything works perfectly.
    I?ve tried to remove the WLS included Ant version to avoid conflicts with Ant
    1.6.1 and Ant 1.5.3 (that comes with Weblogic server). I?ve tried to uninstall
    Weblogic Server and just keep weblogic.jar, but I still get the same error. I?ve
    tried to put weblogic.jar on the classpath, still not working. I?ve tried to remove
    all jar files from $ANT_HOME/lib except those jar files needed to run my test
    project - ant.jar and ant-launcher.jar, but still doesn?t work. If I change $ANT_HOME
    to Ant 1.5.3 and run Ant 1.5.3 then everything works. So it seems to have something
    to do with Ant 1.6.1.
    Here?s my example code:
    <project name="wlcompile_test" default="test" basedir=".">
         <target name="test" depends="init">
    <wlcompile srcdir="${src.dir}" destdir="${build.dir}">
    <javac debug="${build.debuginfo}" debuglevel="${build.debuglevel}"
    nowarn="${build.nowarn}" deprecation="${build.deprecated}" source="${build.source.version}"/>
    </wlcompile>
         </target>
    <target name="clean" depends="init">
    <delete dir="${build.dir}"/>
    </target>
    <target name="init">
    <taskdef name="wlcompile" classname="weblogic.ant.taskdefs.build.WLCompileTask"
    classpath="C:\P2Development\weblogic.jar"/>
    <property name="src.dir" value="src"/>
    <property name="build.dir" value="classes"/>
    <property name="build.compiler" value="modern"/>
    <property name="build.compiler.pedantic" value="true"/>
    <property name="build.debuginfo" value="true"/>
    <property name="build.debuglevel" value="lines,vars,source"/>
    <property name="build.deprecated" value="false"/>
    <property name="build.nowarn" value="off"/>
    <property name="build.source.version" value="1.4"/>
    <mkdir dir="${build.dir}"/>
    </target>
    </project>
    And I try to run ?ant test?
    It doesn?t work with Ant 1.6.1 and weblogic.jar from WLS 8.1 SP1 and SP2. But
    it works perfectly if I change to Ant 1.5.3.
    Here?s a link to the Ant wlcompile task documentation from BEA:
    http://e-docs.bea.com/wls/docs81/programming/environment.html#1098348
    Regards,
    Tobias Wallter

  • Only one UPN suffix works with OAM plugin for RSA-integrated Authentication

    Only one UPN suffix works with OAM plugin for RSA-integrated Authentication while others give "CredentialsRejected" error
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-
    Has anyone seen this before and might know the answer? Any suggestions? Thanks!
    I have setup an OAM authentication scheme that uses a custom plugin to use RSA ACE server - all pretty much exactly as it is outlined in the chapter called "Integrating the RSA SecurID Authentication Plug-in" in Oracle Access Manager Integration Guide. Here's the problem:
    Everything works fine when I use a particular UPN suffix to login to the RSA Securid Login form that is presented, eg. [email protected], but if I create another user that uses a different UPN suffix as defined in Active Directory, (eg. [email protected]), the credentials are rejected. This happens before the secuirid.pl script even gets a chance to run. After hitting "POST" the user is present with the same login screen he was just at, as expected during an authentication failure.
    More info:
    - I have performed successful anonymous ldap queries for both users in Active Directory using LDP. Both users exist in the same domain and in the same OU. If I change the UPN (in AD and the RSA database) to something different from the "good" one, on either user, it fails. If I change the UPN to the "good one" on either user (in AD and the RSA database) it works.
    - if I test users with either the "good" or the "bad" UPN via the RSA agent tester that sits on the OAM box, both of them show as authenticating successfully. However, it doesn't work for the "bad" UPN when I try to access via a web browser on a remote client (but does work with the "Good" UPN)
    - I am not using SSL in any of this yet, it's all http://
    - yes, I already got rid of the "-w" parameter in the first line of the perl script, as per the "login can fail if the Login Attribute Contains an "@" Character in Integration Guide Troubleshooting section
    - here's an example of the settings in rsa securid authentication scheme:
    action:/OracleAccessManager/securid-cgi/securid.pl
    form:/OracleAccessManager/securid-forms-adforest/securid-std-login.html
    creds:login password domain newpin newpin2
    passthrough:yes
    authn_securid fullformdir="C:\apache\Apache2\htdocs/OracleAccessManager/securid-forms-adforest/",machine="MyComputer.mydomain.com:80"
    credential_mapping obMappingBase="%domain%",obMappingFilter="(&(objectclass=user)(userPrincipalName=%login%))"
    Environment:
    OAM 7.0.4.3
    RSA Ace Server 5.2
    Windows 2003 domain with multiple UPNs defined in Active Direcory Domains and Trusts
    Error as seen in the oblog.log for the webgate on the server that holds the RSA login pages and perl script:
    Message^A plugin for the authentication scheme SecurID Authentication has denied authentication for credentials ([email protected]
    password=(omitted) domain=dc=ourdomain,dc=com newpin= newpin2= Resource=/OracleAccessManager/securid-cgi/securid.pl RequesterIP=10.250.1.2 Operation=POST).
    ReqReq^POST /OracleAccessManager/securid-cgi/securid.pl HTTP/1.1 ReqProto^HTTP/1.1 ReqHost^www.MyComputer.mydomain.com. ReqStatLine^
    ReqStatus^200 ReqRawUri^/OracleAccessManager/securid-cgi/securid.pl ReqUri^/OracleAccessManager/securid-cgi/securid.pl
    ReqFilename^C:/apache/Apache2/htdocs/OracleAccessManager/securid-cgi/securid.pl ReqPath^ ReqArgs^
    2009/07/13@15:19:49.665000 45688 46472 AUTHENTICATION ERROR 0x00001515
    \Oblix\coreid\palantir\webgate\src\authentication_event_handler.cpp:1361 "Authentication failed" HTTPStatus^401
    authenticationSchemeName^SecurID Authentication AuthenticationStatus^majorCode = 11[CredentialsRejected], minorCode = 47[AuthnPluginDenied],
    StatusMsg = , GSN = 0, needInfo = NONE Creds^[email protected] password=(omitted) domain=dc=ourdomain,dc=com newpin= newpin2=
    Resource=/OracleAccessManager/securid-cgi/securid.pl RequesterIP=10.250.1.2 Operation=POST
    Only error seen in log produced by the RSA agent that sits on the Access server:
    [20804] 12:27:08.915 File:ACNETSUB.C Line:326 # CheckServerAddress: server 0 detected from address 10.250.88.100
    [20804] 12:27:08.915 File:udpmsg.c Line:968 # Entering decrypts_ok_legacy()
    [20804] 12:27:08.915 File:udpmsg.c Line:999 # decrypts_ok_legacy: decrypt() wpcode1 failed; wpcode0 next ***********
    [20804] 12:27:08.915 File:udpmsg.c Line:1089 # Leaving decrypts_ok_legacy(), result=1
    [20804] 12:27:08.915 File:ACEXPORT.C Line:820 # Entering AceGetUserData()
    [20804] 12:27:08.915 File:ACEXPORT.C Line:833 # Leaving AceGetUserData() return: ACE_SUCCESS
    [20804] 12:27:08.915 File:ACEXPORT.C Line:579 # Entering AceGetAuthenticationStatus()
    [20804] 12:27:08.915 File:ACEXPORT.C Line:592 # Leaving AceGetAuthenticationStatus() return: ACE_SUCCESS

    What are the logs you see at the ACE server end? You can try passing an additional parameter debug="true" to the authn_securid plug-in - it should generate some more logs at the access server - I think in apps\common\bin.
    Also does "ReqHost^www.MyComputer.mydomain.com" look right in the logs?
    -Vinod

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • I have a Nikon 300S. It is set to NEF(RAW) + JPEG fine. When I import to Lightroom I get message "There was an error working with the photo? Does anyone know why or how to correct?

    Nikon 300S. It is set to NEF(RAW) + JPEG fine. When I import to Lightroom I get message "There was an error working with the photo? Does anyone know why or how to correct?

    I don't know the answer, personally, because I don't use Lightroom. This is the Camera Raw forum.
    Someone here might answer your question, as there are a lot of clever people here, but, if not, you might try here:
    Photoshop Lightroom

  • Anyone else have Sonnet Expresscard34 working with 2011 MBP?  Does Thunderbolt cable get hot?

    Anyone else have Sonnet Expresscard34 working with 2011 MBP?
    Does Thunderbolt cable get hot?

    PaulDouglas wrote:
    PS - Apple, are you listening? 
    No
    No one here works for Apple nor does Apple visit this message board.  We are all end users like yourself helping each other out.  Post your complaint on the Product Feedback website.

  • Does Airport Extreme works with Lenovo ThinkPad(L420), Does Airport Extreme works with Lenovo ThinkPad(L420)

    Does Airport Extreme works with Lenovo ThinkPad(L420), Does Airport Extreme works with Lenovo ThinkPad(L420)

    The AirPort Extreme fully implements the IEEE 802.11 wireless protocols for a through n and will work with any computer that uses a compliant version of any of those protocols.  So, yes it will work with the Lenovo as long as the Lenovo is not doing something strange with wireless.

  • HT4623 My iPad 2 audio only works with headphones and orientation does not work at all

    My iPad 2 volume button does not work with the integrated speakers of my iPad, once a headphone is connected to the jack output of my iPad the OSD volume displays fine and works to the external headphone but once the headphone jack is removed, there is no more a volume bar and the side volume buttons don't work at all, this has affected the screen orientation as well, screen does not orientate  as well,
    Please help

    If you deleted files from the operating system, you wrecked your installation and the first thing you need to do is either restore those files from a backup or reinstall the OS. Doing that is never the solution to any problem. Back up all data before making any changes.

  • Lion email does not work with Verizon FIOS - Eudora does

    Recently I have not been able to send email using my Verizon outgoing server on the Lion email client. I can receive OK, but the server keeps rejecting something and a window pops up asking me to select a different SMTP server.
    Before I called Verizon, I decided to see if there were any free eMail clients I could use as a test and the new Eudora showed up when I did a "Bing" search.
    I just installed Eudora and after a very quick setup, I sent a message using the Verizon server without any problem, the mail coming into both the Eudora and Lion mailboxes.
    So the problem is not with Lion, but with the Lion eMail client. I know Verizon does not officially support Macs, but since Eudora works, I have localized the issue to the standard Lion email client.
    Anyone else have a similar experience with Verizon or some other ISP in not being able to send eMail?
    First, Eudora is an answer. Second - I would like to resolve the problem with the Lion eMail client - it must be some obscure server setting. I know that it used to work, but I am not sure whether it was with Lion or Snow Leopard. Usually when I send an eMail, I use Cloud and was using MobileMe so I did not notice whether or not Verizon's SMTP server was working.
    I noticed it today when I could not reply to an eMail that came in on one of my Verizon accounts.
    Here is the Eudora URL
    https://wiki.mozilla.org/Eudora_Releases
    Click Mac Disk Image and voila! there you go.
    (works for me)

    Thunderbird might work, but as long as Eudora is working I am happy.
    The built in client used to work with Verizon which is what puzzles me.
    I think you are right, the MacMail app is primarily for cloud these days.

  • HT201401 Speakers will not work after updating iPhone 4 to iOS.  Apple Store said there are no speakers available which will work with the iOS6.  Does anyone know where to get speakers which will work with iOS6?

    After updating my iPhone4 to iOS6 my speakers do not work.  The Apple store after troubleshooting said that none of the speakers they sell will work with iOS6.  Does anyone have any suggestions for obtaining speakers which will work with iOS6?

    That's a bunch of hogwash.  My 4S is running iOS 6 and works with all my external speakers, both at home and at work.

  • My cannon printer worked with snow leopard but does not work with Lion

    My Mf 4350d printer does not work with lion Mac OS X Lion 10.7.2., it worked with Snow leopard no problem. I am a novice with apple so can you tell me how to do any changes carefully.

    Have you downloaded and installed the latest Canon printer drivers?
    http://support.apple.com/kb/DL899

  • I have a G5 Power Mac with dual 1.8 processors. I recently upgraded the software fro 10.4.11 to 10.5.8 in order to get an iPad 2. Now my Adobe Photoshop 7 won't work any longer. All the newer Phtoshop versions only work with Intell processors. Does anyone

    ..know of an older Photoshop version that will work with my processors and system 10.5.8?
    Thanks,
    Don

    I believe I had this issue with PS7 when I first upgraded from OS 9 to OS X 10.2 Jaguar.
    Couldn't get PS 7 to launch at all.
    I ended up having to update all of my Adobe apps to the CS edition to be sure every Adobe app functioned without a hitch.
    I am not sure where you'll find older versions of Adobe software, though.
    You could try and contact Adobe direct to see if they have any older versions on disc left in stock or not.
    Short or that I  really do not know.
    PS CS 4 was the last universal version that works with PPC Macs.
    Pixelmator used to be available for 10.5 Leopard, but it's no longer available for PPC Macs, either.
    http://www.pixelmator.com/
    Could contact them to see if they have the older version still available on disc or as a download.
    This is a pay app, also.
    Another pay app that may work for you is Graphic Converter.
    http://www.lemkesoft.com/
    The other options are the ones already mentioned in the previous reply.
    Other than Pixelmator, the other offerings are quite limited compared to PS.
    Here's the link to Seashore.
    http://seashore.sourceforge.net/The_Seashore_Project/About.html
    A free open source Unix replacement for PS is The Gimp
    http://www.gimp.org/macintosh/
    You need to install X11 in order to use this app.
    If you installed 10.5, you'll need to check your Applications folder to see if X11 was installed by default.
    If not you'll need to go back to your OS X 10.5 install discs and do a custom install and just install X11 from disc.
    This will just add the additional program and extensions and will not erase your installation of OS X 10.5.

  • My line doesn't work with BT HH3 but does with BT ...

    Hi folks,
    To cut a long story short, I've had a selection of BT HomeHubs over the years and my HH2 packed up 3-4 months ago, not sure what went wrong but the orange light just kept flashing and it would not connect, despite resets and reboots.
    I think the most my line can take is around 7MB but BT support say it can take 24MB, but I'm not on inifinity, just normal ADSL over copper. I know they have upgraded my local exchange several months ago and this is when the problems started as even before my HH2 packed up, my speed dropped right down to around 1MB for several weeks.
    Anyhow, as I am still in contract (due for renewal in April 2012), BT sent me a HH3 and I've had a variety of problems with it, so much so that they actually sent me 3, all with the same problems (which makes me think a network/exchange issue).
    Basically, the HH3 used to connect and over a period of say 2 days it went from around 7MB upto 11MB, at which point, I boot up my PC (Windows 7 64-bit connected via ethernet) and I see a yellow exclamation on the network, reporting no internet. Sure enough, I cannot browse so have to re-set the hub, now sometimes it synced slightly lower but I generally had to reboot 5-6 times for it to sync around 6mb, then I could sometimes connect, but of course, the speed increased every few hours, or at least when i checked the next day it was sitting around 11MB.
    Now this did not seem to affect my wireless laptop, this continued to work but ethernet was not happy. All of my hardware is OK, I even tried different ethernet cards, cables etc to no avail.
    I have cases raised with BT and whilst they do their best to try and resolve the issue, I get empty promises of proposed solutions within a few days. An engineer has visited my property several times and has reported everything is as it should be.
    It has been driving me mad so I managed to get hold of a used HH2 and guess what, plugged it in and straight away it has worked and so far (6 days) have not had one problem.
    What do I do if this one packs up because at the moment, it looks as if it is only the HH2 that works with my set-up (main PC anyhow). Do BT still stock and ship the HH2 devices?
    I don't think I will be renewing in April 2012 if I am stuck on using the old HH2 and for how long this will work, I don't know. There appears to be no logical explanation, at least from BT support, why the HH3 is causing me so many problems. They say it is a problem with my PC and I need to take it to a PC specialist but clearly, the HH2 works just fine, as did a netgear one I tested a few weeks back.

    is the driver for your network card up to date?  that could be a reason it will not work with the more up to date HH3
    If want more assistance from the forum members please can you post the adsl stats from your router may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or use a-z, if netgear enter 192.168.0.1) and run btspeedtester (MAC users may have problems) http://speedtester.bt.com or http://bt.custhelp.com/app/answers/detail/a_id/9354/c/346,4740,5520 and post the results .
    are you connected directly to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Sound doesn't work with one player but does with two...

    I'm running the Win7 Release Candidate and have Flash Player 10 installed.  Today when I tried to play a video on youtube, there was sound for a split second, and then it cut out while the video continued to play.  I tried uninstalling and reinstalling Flash with no success. Then I tried opening up two tabs and played a video in each tab, and suddenly the sound was working again.  This happens in both Google Chrome and IE8.  I have normal sound in all other applications.  Any suggestions?

    is the driver for your network card up to date?  that could be a reason it will not work with the more up to date HH3
    If want more assistance from the forum members please can you post the adsl stats from your router may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or use a-z, if netgear enter 192.168.0.1) and run btspeedtester (MAC users may have problems) http://speedtester.bt.com or http://bt.custhelp.com/app/answers/detail/a_id/9354/c/346,4740,5520 and post the results .
    are you connected directly to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Does DVT  Tutourial work with latest Production JDeveloper?

    I got my brand spanking new Jdeveloper 11g installed, and I want to go through the Introduction to ADF Data Visualization Components Tutorial. I get stuck at the build of the schema, after following the instructions on buidling the schema step 5. I get the folllowing error.
    Buildfile: C:\temp\storefront_techpreview2\Infrastructure\Ant\build.xml
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\temp\storefront_techpreview2\Infrastructure\Ant\build.xml:20: The following error occurred while executing this line:
    C:\temp\storefront_techpreview2\Infrastructure\DBSchema\build.xml:89: The following error occurred while executing this line:
    C:\temp\storefront_techpreview2\Infrastructure\DBSchema\build.xml:54: The following error occurred while executing this line:
    C:\temp\storefront_techpreview2\Infrastructure\DBSchema\build.xml:26: C:\temp\storefront_techpreview2\Infrastructure\Ant\oracleMiddlewarejdeveloper\wlserver_10.3\server\lib not found.
    I checked for the directory it is complaining about on my drive and it does not exist. Should'nt this be created by unzipping the file in the tutorial. Have I missed something?
    Regards
    Orlando

    Ok after many combinations I found the following works.
    jdeveloper.home=C:/oracle/Middleware
    I still get an error message at the end, not sure if i can ignore it.
    populateImages:
    [java] C:\oracle\Middleware\lib\java\shared\sun.jaxb\2.0 not found.
         at org.apache.tools.ant.types.AbstractFileSet.getDirectoryScanner(AbstractFileSet.java:422)
         at org.apache.tools.ant.types.FileSet.iterator(FileSet.java:69)
         at org.apache.tools.ant.types.resources.Union.getCollection(Union.java:105)
         at org.apache.tools.ant.types.resources.Union.getCollection(Union.java:88)
         at org.apache.tools.ant.types.resources.BaseResourceCollectionContainer.cacheCollection(BaseResourceCollectionContainer.java:244)
         at org.apache.tools.ant.types.resources.BaseResourceCollectionContainer.iterator(BaseResourceCollectionContainer.java:120)
         at org.apache.tools.ant.types.Path.iterator(Path.java:687)
         at org.apache.tools.ant.types.Path.iterator(Path.java:684)
         at org.apache.tools.ant.types.resources.Union.getCollection(Union.java:105)
         at org.apache.tools.ant.types.resources.Union.list(Union.java:67)
         at org.apache.tools.ant.types.Path.list(Path.java:356)
         at org.apache.tools.ant.types.Path.addExisting(Path.java:327)
         at org.apache.tools.ant.types.Path.addExisting(Path.java:315)
         at org.apache.tools.ant.types.Path.concatSpecialPath(Path.java:552)
         at org.apache.tools.ant.types.Path.concatSystemClasspath(Path.java:512)
         at org.apache.tools.ant.AntClassLoader.setClassPath(AntClassLoader.java:353)
         at org.apache.tools.ant.AntClassLoader.<init>(AntClassLoader.java:240)
         at org.apache.tools.ant.Project.createClassLoader(Project.java:328)
         at org.apache.tools.ant.taskdefs.ExecuteJava.execute(ExecuteJava.java:128)
         at org.apache.tools.ant.taskdefs.Java.run(Java.java:747)
         at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:201)
         at org.apache.tools.ant.taskdefs.Java.execute(Java.java:104)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
         at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
         at org.apache.tools.ant.Task.perform(Task.java:348)
         at org.apache.tools.ant.Target.execute(Target.java:357)
         at org.apache.tools.ant.Target.performTasks(Target.java:385)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
         at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
         at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
         at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
         at org.apache.tools.ant.Task.perform(Task.java:348)
         at org.apache.tools.ant.Target.execute(Target.java:357)
         at org.apache.tools.ant.Target.performTasks(Target.java:385)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
         at org.apache.tools.ant.Main.runBuild(Main.java:698)
         at org.apache.tools.ant.Main.startAnt(Main.java:199)
         at org.apache.tools.ant.Main.start(Main.java:161)
         at org.apache.tools.ant.Main.main(Main.java:250)
    refreshSchema:
    BUILD SUCCESSFUL
    Total time: 1 minute 55 seconds

Maybe you are looking for

  • Can't Left Click in Flash Player Settings Panel - HELP PLEASE

    Hi and thanks for taking the time to read this. Believe me it is a fraction of the time I have wasted trying to resolve this issue. Basic problem is: I am trying to stream to Ustream but since downloading AFP11 for my Windows PC when I open the Flash

  • FREIGHT CHARGES-URGENT

    Dear SAP consultants,     I have a material for which the base unit of measure is KG and order unit is also KG. i have got a freight vendor who is charging me on a Per tonne basis. how will i map this into SAP. Thanks in advance

  • Howto:pass an ado.recordset to a stored procedure

    Hi, I need to pass an adodb.recordset to a stored procedure in Oracle 8.0.5. I am programming with visualbasic 6, an exe application. I don4t know how to setting the parameter for the adodb.command which execute the procedure. Any idea?? Thanks, Cesa

  • Two iterators based on the same view issue

    Hi I'm using jdev11.1.1.2 My requirement is to have a view object as a form on the page (with next, previous, create/delete buttons) and to have a popup with the same view object as a readonly table (only for taking a look at a table representation o

  • Can we move account group from lower level to higher level

    Hello Experts, I have now 1 level hierarchy in our organisation. Now we are planning to move from 1 level to 4 level. Now our problem is all sold to party (c002) and ship to party ( 5103)  has same account group. We are going to assign sold-to-party