Using myEclipse on Mac Pro Running Mac OS X

Looking for a java developer that might help me.
I'm trying to setup myEclipse on my Mac Pro, and I'm having a bear of a time getting an ANT script to run inside of myEclipse. This same script runs FINE inside myEclipse on a windows PC. Here is a slimmed down version of the ANT script with the section that's failing:
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="doIt" name="estreetDev">
<property file="build.ant.properties"/>
<!-- JiBX binding compiler task definition -->
<taskdef classname="org.jibx.binding.ant.CompileTask" name="bind">
<classpath>
<pathelement location="lib/bcel.jar"/>
<pathelement location="lib/jibx-run.jar"/>
<pathelement location="lib/xpp3.jar"/>
<pathelement location="lib/jibx-bind.jar"/>
</classpath>
</taskdef>
<target name="doIt">
<!-- Run JiBX binding compiler -->
<echo> ${basedir} </echo>
<bind load="true" verbose="true">
<bindingfileset includes="binding.xml" dir="config/jibx"/>
<classpathset dir="lib/"/>
<!-- classpathset dir="lib/jibx-run.jar" / -->
</bind>
</target>
</project>
The basedir is the project directory, "estreetDev," which contains the "lib" directory. In that lib directory are some 53+ jars, which have to be added to the build. I've added these jars in myEclipse preferences, project preferences, and in the External Tools Dialog Classpath tab; however, when the ANT script runs it keeps complaining that it can't find classes on ANY classpath. Specifically, in the taskdef above is the lib/jibx-run.jar, which contains the org.jibx.runtime.Utility.class. When I run the ANT script I get the failure indicated below. Note the "Caused by: " line that states "Class org.jibx.runtime.Utility not found in any classpath." Does anyone here know what I'm doing wrong? I've tried everything I can think of to solve this problem. The ANT script works fine when run on the command line.
doIt:
[echo] /Volumes/Data/JavaProjectsWork/estreetDev
[bind] Using the following paths:
[bind] /Volumes/Data/JavaProjectsWork/estreetDev/lib
[bind] Using the following binding paths:
[bind] /Volumes/Data/JavaProjectsWork/estreetDev/config/jibx/binding.xml
BUILD FAILED
/Volumes/Data/JavaProjectsWork/estreetDev/testBuild.xml:17: java.lang.ExceptionInInitializerError
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:115)
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.eclipse.ant.internal.core.ant.EclipseDefaultExecutor.executeTargets(Eclipse DefaultExecutor.java:32)
at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java: 623)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java: 456)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.eclipse.ant.core.AntRunner.run(AntRunner.java:377)
at org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate$1.run(AntLau nchDelegate.java:230)
at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.ExceptionInInitializerError
at org.jibx.binding.Compile.compile(Compile.java:270)
at org.jibx.binding.ant.CompileTask.execute(CompileTask.java:238)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
... 17 more
Caused by: java.lang.IllegalArgumentException: Class org.jibx.runtime.Utility not found in any classpath
at org.jibx.binding.def.StringConversion.<init>(StringConversion.java:153)
at org.jibx.binding.def.PrimitiveStringConversion.<init>(PrimitiveStringConversion .java:152)
at org.jibx.binding.def.BindingDefinition.<clinit>(BindingDefinition.java:66)
... 25 more
--- Nested Exception ---
java.lang.ExceptionInInitializerError
at org.jibx.binding.Compile.compile(Compile.java:270)
at org.jibx.binding.ant.CompileTask.execute(CompileTask.java:238)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
at java.lang.reflect.Method.invoke(Method.java:585)
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.eclipse.ant.internal.core.ant.EclipseDefaultExecutor.executeTargets(Eclipse DefaultExecutor.java:32)
at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java: 623)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java: 456)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.eclipse.ant.core.AntRunner.run(AntRunner.java:377)
at org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate$1.run(AntLau nchDelegate.java:230)
at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.IllegalArgumentException: Class org.jibx.runtime.Utility not found in any classpath
at org.jibx.binding.def.StringConversion.<init>(StringConversion.java:153)
at org.jibx.binding.def.PrimitiveStringConversion.<init>(PrimitiveStringConversion .java:152)
at org.jibx.binding.def.BindingDefinition.<clinit>(BindingDefinition.java:66)
... 25 more

I finally found my own answer.
A copy of xercesImpl.jar has to be placed in /Library/Java/Home/lib/endorsed/ for it to be configured properly on the Mac.

Similar Messages

  • I'm using a 15" Macbook Pro running OSX6.8 and cannot upgrade. I have a subscription to Adobe CC but none of these work on this so I was on with Adobe for 5 hours trying to install and launch Illustrator, InDesign, Photoshop, Muse, and Acrobat Pro from CS

    I'm using a 15" Macbook Pro running OSX6.8 and cannot upgrade. I have a subscription to Adobe CC but none of these work on this so I was on with Adobe for 5 hours trying to install and launch Illustrator, InDesign, Photoshop, Muse, and Acrobat Pro from CS6. Well, InDesign is the only one that works and I have a ton of work due! I don't have a serial number for Photoshop or Illustrator except for CS3, and they don't work. InDesign gave me no problems. Illustrator says it can't work on this machine. Photoshop needs a serial number. I'm stumped and getting anxious and freaked out. Can anyone help? Adobe Chat is down right now.

    if you have a cc subscription, close ps > sign out and then back in to your cc desktop > open ps.
    ai cs6 requires:
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8 or v10.7. Adobe Creative Suite 5, CS5.5, and CS6 applications support Mac OS X v10.8 and v10.9 when installed on Intel-based systems.*
    2 GB of RAM (8 GB recommended)
    2 GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash storage devices)
    1024 x 768 display (1280 x 800 recommended) with 16-bit video card

  • Best external keyboard & mouse to use with a macbook pro running using wind

    I have been looking at the mstand to use my macbook pro on a desk, & learned it needs an external keyboard & mouse. Is there these items that will work without glitches in both mac os & windows? I will be using mac os as well as windows. I would also like to keep the cost down for the keyboard & mouse.

    I have a better solution .. look at moshi zephyr
    I am currently using that with a magic mouse and things just couldn't be better

  • Format External Western Digital Drive to be used with only Mac

    I recently ordered Western Digital My Passport Essential. I will get it by tomorrow evening.
    It comes pre-formatted using NTFS file-type.
    I need to format it, to be used with My MacBook Pro running Lion, and old White MacBook running Snow Leopard. One more thing, I will be using with OS X only. I don't have Windows/Linux system at my place, and I don't have any intention to be using with Windows/Linux in future.
    Should I format it using HFS+ or HFS+ Journaled or something else? Why?

    Like Niel said...
    but also you might want to partition it rather than just erase the visible partition, i think some of these disks come with annoying hidden partitions and crappy backup software.
    If you want to make sure you get the whole drive to yourself, instead of using the erase tab in Disk Utiliity, go to the partition tab, then select 1 partition (or which ever you want from the drop down.) and configure as you see fit. this will make sure that no hidden partitions remain.
    You might also want to select GPT as the partition map incase you ever decide to use it to boot OS X from.

  • How do I find a driver for a Dell 1320c Colour Laser Printer for a MacBook Pro running OSX 10.9.2

    How do I find a printer driver for a Dell 1320c Color Laser Printer for use on a MacBook Pro running Mavericks OSX 10.9.2?

    Ask Dell who made the printer and what model is it. Then you can see if there is a matching driver provided with OS X or that can be downloaded from the manufacturer's website.

  • Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • Im using a Macbook Pro, running a Mac OS 10.6.8, with 400GB  free of space and it is running slow. It takes 10 minutes to start up and things like that. What should I do?

    Im using a Macbook Pro, running a Mac OS 10.6.8, with 400GB  free of space and it is running slow. It takes more than 15 minutes to start up and things like that. I cant seem to do anything as it is so slow. The 'beachball of death' is also present during start up. What should I do? Please help

    Try these two steps first. 
    Get the Original Installation disk and boot the MBP holding down the C key.  When you get to the point where you see a menu bar on the top of the display, select UTILITIES.  From the drop down menu select DISK UTILITY>FIRST AID.  Run verify and repair.
    See if there is any improvement.
    Try a Safe Boot:
    http://support.apple.com/kb/HT1455
    This might indicate that third party applications are an issue.
    Ciao.

  • I have an imac bought late 2013, can i use it as a display for the new mac pro running windows 8 through bootcamp?

    I have an imac bought late 2013, can i use it as a display for the new mac pro running windows 8 through bootcamp?

    No. Target Display mode is only supported when connected to a Mac running 10.6 or later.
    It cannot be used with a PC, bootcamp, gamaing console, cable box, DVR or PowerPC Mac.
    http://support.apple.com/kb/ht3924

  • I have a mac book pro running Lion 10.7.4 and every time I use Google Earth The computer crashes by lowering a black curtain and then asking me to hold the power button down until it closes and press the power button again to restart it. Can I fix this?

    I have a mac book pro running Lion 10.7.4 and every time I use Google Earth The computer crashes by lowering a black curtain and then asking me to hold the power button down until it closes and press the power button again to restart it. Can I fix this? It bugs me when I'm looking at real estate.

    I really don't have an answer for that one. I guess that while trying to get things working correctly, I would use the most basic monitor I had which in your case would be the Eizon using the Thunderbolt port and adaptor.
    When you boot into Safe Mode the startup is quite slow, but you should get the Apple logo and then the spinning gear below it (release the SHIFT key when it appears.) Then after a little more time you should see a gray progress bar appear below the spinning gear. When that disappears the computer will startup to a login screen.

  • I have an old PowerPC and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same router, but the old Mac connects with full bars, but the MBP struggles with only 2. Pls help, thanks!

    I have an old PowerPC running 10.4.11 and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same wireless router. The old Mac connects with full bars but the MBP struggles with only 2 bars. Pls help, thanks!

    BDAqua,
    Thanks for the response.
    Apple has used the term "Digital Audio" to identify this machine.  System Profiler has the following information:
    Machine Name:          Power Mac G4
      Machine Model:          PowerMac3,5
      CPU Type:          PowerPC G4  (2.1)
      Number Of CPUs:          1
      CPU Speed:          800 MHz
      L2 Cache (per CPU):          256 KB
      Memory:          768 MB
      Bus Speed:          133 MHz
      Boot ROM Version:          4.3.3f2
      Serial Number:          XBxxxxxMK9
      Sales Order Number:
    Yes, I could connect them by ethernet if all I wanted to do was transfer files, but I would like to network them so I could use wireless internet.  The machines are not always so close together, I did that to simplify the testing.  With the very slow transfer speeds I am reluctant to move ahead with the internet step. 
    <Edited By Host>

  • Can the Mac Pro run Window XP (booth camp) and be used as a MAc OS server

    Hi There
    Can the Mac Pro run Window XP (booth camp) and be used as a MAc OS server in the same time?
    I am a small business and I was thinking of using the new mac pro for a new workstation on my studio and to also use it as a server for 5 work others stations. Is that possible? Or I am asking a bit to much work load to do for the Mac Pro?
    Can the Mac Pro can run under Window XP and Autocad and still be accessed by other workstation whilst working on the cad software? Is booth camp will slow the machine like Virtual PC?
    IS the MAc Pro can manage file hosting website with PHP and mySQL capabilites?
    CHARLES
    MAC PRO Mac OS X (10.4.7)

    Great question, but it appears the answer is no (at this time); they promise to work on it immediately. Check this thread at parallels.
    http://forum.parallels.com/thread3659.html
    iMAC G5 20" - 2GB RAM - 150 GB Hard Drive   Mac OS X (10.4.6)   Also MacMini & MacBook Pro Intel Core Duo - OS X & WIN2K

  • Is there a way to use two macs to run one app? I want to use my two macbook pros processors in a shared capacity.

    I have two macbook pros a 2.4ghz and a 2.2ghz. Is there a way to use the other macbook pro to help with any cpu intensive apps like audio and video apps. I haven't had much luck on finding anything about sharing resources. It would be awesome if you could link up two macs and use both of them to power through processor intensive tasks.

    Yep here you go.
    http://www.youtube.com/watch?v=vLujLtgBJC0

  • I have a 2007 Mac Pro running 10.7.5 and I want to replace a drive and install Lion

    I have a 2007 Mac Pro running 10.7.5 with dual core intel 2.66 with 13 GB ram. I want to replace my startup disk 250GB (which has all my apps) but has been lagging ( I thinks it's an original drive) with the new HD in bay 2 (4 T drive) which I installed this week. I tried to install lion onto it and it said I needed a newer version 10.7.3-I have time machine as my backup on an external. All the bays are full and I'd like to trade them out sooner or later to get more room for movies, etc. The last OSX disk I have is Snow Leopard and that was rejected as not new enough. Can someone help me with info on installing Lion on the new drive. I know how to make it the startup disk after, but I can't seem to load 10.6, 10.7 or 10.8 (not supported on my older mac pro.) Thanks,
    ANNE Z

    Firstly, time to get rid of the 2 x 512MB FBDIMMs in there, they add more heat and use more watts then they add to the system. If you need more, and 4 or 8 DIMMs is ideal, Amazon has 2x2GB sets $22 - about 1/50th what I paid for 1GB new.
    Buy a 250GB Samsung EVO SSD $129
    Pick up Carbon Copy Cloner http://www.bombich.com to clone the system to the SSD
    A sled adapter for the SSD from Icy Dock $14 Amazon.com
    7-8 years overdue for new system drive! amazed it lasted this long. An SSD plus some WD Black 2TB drives or larger should do the trick.
    you can also put the SSD in the lower optical drive bay and use one of the two ODD "spare" SATA ports for the SSD - an SSD is the best way to improve the performance of our old Mac Pro 2006-7 models.
    When you downloaded the Lion installer that was when to create a flash type installer with Lion DiskMaker.
    If you have put in a new-ish graphic card then OS X 10.6.0 may not support it.

  • Limited In Establishing an A/V  Connection Using New 2008 Mac Pro 8-Core

    I will apologize in advance for the long and complicated story that follows.
    I purchased this 8-core Mac Pro two weeks ago. I installed all software fresh on the Mac Pro and transferred no data from an iMac I had previously been using. The Mac Pro was running fine and I was able to have a video iChat with one of my friends across town who has a mid-2007 iMac with no difficulty. I had initially set up my Mac Pro with file sharing turned on so that I could exchange files with my wife who took possession of my mid-2007 iMac. A few days went by and my wife decided to turn off file sharing on my Mac Pro. Suddenly my Mac Pro would not boot at all, showing the spinning black pinwheel and the silver screen with the Apple logo for more than 30 minutes. I tried to repair permissions on the Mac HD, but I got a red error message that the permissions could not be repaired. Interestingly enough Verify Disk ran and report no problems with the Mac HD.
    At this point I did a full erase of the Mac HD, and did a complete restore from Time Machine. After a few minor changes like having to reimport my e-mail, my Mac Pro seemed to be working fine again. However, today I received a iChat video invitation from my friend across town, and when I responded, I soon got a "failure to establish communication" message. I then tried to establish a video chat with my friend. After watching the spinning black wheel in the iChat dialog (which had good video), I soon got the same message. He also got this message on his end. We were able to establish Text Message communication through iChat, but we could not establish either video or audio. My friend's Mac was working fine in iChat because he had just been iChatting using video with one of his friends. The problem thus was firmly on my end.
    At this point, I tried to video iChat from my Mac Pro with my wife in the next room on her iMac. It worked perfectly and we had both good audio and video. However, every time I attempted to iChat with my friend across town with, I always soon received the message that the connection could not be made bacause my friend had not responded, which of course, he had.
    I deleted all of my user preferences related to iChat (four if I recall correctly) but this did not help.
    In summary, I have limited use of video iChatting from my Mac Pro only with my wife next door on her iMac. Incidentally, I went over to her iMac, logged on, and instantly had a video iChat going with my friend across town.
    I have just spent 3 hours on the phone with Apple Suport and went through several layers of tech support. In the end, their only recommendation was to do a complete erase and reinstallation of the OS. I am not willing, at least at this time, to do this since I have every one of Apple's Pro software applications (FCS2, Aperture, Logic PRo 8 Studio, etc.) installed on this machine and it takes a long time to reinstall all that software.
    I would be extremely grateful for any suggestions that anyone may have.
    Tom

    I finally solved this problem by doing three things. I do not know which of the three really solved the problem, but one of them did. Since this is a new Mac Pro the weekly and monthly maintenance routines had not been run. I ran them using a widget called Maintidigit. Second, I reinstalled iChat directly from the Leopard install disk. Third, I rebooted my cable modem (Road Runner) and then I rebooted my Buffalo Router and while power was off to the Buffalo Router, I unplugged and then plugged in all cables to it. I then plugged in the power cable. Video iChatting with my friend across town worked perfectly with no error messages after these three changes.
    Tom

  • I am trying to do a migration transfer from an older Mac Pro, running Leopard, to a newer Mac Pro, running Lion.  There is a step that asks for a "passcode" to proceed.  I have no idea what that passcode is.  It seems to want a numeric code.

    I am trying to do a migration transfer from an older Mac Pro, running Leopard, to a newer Mac Pro, running Lion.  There is a step that asks for a "passcode" to proceed.  I have no idea what that passcode is.  It seems to want a numeric code.  Has anyone had this experience?

    This general-purpose article gives detailed step-by-step instructions for using Migration assistant, Setup Assistant, and other mehtods, and discusses the Pros and cons of each mtheod. It is very approachable and easy to understand. Wriiten by Pondini, the resident Time Machine guru.
    Setting-up a new Mac from an old one, its backups, or a PC

Maybe you are looking for

  • Text to flow 1st column 1st page TO 1st column 2nd page - IS IT POSSIBLE?

    Pages 2.0.1v2 en Mac OS X 10.4.7. I would like to have a 2-column document, where the text flows independently within each column across the pages of the document. That is, when the text of the left column, first page, reaches the end of the first co

  • Allow user to password protect a form

    I have created a form that asks if the user wants to insert a password - a basic text field. If the password field is empty, then the form opens. If the password exists, then the user is asked for a password - if correct, the form opens for editing,

  • I updated and now my serial number's no good. HELP!

    I just ran Software Update and now my Pro Apps won't open without filling in the registration info. But it tells me my serial number is no good. How do I get them to work again?

  • Making Spyr Dynamic

    Have searched for but could not find so I am asking: Can someone clue me into how I can use a Collapsible Panel or Accordion Panel in a PHP page using a mySQL recordset and display the data from the recordset in the widget and have the widget work in

  • Multiple hotspots on an animated gif

    Hi there, I am creating an animated gif that will have 15 frames. I need to create two hotspots that will direct the browser to two different areas. One hotspot will direct the user to another web page. The second hotspot will be to allow users to su