Is it possible to run 2 programs that need different versions of a library?

Hi,
I have the following situation.
Tomcat 5.0 Server.
Program A is running on server, and needs axis 1.1 as a library.
Program B is running on the same server, and needs axis 1.4 as a library.
Axis 1.1 and 1.4 are not backwards compatible... if I just put 1.1 on it.. program B won't work.. If I just put 1.4 on it, program A won't work.
Tomncat doesn't seem to like having the same jar loaded in twice.
How do I make this all work? I really don't want to have to try to manually convert a large application from using 1.1 to 1.4 or vice versa, want to try to make them both work...
Edited by: TunaBoo on Jan 10, 2008 10:00 PM

No.

Similar Messages

  • I am trying to use an education program that needs Java applets to install and use and it will not use Safari. When I download IE from the web it will not install. How can I get a browser that will work on my MacAir for travel use of this program?

    I am trying to use and education program that needs Java applets and it will not run on Safari. IE will not install from the web. How do I get a browser that will work to install so I can use this program when I travel.

    Try using FireFox. IE will only run on a Mac if you run Windows on the Mac.
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    Install the Apple Boot Camp software.  Purchase Windows 7 or Windows 8.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    VM Fusion and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. A more recent comparison of Parallels, VM Fusion, and Virtual Box is found at Virtualization Benchmarks- Parallels 10 vs. Fusion 7 vs. VirtualBox. Boot Camp is only available with Leopard and later. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • HT4623 I want to use a program that needs Adobe Flash and I'M then told this device, iPad, can't use Adobe.  What does it use instead?

    I want to use a program that needs Adobe Flash and I'm then told Adobe Flash cannot be used with my iPad.
    What do,I use instead go Adobe Flash?

    Adobe has not made a version of Flash for the iPad.
    Kappy explains why. https://discussions.apple.com/message/19446567#19446567
    5 Flash Player Alternatives http://www.techshout.com/features/2011/01/flash-player-for-ipad-apps/
    Top 4 browsers supports flash player on iPad and iPhone
    http://mashtips.com/flash-player-ios/
     Cheers, Tom

  • What is the best way to properly activate the Lightroom Student Edition? Is the Student Edition a permanent program or does it deactivate after 2-4 years like some other programs that are student versions?

    I just purchased the student edition of Lightroom! I am very excited to use it and start creating beautifully edited photos but I'm a little unsure about a few things. It says I have to prove my eligibility to use the student edition which won't be an issue but what is the quickest and easiest way to submit this proof? Also I am concerned that the student edition will be temporary and I will have bought this program only to have it expire at the end of 4 years like some other programs that are student versions. Is the student edition of Lightroom a permanent program that I will have for life or will it deactivate after I graduate?

    When I purchased my academic version of Lightroom, it was a package set. Inside was a yellow card with the instructions on how to verify that I qualified for the academic discount. I submitted my academic e-mail address and other info as requested on that yellow card. Within 5 min. I received my serial number. Very straightforward. I had no problems whatsoever.
    There is only one version of the Lightroom program itself. The only difference is in the licensing and pricing. If you qualify for the academic discount, by all means use it. You are purchasing the same Lightroom program that anyone else does. It doesn't expire, there are no missing features, and it can be upgraded when new major versions are released. Those upgrades will cost the same as they cost for any other person, regardless of how they purchased Lightroom.
    You can confidently move ahead with obtaining your serial number. The only thing you are doing differently is paying a lower initial purchase price because of your academic status.

  • Is there a way to use a namespace, such as "Library", and have a program with a different namespace include the Library namespace?

    For many years, I have maintained a library of often used functions for C++.  This has become more challenging with the required namespace for C#. 
    Is there a way to use a namespace, such as "Library", and have a program with a different namespace include the Library namespace?
    bhs67

    You could create a class X in a namspace Y in a C# class library project. You can then add a reference to this class library project/assembly from every application in which you intend to use the class X in namespace Y.
    You don't add references to namespace, you add references to assemblies in .NET. You can then use a class in namespace Y of any referenced assembly by adding a using directive at the top of the code file in which you reference the class:
    using Y;
    Please remember to close your threads by marking helpful posts as answer.

  • I am writing a program that needs to draw gradient lines according to the points that i touch on ipad. For this i am using "DrawLinearGradient" function. But the 2 colors that i am giving for drawing gradient is not dividing equally in the complete line.

    Can anyone please help about the parameters that need to be passed corectly.
    CGColorSpace colorSpace = CGColorSpace.CreateDeviceRGB();
    CGColor[] colors = {UIColor.Red.CGColor,UIColor.Green.CGColor};
    float[] locations = {0.0f,0.5f,0.5f,1.0f};
    CGGradient gradient = new CGGradient(colorSpace,colors,locations);
    ColorMessage.FontSize = width;
    context.SetLineWidth(width);
    context.SaveState();
    context.Clip();
    context.DrawLinearGradient(gradient,penVertices[0],penVertices[count-1],0);
    context.StrokePath();
    gradient.Dispose();
    colorSpace.Dispose();
    context.RestoreState();

    Wouldn't this be better posted in a developers forum? This forum is for Using an iPad, not writing programs for one.

  • JAVA Install on software update but programs that need it not recognizing ?

    I upgraded to 10.4 recently and I had to add software which requires java 1.6 I ran software update and I think I got version 8. When I try to load the orig software that needed 1.6 it has an error and shows java at the old version.. I downloaded java from Apple so how do I get my system to recognize it.. it did install but does not seem to be looking at the newest version. Iread something about clearng the cache.. how do I do this or any ideas why the java is still not the latest? I restarted too..
    Thanks

    Sorry if I should know this but Im new to mac..Thanks.
    No problem... that's why we're both here!
    so I have the wrong version of java? or it didnt really install it because it did not find leopard
    Yes, Yes.
    Do you know how I can check what version of java I have installed?
    In Applications>Utilities>Java... open Java Preferences.
    Also in System Profiler>Software>Frameworks will haveeven more info, Also System Profiler>Software>Applications will have a few more.

  • I am having a problem w/ my itunes working correctly due to accidentally running Itunes through my troubleshooting, running programs made for previous versions of windows!! How do I turn it off?!??

    I am having a problem w/ my Itunes working correctly, after accidentally running Itunes through my  troubleshooter  to, Run Programs Made For PreviousVersions of Windows. It keeps popping up that the Compatibility  Version is on, to make sure it's off before opening my Itunes Account. I've looked everywhere, Please, Please, How Do I Make This Right??!??

    It sounds like either your hard drive or the SATA cable that connects it to the motherboard are failing. This could be heat related in your case, which is why you see it after it runs awhile. You can take it to the Genius Bar for a free evaluation. If you decide to test it yourself, I usually suggest moving the hard drive to an external enclosure. If it works there for awhile, the cable is probably the issue.
    http://www.amazon.com/Sabrent-2-5-Inch-Aluminum-Enclosure-EC-TB4P/dp/B005EIGUD4/ ref=sr_1_3?ie=UTF8&qid=1397647657&sr=8-3&keywords=2.5+enclosure
    http://www.ifixit.com/Device/MacBook_Pro_13%22_Unibody_Mid_2009

  • Is there a freeware program that deletes duplicates in your itunes library

    similar to way yamipod works with the ipod is there something that is like this for the library?

    http://www.versiontracker.com/dyn/moreinfo/win/40356
    http://www.versiontracker.com/dyn/moreinfo/win/51292
    No idea about the quality of those - using only macs

  • Navigation within swf files that use different version of actionscript

    I have multiple swf files that need to link up together, the problem is this, some of the files was developed a few years ago with Flash MX and actionscript 1 while some of these files was developed recently in CS 5 with actionscript 3.
    Is it possible to navigate within different version of actionscript files in the same flash player?
    I found that actionscript 1 file will not work once i have navigated to actionscript 3 file.
    Any suggession or solutions would be highly appreciate.

    Actually, it will not work properly. Given, the code behind all these swf(s) is Object Oriented then there is a solid chance of getting them to communicate with each other without any issue. Once suggestion would be to centralize the navigation into its own swf and then dispatchEvents and have the listeners handle the rest. I am sure there are other avenues, but I would do it this way so if there any other such file(s) in the future, all you will need to do is hook the plumbing up and off it goes. Now if the code is anything but 'Object Oriented' then it will take good chunk of time to get the navigation going. However way you decide to pursue it, test it rigorously so there aren't any foo surprises.
    Thanks.

  • Two libraries needing different versions of a common library

    I am currently writing an application that utilizes two libraries that depend on a third common library. However, each of the two libraries requires a different version of the third library. Is there any way this can be done?
    I have done some research into writing custom class loaders but I haven't been able to find anything useful in this instance. Any help would be appreciated. Thanks.

    It's not just a feature missing that's the problem.
    If I use one version of the library, one part of the
    program simply doesn't work. If I use the other,
    then the other part of the program refuses to work.The problem you should be trying to solve is why the two libraries won't work with the same (latest) version of the shared library. It indicates that one of them is relying on buggy behavior, and should be fixed.
    Do you have any access to the libraries' source code? You'd be far better off trying to figure out what changed, and how to fix the piece that relied on its old behavior, rather than any sort of hack (and changing package structure to work around a bug is definitely a hack, perhaps moreso than using a custom classloader).
    Finally, what does "doesn't work" mean? Are you unable to compile? Are you able to compile but get incorrect results? Does the program crash?

  • Why I need different versions in BCS

    What is the need for having different version in BCS? Can any one explain with example?

    one reason would be comparative reporting
    we have the following versions implemented:
    100 - actuals
    B00 - Budget version 1
    F00 - Forecast version 1
    F01 - Forecast version 1
    F02 - Forecast version 1
    F03 - Forecast version 4
    FL0 - Flash version
    the EhP2 has restating versions 200 and 300 I believe....
    if anyone wonders why the forecast versions look funny, it is because our management is used to these versions...
    so, I load budget and forecast into BCS via flatfiles (until we get IP up) and can run flash to actuals, flash to budget/forecast, actuals to budget/forecast comparative reporting
    let me know if this helps

  • Running a program that needs os9

    Hello, i have an ibook from fal '05, running osX 10.4.5. I have old math software called fathom and need to be able to load it onto my computer. However, it's only compatible with mac os9/classic...my computer does not have this installed. Can i do this from the website? If so, where can i find the download?
    thanks

    Hi, jpee -
    Your iBook G4 model can not boot to OS 9. The installers on all retail OS 9 Install CDs will run only when the machine is booted to OS 9, so there would be no point in obtaining one of those.
    If the program will run in Classic, you can use that on your machine - Classic is an install of OS 9 which is used as a program while the machine is booted to OSX, in order to be able to run many OS 9 programs.
    The original disks that came with your machine include the ability to install Classic. One or more of the following Apple KBase articles may help in that regard, depending which version of OSX your machine originally came with -
    Article #151871 - Mac OS X 10.3: Installing Classic
    Article #301408 - Using Restore discs with computers that ship w/ OSX 10.3.7 or later
    Article #86775 - Install Mac OS 9 to Use Classic Applications

  • Hi, I have an issue with a program that needs Windows Access for, it to run, any Ideas on how to make it work, the program I need to run is sbem (a building calculation software)

    Hi
    I have a mac book pro, I need to run a software package that requires Windows Access for it to work
    The software is SBEM (A building calculation software)
    Any ideas
    Many Thanks

    Direct you to the proper forum for MacBook :
    MacBook Series Forumshttps://discussions.apple.com/community/notebooks?view=discussions
    Mac OS X Forums
    https://discussions.apple.com/community/mac_os?view=discussions 
    http://www.apple.com/support/macbookpro
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Community
    https://discussions.apple.com/community/windows_software/boot_camp
    Boot Camp 4.0, OS X Lion: Frequently asked question
    http://support.apple.com/kb/HT4818

Maybe you are looking for