Unable to update java source in Creator

I am getting the following error:
C:\Selenium\java\com\thoughtworks\selenium\ClientDriverPISuite.java:51: generics are not supported in -source 1.4
(try -source 1.5 to enable generics)
I have tried all of the solutions found in this forum that I could find. I have changed all of the files that I could find from using 1.4 to 1.5 and1.6. I have restarted Creator and I have JDK 1.6 as well as Selenium and Creator and Netbeans. I have found no easy way to set an update or to update a path to the JDK.

It is the version application server that is the limiting factor in Creator. You can execute the IDE itself with jdk1.5 but not use jdk1.5 for your projects. Visual Web Pack 5.5 does allow use of jdk1.5 in creating EE5 projects. This would mean upgrading to VWP 5.5.
/krys

Similar Messages

  • SQL Developer 3.2 : Unable to browse java source in the db

    Hi:
    I noticed a regression in SQL Developer 3.2 in respect to 3.1 (on windows).
    as of SQL Developer 3.1.7.7.42 I was able to browse java sources stored and compiled in the database.
    The tabs "Details", "Source", "Policies" were correctly populated. If I had to complain about something, the names of the classes were "shortened" so that I saw "c932e55e_PrintDebug" instead of "my/company/application/package/PrintDebug".
    I have tested the 3.2 release.
    Now, the class names are complete, but the tabs are empty. I am also unable to retrieve the source of a class (as it was possible in 3.1)
    Does this happen to other people?
    Thanks,
    Andrea

    Thanks for the feedback, it is good to know I am not alone :-)
    I did some further tests.
    I enabled logging in sqldeveloper.conf, and found this query I believe to be the culprit:
    Prepared:with src_name as (select source n from Dba_java_classes
    where lower(name)=lower(:NAME) and rownum = 1)
    select text||decode(substr(text,length(text)),chr(10),null,chr(13),null,chr(10)) source
    from Dba_source
    where owner= :OWNER
    and type = 'JAVA SOURCE'
    and (name in (select n from src_name) or name in (select owner || '/' || n from src_name)
    or lower(name) = lower(:NAME))
    order by line
    Previously :NAME was populated with the java short name, while now it has the java long name.
    In fact, if I compile a class where short name and long name are the same, it works.
    In DBA_JAVA_CLASSES name is the long name, while in DBA_SOURCE it is the short name (at least this is what I observed).
    So I believe that this is truly a regression.
    Anyone (from dev) can confirm this?
    Thanks,
    Andrea

  • Unable to update Java

    Okay, the answer to this is pretty obvious. I still have Snow Leopard and have discovered that I cannot update Java because I don't have Lion.  I know I'm going to end up being forced to upgrade because keeping stuff updated is a really good idea. Does anyone know if they are planning to stop supporting Snow Leopard, with all the things that are slowly becoming incompatible? It may not even matter in a year, as nothing may work on it anyhow by that point, but I'm wondering if I should just face the facts and deal with Lion (tried it, couldn't stand the interface). Thanks!

    Nobody has a crystal ball.   You'll always have those who still run 10.2 and even 9.2.
    The question is how sophisticated are the applications you wish to run, and the websites you want to visit, and whether or not you are willing to keep up the PRAM battery every 4 years, and ensure your hard drives are regularly replaced.  Keeping a clone backup regularly is a good idea anyway.   And upgrading past 10.6.8 will make it harder to run pre-Intel applications, but not impossible.  So decide for yourself, is Lion really worth your while?

  • Unable to update Java to the latest version

    When I try to update Java, when I get to 'Close Programs to Continue', one of the programs I am told I need to close is 'Start'. Doing this means I have to restart Windows 7. The problem is that the Java installation doesn't resume after I've done this.
    Presumably, one of the processes that starts up with Windows uses Java, but I've got no idea which one. I've tried ending various processes in Task Manage, but this doesn't help.
    Has anybody got any suggestions, please?
    Thanks,
    John

    ''Anna8866 [[#question-1037268|said]]''
    <blockquote>
    Any suggestions? I have tried all of the troubleshooting suggestions and none are correct. Please help!!
    </blockquote>
    I wentr through them all yesterday and nothing seemed to work. However my computer crashed a couple of times since and it appears to be working now.
    Thank anyway. Hope you have a Merry Christmas and Happy New Year.

  • ITUNES - UNABLE TO UPDATE SOFTWARE - Source media damaged.

    Hi!!
    I keep trying to update the new software for my MacAir - but each time I attept to it has this error message:
    The spurce media you are installing from is damaged. Try installing from a different copy or source media or contact manufacturer.
    My Iphone will not connect to it, and i have tried uninstalling itunes and reinstalling but no luck.
    Any ideas??

    additional info
    firewall and antivirus is not blocking access to gs.apple.com on port 443 and i did not  used my computer at some time in the past to hack or jailbreak some iOS device . I have also tried editing  the hosts file and delete any lines that contain gs.apple.com......
    Trying everything but getting no where.......frustrated

  • Java source and class locked, unable to drop or replace

    Because Oracle 9i does not come with an FTP implementation, I installed the apache.commons.net package into the database, and implemented static java wrappers to allow me to publish the code.
    After thoroughly testing the code under JDeveloper, I deployed the code to the database.
    The code hung, establising a lock on one or more classes. Besides not knowing how to debug and java packages inside the Oracle database (eg, why did the code fail in the first place?), I have no idea how to unlock the source or class of my java objects.
    How does one find what process is locking the java source and/oir class?

    Try something like:
    select s.username, pr.pid, pr.spid from
    x$kglpn p, x$kglob o, v$process pr, v$session s
    where p.kglpnhdl = o.kglhdadr
    and pr.addr = s.paddr
    and p.kglpnuse = s.saddr
    and o.kglnaobj = dbms_java.shortname('fully/qualified/ClassName');

  • HELP! Newbie: Unable to update fields

    Hello.
    I am teacher of a Java course and I am teaching Kodo JDO to my students. But
    I am unable to update my persistent fields to the DB. I have a persistent
    class Employee with two fields: name and wage. I have the following code:
    PersistenceManager pm = JDOFactory.getPersistenceManager();
    Transaction tran = pm.currentTransaction();
    fillDatabase(pm,tran);
    Employee john = getJohn(pm);
    tran.begin();
    System.out.println("Before update" + determineState(john));
    john.wage = 20000.;
    System.out.println("After update" + determineState(john));
    tran.commit();
    pm.close();
    Employee John never gets updated to the DB. The program has the following
    output:
    Before update. Persistent-Clean-NonTransactional
    After update. Persistent-Clean-NonTransactional
    That is, the field doesn't get dirty.
    I attach all the source code to this message. It's a very simple example.
    What am I doing wrong? How can I persist my updates to the DB?
    Please I'm desperate. I don't know how to do and I need this solution for
    tomorrow afternoon (I have class with my students then).
    Any help would be gretly appreciated.
    Thank you,
    Vicent Palas__
    begin 666 kodoHELP.zip
    M4$L#!!0````(`$H).RVD)9P]$ (``$8$```/````:V]D;RYP<F]P97)T:65S
    M?5-=;]I $'R/Q']8*2^M!":!2DA(?BFHJA*24)KV?3FO[2-WM_3N#+B_OGM
    MFU0!7C#RS,[LQ_@:[KE@N)L^P=SSFGS4%$"Q*W75>(R:7>>J<W4-SPRT0=-@
    M)& /Z\:K&@,!@M&*G/Q[H;8+&QUTA#K&];C?WVZW66"#WE+T6F6*;>=*?OY[
    M^2+^V>R@<4]M/AP,:#@<]G!X6]X.1KT1EOAI.>A1.2IOAJ-S`EQ5Y/,0"V[B
    M&0Y1]H .*RH6C8O:TNO$^;-'%U"E>0\<_XB6\A5N<-Q_#Z:=)&R7K41X3C[H
    M$,DI.N)?A,V^G1@,(3_9C+9K(\5+E=U-/T_.*KRUX77J()NP<[1O9NKUYM@H
    M^RJK5C&S-K-M^&6R`W:Q_$<X%GOF>)$YES&V[(N\EC$N:RYF>9IJO.]",F!8
    MH:DYQ#ZM2&9FB=H)A2=Y6-F 5GGT#9U@+"BB=C\E@G*N,YQ'=O'U5F@6A,61
    MFS(\J=%5VE40:Y+ 1I;T.G:]W^094K@)MMH8*#Q:B;XT;EK03GF2I"<!24O)
    MWJ*<J0O+)A[H"AM1TZYGR<K)H,"(2ZD($!I5`P;XVDIE8*=54OG^;9:\'<F!
    M@';RO6QK<M!RX\'*C!\^@B2EYF(/AFY2D(YAS6RH2 KJW[Z#^.[!]_9OFT-Y
    M*VBBRC"%V"<93\D.?..<;"4[L= '[>;BFM^<PG#W%_L#4$L#!!0````(``('
    M.RV(V,<BAP(``)P&```1````5&5S=$5M<&QO>65E+FIA=F&55$UOVS ,/;M
    [email protected][TFPM9CBV#8V@U#@;4=TMNZ@^(PF3)9,B2Y23#TOX^29<=MTP[5Q30_
    M'LE'4;*JC?6 5:W,#M'Q=V>C(]DJU^)>;/EZ89XJ>>.EBLK14=W,E2RA5,(Y
    MN$7GOR0H^#LZ`LB2W7GAZ7-OY (J(37D,V^E7H&P*_?S5T'.&="Y0>ND\ZA+
    M_"ZT6*&%NH(I7%Y<?Q6E-W;'5^B?>^7%698@;JW0CGRET>!)INBZXF5C+6H_
    M,%)(J)!.#%M*I2Z$%W/A,*^K<0@-'M'8-[4VOP,@U7!)$OGU+L&?SW$E6^"H
    MF^VHR(J;QO.:NO5*Y^PS+HU%:.J%\,C@&!;HT592XXPXPCQD**B;K.LG*/B&
    MFJ2\)^_I\+[50_B?E@3W!OA8=VFJ2OH!B8$Q98B)X$JZAZ2/,R7YP%@?$7AH
    MCDD8/YE0G'W6,RQT)P86,V^'I&9[*[&A<;.?3,["1-CX0V"H=>XR\DK\P;XB
    MG^]!_@]Z$^ACXY.WH4;.0NT]L2V'SQ:BS]3=J%>(*^)&`7&U#0D!P\<%$J>]
    M3]B.UIQWT#SNYIB8;J@R2!@_&K0[*(UVC?)BB$ $1&/>XX^9%A5Q,[V+'-\Q
    M8&EWLNS<*(7M*,L@$E*^UQ5=`HY;+!N/:8P6?6/I$>@9B[%<$M>"ECPOJ(JM
    M3QL:B'MVY=+S\>1V7\_7E!CJLH!XJY*7HZH8BYD='%.%])Q\0U53M](-1ACB
    M/@+;:]@IBY=5!KEX`>!"6K_K8B?QC\$IFYPK%/K%J"O<]#$DAXB7,Z"B/A?[
    M'.W_($8N7VLJL7$`>;"*0G7XU/7DRF@_M*4\X1W(4#E\"V+T9)-'%M:7_C"X
    M$"[M29SX/U!+`P04````" "5`CLM8T'@/5,```!M````#0```&5M<&QO>65E
    M<RYJ9&^SL:_(S5$H2RTJSLS/LU4RU#-0LK?CY;+)2LD'4IPV!8G)V8GIJ0IY
    MB;FIMDJIN04Y^96IJ<5*($D%!9ODG,3B8JBD*U1221^L4Q^J%62:/L0X`%!+
    M`P0*``````#1"3LMVC!\3H$#``"!`P``#0```&5M<&QO>65E<RYZ:7!02P,$
    M% ````@`.0<[+8G*6Z^ ````S@````T```!%;7!L;WEE92YJ879A*TA,SDY,
    M3U5(S2W(R:],32VVYN7BY2HH3<K)3%9(SDDL+E9PA4HI5/-R<4)E@DN*,O/2
    M%?(2<U.M$:(I^4 Z5:$<:"#8& 4%F S,# V8QM1R/Z!>'9@6(#\<J$NSFA.H
    MAQ.L4P$(0.8KV,)4@VSB!!D.$0J'6,-9"\2\7+4@"P%02P,$% ````@`L 8[
    M+<!N;LL;`@``%P4```\```!*1$]&86-T;W)Y+FIA=F&-4]MNVS ,?5: _ .1
    MESC!YGQ VP%#=\LN:-'V!Q292=0JDB#1:8*A_SZ)5B[KEK:P80.D>,XA>>2E
    M>I +!%QYX[:(\:S?RX]>>1<([N5:UMK5X[._0RUI\SRXJ>^;[F1^)N-QOP=C
    M\56O,4(D25J!5 IC!'(@P0?G,9@M*&?G>M$&;+C@&D/4D= J_"5MTA:^2$4N
    M;&NX6^H(RL@$D:K7NDG(:[2-"^^C1Z7GB4*Y!AG'8N:289OI9LY1I" ]T!+A
    MAVL<?/]T!7&;B%:@;3J"F\):Y_))O^?;F<F S)=.%QG]WN]^3TPF$+5=&"1G
    M8;[+"!_T6A+N^CW9RZX$+L"VQI29"1Z:@#&(&Z0V6%9[X/$'.%AU>'L@;1-G
    MIUZP?%'TORIE@70Z68T24FY8Z#E4>]6=[)SKDN*:MTD:>34^YL;P$8["U>B,
    M3Q(/:E<GIM:W=$L!9=X#7'11<9FG_M/)!D.=!-[RHFXPNC8H_!A+035X2*NL
    M_9YE4$@$BZA-`H!*VQ)]XJ^2I)903:\^;Q1ZTFFPVN'H6!0M@WOD!GCO),W4
    M$@8KS:&F"*T&EZXUC1T2,%LH&F'X3-JP'KQCHKT6_F<CI5UWQGQAP7SXX)JD
    MZQL:WTWGA?7Q'#I*[CYTOBI .?YTRGL2SO-E^O O^OF$$^!F)+7%!N;!K5(#
    MZ78RA. [,XQOL^[;'?M_JQYYM'3WBJ/K4S!E'.G]`U!+`0(6"Q0````(`#D'
    M.RV)RENO@ ```,X````-``````````$`( " @0````!%;7!L;WEE92YJ879A
    M4$L!`A8+% ````@`L 8[+<!N;LL;`@``%P4```\``````````0`@`("!JP``
    M`$I$3T9A8W1O<GDN:F%V85!+!08``````@`"`'@```#S`@````!02P$"%@L4
    M````" !*"3LMI"6</1 "``!&! ``#P`````````!`" `@($`````:V]D;RYP
    M<F]P97)T:65S4$L!`A8+% ````@``@<[+8C8QR*'`@``G 8``!$`````````
    M`0`@`("!/0(``%1E<W1%;7!L;WEE92YJ879A4$L!`A8+% ````@`E0([+6-!
    MX#U3````;0````T``````````0`@`("!\P0``&5M<&QO>65E<RYJ9&]02P$"
    M%@L*``````#1"3LMVC!\3H$#``"!`P``#0```````````" `@(%Q!0``96UP
    @;&]Y965S+GII<%!+!08`````! `$`/(````="0``````
    `
    end

    Thank you very much, Abe.
    Of course, I always advocate the benefits of encapsulation with my students.
    In this example, I declared my fields as public only because I was trying
    with private fields and it wasn't working (I don't know why). So I try with
    public fields to see whether it would work.
    Anyway, I had encapsulated my fields and everything worked OK. I was in
    trouble (the class is only some hours away and some of my students are
    prospects of customers so my image is fundamental). You have get me out of
    trouble.
    Thank you for your help.
    Vicent Palas__
    "Abe White" <[email protected]> escribi__ en el mensaje
    news:an1rrf$bnk$[email protected]..
    john.wage = 20000.;JDO detects field updates by modifying the bytecode of the class accessing
    the field. When you use public fields, that means all classes thataccess
    the fields need to be run through the enhancer, even if some of thoseclasses
    are not persistent themselves (note: only persistent classes
    should have metadata -- the enhancer uses the presence of metadata to
    determine whether to make the class persistent or just modify persistent
    field access to other classes).
    Because it's a pain to track which non-persistent classes accesspersistent
    fields of persistent classes, we recommend that you keep your persistent
    fields private, or protected and only accessed by subclasses. Plus, as a
    teacher, I would think you'd be advocating the benefits of encapsulation
    anyway :)

  • The update "Java for Mac OS X 10.6 Update 12" can't be installed.

    When I try to update the Java in my mac os x 10.6.8 using the Software Update, I get the message:
    The update “Java for Mac OS X 10.6 Update 12” can’t be installed.
    A network error has occurred. Check your Internet connection, and then try again.
    What's going on? What should I do?

    I am unable to install this update. Does anyone have any advice? I have always had weird issues when it comes to updating. Currently running Snow Leopard 10.6.8. Error message is this:
    Feb  4 15:37:46 macintosh installd[664]: PackageKit: ----- Begin install -----
    Feb  4 15:37:55 macintosh /System/Library/PrivateFrameworks/PackageKit.framework/Resources/shove[680]: [dst=circleLink] failed createDirectory /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Classes: Error Domain=NSCocoaErrorDomain Code=512 UserInfo=0x10010cde0 "The file “CurrentJDK” couldn’t be saved in the folder “Versions”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=62 "The operation couldn’t be completed. Too many levels of symbolic links")
    Feb  4 15:37:55 macintosh /System/Library/PrivateFrameworks/PackageKit.framework/Resources/shove[680]: [source=link, dest=dir] failed _CheckForAndFixCircularLink(/System/Library/Frameworks/JavaVM.framework/Classes , (null)): No such file or directory
    Feb  4 15:37:55 macintosh installd[664]: PackageKit: Install Failed: (null)\nError Domain=PKInstallErrorDomain Code=120 UserInfo=0x100440410 "An unexpected error occurred while moving files to the final destination." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=2 "The operation couldn’t be completed. No such file or directory") {\n    NSLocalizedDescription = "An unexpected error occurred while moving files to the final destination.";\n    NSUnderlyingError = "Error Domain=NSPOSIXErrorDomain Code=2 \"The operation couldn\U2019t be completed. No such file or directory\"";\n    arguments =     (\n        "-f",\n        "-s",\n        "/var/folders/zz/zzzivhrRnAmviuee+++++++++++/Cleanup At Startup/PKInstallSandbox-tmp/Root",\n        "/"\n    );\n}
    Feb  4 15:37:55 macintosh Installer[659]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    Feb  4 15:37:55 macintosh Installer[659]: Displaying 'Install Failed' UI.
    Feb  4 15:37:55 macintosh Installer[659]: 'Install Failed' UI displayed message:'The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.'.

  • I cannot break my java source into packages

    I would like to convert my java source in my Creator project(s) to standard package naming conventions such as com.mycompany.myapp but I'm having difficulty. After renaming the package within the Java Sources folder, and making necessary related corrections in referencing Java source files and managed-beans.xml I still cannot get the application to run. The IDE is also losing the ability to render the JSP source as well due to a broken binding reference that is not kept in sync. In general is it possible to use packages in Creator where the java source files are in sub-directory packages? I happen to be using Windows 2000. But I can use other operating systems if it will work elsewhere.

    Hello Iwan.
    Unfortunately, I was not able to find a clean workaround for implementing a multi-level package structure on an "existing" application.
    I WAS able to do it eventually knowing the desired tree structure I needed to reach (as already noted), but it required a lot of hand editing as Creator appropriately cautions.
    I even had to get into the private "project.prj" file eventually outside of creator in notepad to clean up my structure before I could finish.
    Anyway, I want to repost my prior instructions for implementing package structures on NEW projects.
    I found an error in yesterday's post and some misplaced words. This is a corrected version.
    Also, this approach was not tested exhaustively - but I think it is probably close.
    Again my environment happens to be running on Windows 2000.
    Updated/corrected notes for building a new "packaged" Creator application.
    =====================================================================
    It turns out you can avoid manual editing if you follow this sequence for new applications.
    It is helpful to understand these concepts that steer our procedure:
    1) The "Web Pages" directory and "Java Sources" directory require synchronized directory trees to accomodate the mirror relationship between packaged *****.jsp and *****.java bean backing files.
    2) The "Web pages" directory tree will not display the highest-level node - it apparently shares/references the highest-level package node immediately under the Java Sources folder.
    You will need to substitute your own names for package nodes as desired.
    This example develops the package named "com.company.division.mypackage".
    As such my project directory tree goal is:
    Project Navigator (Logical View)
    =========================
    MyProject
    -- Web Pages
    ---- Resources (ignore for this exercise)
    ---- company
    ------ division
    -------- webapplication1
    ---------- Page1.jsp
    -- Page Navigation (ignore for this exercise)
    -- Managed Beans (ignore for this exercise)
    -- Java Sources
    ---- com
    ------ company
    -------- division
    ---------- webapplication1
    ------------ ApplicationBean1.java
    ------------ Page1.java
    ------------ SessionBean1.java
    + Library References (ignore for this exercise)
    + Data Source References (ignore for this exercise)
    Steps to repackage your application without manual editing:
    ==========================================================
    1) Create a new default application - in our case my case named WebApplication1:
    Use any method you want to create a new project accepting all default naming.
    You will get a project with 3 java beans (Application, Session, and Page) and Page1.jsp.
    I had confusion because of names similar to WebApplication1 used for the Project, Context, Package, and Application.
    The following two options decouple two of these names - that may or may not be helpful for you.
    Optional: Rename project WebApplication1 to MyProject to avoid naming extension confusion:
    Select the top/main folder in the Project Navigator and right click for context menu options
    Select the Rename Project option, enter your desired name, and click OK
    Please allow several seconds for the project refactoring to rebuild your directories
    Optional: Rename project context from webapplication1 to URL context name appropriate for you:
    Select the top/main folder in Project Navigator (Just named MyProject in the preceding example)
    Enter your desired URL Context Path in the Properties window field and press Enter.
    2) Delete the Page1.jsp file and Page1.java file as follows:
    Select the Page1.jsp or Page1.java file
    Right click for a context menu and select the delete option
    Accept/Acknowledge deletion of the synchronized counterpart bean/jsp
    3) Build your new Web Pages directory tree as shown above without a "com" folder:
    Use either the context menu "New > Folder" or "New > Package" option - they both work
    As shown we need to create a 3 level sub-folder: company, then division, then webapplication1
    4) Build your new Java Sources directory tree starting by renaming your package root:
    In the Java Sources folder rename "WebApplication1" package to "com".
    This is accomplished within the context menu accessed via right-click on your mouse.
    Enter "com", press Ok, and then accept "Yes" to rename all package declaration references.
    Enter "Ok" to acknowledge the need for warning about manual editing being necessary.
    Use the context menu "New > Folder" or "New > Package" option - they both work
    to create / add the remaining sub-directory folders within the newly named "com" folder.
    As shown this is 3 more sub-folders: "company", then "division", then "webapplication1".
    5) Copy your Application Bean java file then delete it from the source:
    Right-click on your ApplicationBean1 file and select copy.
    Select (left-click) the target Java Sources > com > company > division > webapplication1
    folder and paste the file copy (Ctrl-v).
    Now delete the original application bean source in the "com" folder with the delete key.
    6) Copy your Session Bean java file then delete it from the source:
    Right-click on your SessionBean1 file and select copy.
    Select (left-click) the target Java Sources > com > company > division > webapplication1
    and paste the file copy (Ctrl-v).
    Now delete the original SessionBean1 source in the "com" folder with the delete key.
    6) Recreate your request Web Pages folder Page1.jsp - the java bean will be echoed:
    Left-click (select) the folder: Web Pages > company > division > webapplication1.
    Right-click for a context menu and select New > Page and type "Page1" and press Enter.
    You should see a new Page1.jsp file in Web Pages > company > division > webapplication1.
    You should see a new Page1.java file in Java Sources > com > company > division > webapplication1.
    You're ready to create code within your company's packaging structure!
    Regards,
    Craig Hunt

  • Unable to find data source null [Caused by: jdbc/Apps1DataSource not found]

    Hi,
    I am using OA Adapter which listens to an EBiz HRMS event, and I am encountering the following error in $Home\j2ee\oc4j_soa\log\oc4j_soa_default_group_1\oc4j\log.xml while registering the ESB service.
    Error details:
    <MSG_TEXT>Failed to process control event for Service "DefaultSystem.SyncWorkerPartyEbizOAAdapter" due to an error while adding the Service! Reason : oracle.tip.esb.server.common.exceptions.BusinessEventFatalException: An unhandled exception has been thrown in the ESB system. The exception reported is: "ORABPEL-12517
    AdapterFrameworkImpl::endpointActivation - Endpoint Activation Error.
    The Resource Adapter Oracle Applications Resource Adapter was unable to activate the endpoint oracle.tip.adapter.apps.AppsWFBesQueueDequeueActivationSpec:{MessageSelectorRule=tab.user_data.event_name = 'oracle.apps.per.api.person.update_person', QueueName=WF_BPEL_Q, Consumer=ORA_6krj2dpn70s36c1g6h1k8dhi8h, DatabaseSchema=APPS, AppsEventSchema=ANY_SCHEMA} due to the following reason: javax.resource.ResourceException: Unable to find data source null Caused by: jdbc/Apps1DataSource not found
    Please correct the reported issue and redeploy the BPEL process.
         at oracle.tip.adapter.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:566)
         at oracle.tip.esb.server.service.impl.inadapter.ESBActivationAgent.activateInboundJcaEndpoint(ESBActivationAgent.java:390)
         at oracle.tip.esb.server.service.impl.inadapter.ESBActivationAgent.performEndpointActivation(ESBActivationAgent.java:306)
         at oracle.tip.esb.server.service.impl.inadapter.ESBActivationAgent.activateEndpoint(ESBActivationAgent.java:236)
         at oracle.tip.esb.server.service.impl.inadapter.ESBActivationAgent.activateEndpoint(ESBActivationAgent.java:209)
         at oracle.tip.esb.server.service.impl.inadapter.InboundAdapterService.activateEndpoint(InboundAdapterService.java:177)
         at oracle.tip.esb.server.service.impl.inadapter.InboundAdapterService.activateService(InboundAdapterService.java:119)
         at oracle.tip.esb.server.service.EsbServiceFactory.activateEsbService(EsbServiceFactory.java:222)
         at oracle.tip.esb.server.service.EsbServiceFactory.addEsbService(EsbServiceFactory.java:240)
         at oracle.tip.esb.server.common.RuntimeESBSystem.addService(RuntimeESBSystem.java:211)
         at oracle.tip.esb.common.system.ServiceEventsHandler.handleCreateService(ServiceEventsHandler.java:72)
         at oracle.tip.esb.common.system.MetadataChangeListener.handleServiceEvent(MetadataChangeListener.java:136)
         at oracle.tip.esb.common.system.MetadataChangeListener.onMetadataChange(MetadataChangeListener.java:85)
         at oracle.tip.esb.common.control.ControlMessageHandler.handleMessage(ControlMessageHandler.java:115)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.process(ESBWork.java:162)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.run(ESBWork.java:120)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: javax.resource.ResourceException: Unable to find data source null
         at oracle.tip.adapter.apps.AppsManagedConnectionFactory.getDataSourceConnection(AppsManagedConnectionFactory.java:411)
         at oracle.tip.adapter.apps.AppsManagedConnectionFactory.getConnection(AppsManagedConnectionFactory.java:288)
         at oracle.tip.adapter.apps.AppsManagedConnection.getConnection(AppsManagedConnection.java:85)
         at oracle.tip.adapter.apps.AppsConnection.getJdbcConnection(AppsConnection.java:70)
         at oracle_tip_adapter_apps_AppsConnection_Proxy.getJdbcConnection()
         at oracle.tip.adapter.aq.database.MessageReader.establishDBconnection(MessageReader.java:358)
         at oracle.tip.adapter.aq.database.MessageReader.&lt;init>(MessageReader.java:265)
         at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.init(AQActivationSpecDequeuer.java:142)
         at oracle.tip.adapter.aq.AQEndpoint.&lt;init>(AQEndpoint.java:99)
         at oracle.tip.adapter.aq.AQResourceAdapter.endpointActivation(AQResourceAdapter.java:73)
         at oracle.tip.adapter.apps.AppsResourceAdapter.endpointActivation(AppsResourceAdapter.java:147)
         at oracle.tip.adapter.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:541)
         ... 20 more
    Caused by: javax.naming.NameNotFoundException: jdbc/Apps1DataSource not found
         at com.evermind.server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
         at com.evermind.server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:257)
         at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java:197)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at oracle.tip.adapter.apps.AppsManagedConnectionFactory.getDataSourceConnection(AppsManagedConnectionFactory.java:408)
         ... 31 more
    </MSG_TEXT>
    I have added the connection properties in $Home\j2ee\oc4j_soa\application-deployments\defaul\oc4j-ra.xml as follows:
    <connector-factory location="eis/Apps/apps1" connector-name="Oracle Applications Adapter">
         <config-property name="xADataSourceName" value="jdbc/AIADataSource"/>
         <config-property name="dataSourceName" value=""/>
         <connection-pooling use="none">
         </connection-pooling>
         <security-config use="none">
         </security-config>
    </connector-factory>
    Please correct me if the connection properties are wrong.
    I tried AppsEventSchema with 'NO-SCHEMA' and 'ANY-SCHEMA' also.
    If I use File Adapter I was able to register the ESB and instances were created successfully.
    My versions:
    JDEV:      10.1.3.3.0
    SOA:     10.1.3.3.0
    I have done a lot of research on this but in vain. Is there any patch for rectifying this error?
    Help me on this issue pl.
    Regards
    RK

    You need to check your datasource name jdbc/AIADataSource
    Check out your data-sources.xml to make sure you didn't mistype it.

  • I am unable to update my album art since I commenced using match (and after upgrading to Yosemite).  How can I 'unembed' old cover art and replace?

    I am unable to update my album art on my iMac since I started using Match (and after upgrading to Yosemite 10.10.3).  A message advises that it's not possible to removed old artwork if it's embedded.  How can I 'unembed' old cover art and replace?

    Normally artwork recovered with iTunes is stored as a separate artwork file and iTunes refers to that file to display artwork when you click on a track.  However, if you then copy the file to another player the artwork file is left behind and the track will not display the artwork on the other player.  To get around this it is possible to embed the artwork in the music file itself so it always travels with the file.  Artwork can be embedded by you or files from third party sources may arrive with embedded artwork.  iTunes apparently now won't replace artwork for such files.  You can accomplish this by completely deleting artwork for a file or set of files in Get Info, then getting iTunes to fetch artwork which will then be set as a reference file rather than being embedded.
    I use an old iTunes so unless you are using an ancient iTunes it won't help for me to give you great details.  To erase artwork I simply get info on a series of files and check the box next to the artwork box without adding any artwork and close.  To do it for  single file I Get Info, go to the artwork display tab and click delete.  Here's a Windows reference for a newer iTunes (but the "old Get Info" reference is for early iTunes 12 and no longer works with newer):I cannot delete embedded album artwork in iTunes 12

  • How to read the Java source code (in Netbeans)

    I use OS X10.5.5, NetBeans 6.1 and JSE 6 on a 64 bit mac.
    When I downloaded NB6.1 it had JSE 5 as it's default (and only) java platform. I ran Software Update to get Java 6 from Apple, used the Java Prefrences utitlity to set JSE6 as default. In NB I added the JDK6 platform, registered the JDK6 javadocs and noticed that I also have the option of registering the Java source code.
    I have three questions:
    1) How do I make JDK6 the default in NetBeans. The JDK5 keeps being default after I did the steps above and I don't see anywhere to change that.
    2) How do I read the Java 6 source code? I can see sun provides [source code| http://download.java.net/jdk6/] for their supported platforms. I dont see Apple doing the same for its JDK port. What would I need to do to get to read the java SE6 sources? or is it actually hiding somewhere in the /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home hierarchy?
    3) Where does the JVM look for the binary code to run when I make a call to, say java.util.ArrayList or any other library. In my naivety I would have assumed it would be a .class file somewhere in the java Home folder, but I don't see anything like it.
    thanks in advance,
    chris

    This is taken from the help included with netbeans. In response to question 1.
    By default, the IDE uses the version of the Java SE platform (JDK) with which the IDE runs as the default Java platform
    for compilation, execution, and debugging. You can view your IDE's JDK version by choosing Help > About and clicking the
    Detail tab. The JDK version is listed in the Java field.
    You can run the IDE with a different JDK version by starting the IDE with the --jdkhome jdk-home-dir switch on the command line
    or in your IDE-HOME/etc/netbeans.conf file. For more information, see IDE Startup Parameters.
    In the IDE, you can register multiple Java platforms and attach Javadoc and source code to each platform. For example, if you
    want to work with the new features introduced in JDK 5.0, you would either run the IDE on JDK 5.0 or register JDK 5.0 as a
    platform and attach the source code and Javadoc to the platform.
    In  , you can switch the target JDK in the Project Properties dialog box. In  , you have to set the target JDK in the Ant script itself,
    then specify the source/binary format in the Project Properties dialog box.
    To register a new Java platform:
    Choose Tools > Java Platforms from the main window.
    Click New Platform and select the directory that contains the Java platform. Java platform directories are marked with a  
    in the file chooser.
    Use the Sources and Javadoc tabs to attach Javadoc documentation and source code for debugging to the platform.
    Click Close.
    To set the default Java platform for a standard project:
    Right-click the project's root node in the Projects window and choose Properties.
    In the Project Properties dialog box, select the Libraries node in the left pane.
    Choose the desired Java platform in the Java Platform combo box.
    Switching the target JDK for a standard project does the following:
    Offers the new target JDK's classes for code completion.
    If available, displays the target JDK's source code and Javadoc documentation.
    Uses the target JDK's executables (javac and java) to compile and execute your application.
    Compiles your source code against the target JDK's libraries.
    If you want to register additional Java platforms with the IDE, you can do so by clicking the Manage Platforms button.
    Then click the Add Platform button and navigate to the desired platform.
    To set the target Java platform for a free-form project:
    In your Ant script, set the target JDK as desired in the javac, java, and javadoc tasks.
    Right-click the project's root node in the Projects window and choose Properties.
    In the Sources panel, set the level of JDK you want your application to be run on in the Source/Binary Format combo box.
    When you access Javadoc or source code for JDK classes, the IDE searches the Java platforms registered in the
    Java Platform Manager for a platform with a matching version number. If no matching platform is found, the IDE's default platform is used instead.
    See Also
    Managing the Classpath
    Declaring the Classpath in a Free-Form Project
    Stepping Through Your Program
    Legal Notices

  • Unable to update iTunes:  Related to Bonjour error "WSARecvMsg error 87"

    I am running iTunes 9.2.0.61 on Windows 7 Ultimate x64. For some time, I have been unable to update iTunes to the latest version beyond what I have, regardless of what the latest version is.
    Using Apple Software Update, I get the following error during the update:
    "Errors occurred while installing the updates. If the problem persists, choose Tools > Download Only and try installing manually."
    Accompanying this error in the Application log in Event Viewer are a few errors:
    Event ID: Source: Occurrences:
    100 Bonjour Service 7
    11920 MsiInstaller 1
    Event ID 100 from Bonjour Service has the following message:
    Log Name: Application
    Source: Bonjour Service
    Date: 10/31/2010 8:51:05 AM
    Event ID: 100
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: WILL7
    Description:
    The description for Event ID 100 from source Bonjour Service cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    WSARecvMsg failed (87)
    The specified resource type cannot be found in the image file
    Log Name: Application
    Source: Bonjour Service
    Date: 10/31/2010 8:51:05 AM
    Event ID: 100
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: WILL7
    Description:
    The description for Event ID 100 from source Bonjour Service cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    WSARecvMsg failed (87)
    The specified resource type cannot be found in the image file
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Bonjour Service" />
    <EventID Qualifiers="0">100</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-10-31T12:51:05.000000000Z" />
    <EventRecordID>16990</EventRecordID>
    <Channel>Application</Channel>
    <Computer>WILL7</Computer>
    <Security />
    </System>
    <EventData>
    <Data>WSARecvMsg failed (87)
    </Data>
    </EventData>
    </Event>
    Here is the error for event 11920 from MsiInstaller:
    Log Name: Application
    Source: MsiInstaller
    Date: 10/31/2010 8:51:06 AM
    Event ID: 11920
    Task Category: None
    Level: Error
    Keywords: Classic
    User: WILL7\swsander
    Computer: WILL7
    Description:
    Product: Bonjour -- Error 1920. Service 'Bonjour Service' (Bonjour Service) failed to start. Verify that you have sufficient privileges to start system services.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="MsiInstaller" />
    <EventID Qualifiers="0">11920</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-10-31T12:51:06.000000000Z" />
    <EventRecordID>16991</EventRecordID>
    <Channel>Application</Channel>
    <Computer>WILL7</Computer>
    <Security UserID="S-1-5-21-2626302321-2836749625-3976135476-1001" />
    </System>
    <EventData>
    <Data>Product: Bonjour -- Error 1920. Service 'Bonjour Service' (Bonjour Service) failed to start. Verify that you have sufficient privileges to start system services.</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>(NULL)</Data>
    <Data>
    </Data>
    <Binary>7B34314246304445342D354241452D344238382D414644332D383641333042323232313 8367D</Binary>
    </EventData>
    </Event>
    I checked my Services console and Bonjour was started. I can also stop and start it without issue. I searched for these errors, but most of what I found was trouble getting the Bonjour service to start and as you can see, this is not my issue.
    I have also tried to update iTunes with Bonjour stopped and disabled and with my Eset NOD32 Antivirus software disabled, but neither of these steps made any difference. I do not have a third-party firewall on my PC, but I am using Windows firewall. I have also tried disabling the Windows firewall, but this made no difference.
    Any help would be appreciated.

    More information:
    Found this in the System log in Windows Event Viewer. There are many occurrences coinciding with the times I have been trying to update iTunes and/or Bonjour.
    Log Name: System
    Source: Service Control Manager
    Date: 10/31/2010 9:44:14 AM
    Event ID: 7024
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: WILL7
    Description:
    The Bonjour Service service terminated with service-specific error The parameter is incorrect..
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
    <EventID Qualifiers="49152">7024</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8080000000000000</Keywords>
    <TimeCreated SystemTime="2010-10-31T13:44:14.338716200Z" />
    <EventRecordID>94955</EventRecordID>
    <Correlation />
    <Execution ProcessID="876" ThreadID="4212" />
    <Channel>System</Channel>
    <Computer>WILL7</Computer>
    <Security />
    </System>
    <EventData>
    <Data Name="param1">Bonjour Service</Data>
    <Data Name="param2">%%87</Data>
    </EventData>
    </Event>
    Message was edited by: scottws

  • I am trying to print redplum coupons and I can't, help.  I have updated java, adobe flash, and made sure my printer was set on default.  I am not sure what I am doing wrong.  I have contacted redplum and no one will help.

    I am trying to print redplum coupons and I can't, help.  I have updated java, adobe flash, and made sure my printer was set on default.  I am not sure what I am doing wrong.  I have contacted redplum and no one will help.

    No Apple response???  Redplum/Valassis will not help either.  I searched, using the cups error message and though it is Unbuntu, same error so maybe useful...only problem: details would not display unless I join Unbuntu forum.  What a pain to do anything with my Mac or find any help.  I honestly regret buying this buggy OS.
    Anyway, here is what I found, FYI:
    http://ubuntuforums.org/showthread.php?t=483415
    As the old saying goes: when in doubt, consult the manual. The problem appears to be that I added the printer using the KDE Add Printer Wizard. It was automatically given a "socket" URI instead of an "lpd" one. When I:
    - altered the printer settings at http://localhost:631 (the CUPS admin page) as instructed in the manual for the printer, and
    - copied the PPD file into a second place on the hard drive (as instructed on ubunutuforums, see the link above)
    ..everything started working.
    It's still slower than windows, but I can live with that
    Probably a simple fix. Change the socket I.P. to match the printer I.P. like this:
    socket://192.168.1.86:9100. The thing I'm concerned with using socket:// is that AFAIK the printer I.P. must not change. In my case I'm able to assign a static I.P. address to the printer but it's something to consider.
    I found that the only thing I needed to do was change socket to lpd (and remove :9100 off the end as well). See Solving Ubuntu printer “broken pipe” problem (DocuPrint C525A) . BTW thanks for steering me in the right direction - very grateful.      
    Solving Ubuntu printer “broken pipe” problem (DocuPrint C525A)
    Posted on November 25, 2008
    Are you having a problem with your printer under the latest versions of Ubuntu (perhaps it worked under an older version)? Are you able to print short documents, but not longer, or more graphics-intensive, documents? (e.g. the unfortunate people at http://ubuntuforums.org/showthread.php?t=625493). Do they sit there as Processing for ages and then switch to Held? If you have the same problem I had the solution I tried may work for you too. Firstly, check your cups error log:
    sudo gedit /var/log/cups/error_log
    If you see anything like the following, the solution may be simple:
    [Job 201] Unable to write print data: Broken pipe
    PID 13359 (/usr/lib/cups/backend/socket) stopped with status 1!
    System > Administration > Printing and right click on your printer, selecting Properties. Settings > Device URI
    If you see something like socket://your_printer_ip_address:9100 just change socket to lpd and remove the :9100 off the end. Then click on apply.
    Apparently lpd is a more modern protocol which works with most printers whereas socket is more raw (and potentially faster but riskier in a network situation). Somewhere along the line, the default Ubuntu/Gnome setup for networked printers shifted from lpd to socket. Some primitive printers will have benefited whereas a larger number of more modern printers will have suffered.
    Please correct me if I am wrong (which is highly possible) but the underlying problem could be that socket may make the printer wait a long time for a large file to be processed ready for printing. Some printers, such as the Fuji Xerox DocuPrint C525A, may drop the socket if things take too long to start coming through.
    Changing timeout settings might work but lpd is better than socket so it is the preferred solution in any case.
    If this works for you, please leave a comment to let others know (ideally with a description of the printer and Ubuntu version). Printer may be relevant if it doesn’t support the direct stream protocol properly. NB I may take a while to let your comment through because of the volume of spam. Sorry about that.
    Finally, thanks to sphilli8 for the steer in the right direction at http://ubuntuforums.org/showthread.php?p=6245626.
          http://ubuntuforums.org/showthread.php?t=483415

  • How to generate Java source using clientgen WL8.1?

    Hi, does anybody know how to generate Java source code using clientgen task on WL 8.1 Sp4 or SP5? I know WL 9.0 clientgen can do this, but we are still on SP5. Basically I want to look at the source code (I was wondering why it didn't work if I initialize a service impl by passing the WSDL URL string different than the URL specified in the original WSDL file that the clientgen is run against.)
    Does anybody also know how get web service client developed on Axis work on WebLogic without conficting the web service developed on WebLgoic that is running in the same box?
    Thanks for your help!

    hi ,
    As mentioned in the Question, I am unable to find the "Java Proxy Generattion" link in the Int builder.
    Also the help doc says:
    Java proxy generation is no longer supported in subsequent releases. For new developments or when making significant changes to a service interface, use Java proxy generation in SAP NetWeaver Studio instead. More information: Creating Outside-In Web Services, SAP NetWeaver Developer Studio.
    Does that mean that I can no longer generate java proxy from Int builder?
    regards,
    Piyush

Maybe you are looking for