Getting Open MQ and Mule 2.0 work together

Hi!
I would like to ask some help on getting Open MQ work with Mule 2.0. I'm quite new to both technologies, and I can't get them to work together. Here is how I've tried so far:
What I'm trying to achieve first, is that there are 2 queues in my open mq, and if something arrives in one queue, mule should get that from the queue and put it in the other queue.
I've created a configuration file for mule:
(sorry that it looks really crappy, for some reason, couldn't really get it to show nicely on this forum, however I edited it, it always made each line start on the left)
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jms="http://www.mulesource.org/schema/mule/jms/2.0"
xmlns:spring="http://www.springframework.org/schema/beans">
<!-- Uncomment to download xsds from web instead of using the Eclipse XML Catalog.
xsi:schemaLocation="
http://www.mulesource.org/schema/mule/core/2.0 http://www.mulesource.org/schema/mule/core/2.0/mule.xsd
http://www.mulesource.org/schema/mule/jms/2.0 http://www.mulesource.org/schema/mule/jms/2.0/mule-jms.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
-->
<model name="JMSProba">
<service name="JMS">
<inbound>
<jms:inbound-endpoint queue="MyQueue" synchronous="false"/>
</inbound>
<component class="disp.Dispatcher"/>
<outbound>
<outbound-pass-through-router>
<jms:outbound-endpoint queue="out"/>
</outbound-pass-through-router>
</outbound>
</service>
</model>
</mule>
The service component class pretty much doesn't do anything for now, but is like this:
package disp;
public class Dispatcher {
public Object dispatch(Object o){
return o;
I'm using the Mule IDE, and unfortunately I can't even test if this works or not, because when it starts the mule server, I get an error, which I don't understand why I get:
org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'mule'.
I really have no idea why I get this exception. Anyone knows what I did wrong in my configuration file? Also, can anyone tell me, if what I'm trying to do looks something like this, or I'm doing it all wrong? If anyone can help me get this all to work, I'd really appreciate it.
I haven't seen any info on how to configure the Open MQ Connector, so I'm not sure how to do it. I've tried this:
<connector name="jmsConnector" className="org.mule.providers.jms.JmsConnector">
<properties>
<property name="specification" value="1.1"/>
<property name="connectionFactoryJndiName" value="ConnectionFactory"/>
<property name="jndiInitialFactory" value="com.sun.jndi.fscontext.RefFSContextFactory"/>
<property name="jndiProviderUrl" value="file:///C:/Temp"/>
<property name="jndiDestinations" value="true"/>
<property name="forceJndiDestinations" value="true"/>
<map name="connectionFactoryProperties">
<property name="brokerURL" value="vm://localhost:7676"/>
</map>
</properties>
</connector>
but it doesn't work, the error tooltip says "Invalid content was found starting with element 'connector'", and then the next error is at the first 'property' element, saying "Invalid content was found starting with element 'property'. One of '{"http://www.springframework.org/schema/beans":entry}' is expected. "
Can someone please also help me with the connector creation? Since this had errors, I had to cut it out when trying to run my config file, that's why you can't see it in it.
My next step (if this would work) would be to use this on 2 different JMS's - Mule gets the message from a queue from a certain JMS, then sends it to the queue of a different JMS. Of course I can't start working on this until my first task works, but I was wondering, how to create 2 different connectors and then use different connector for each of the endpoints.
Thanks for any help in advance!
Edited by: kissziszi on Jul 25, 2008 3:06 AM
Edited by: kissziszi on Jul 25, 2008 3:09 AM

Hi Pawan!
Thank you a lot for your help! Unfortunately it's still not working. Here is my current config file:
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:stdio="http://www.mulesource.org/schema/mule/stdio/2.0"
xmlns:jms="http://www.mulesource.org/schema/mule/jms/2.0"
xmlns:vm="http://www.mulesource.org/schema/mule/vm/2.0"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.mulesource.org/schema/mule/core/2.0 http://www.mulesource.org/schema/mule/core/2.0/mule.xsd
http://www.mulesource.org/schema/mule/jms/2.0 http://www.mulesource.org/schema/mule/jms/2.0/mule-jms.xsd
http://www.mulesource.org/schema/mule/stdio/2.0 http://www.mulesource.org/schema/mule/stdio/2.0/mule-stdio.xsd
http://www.mulesource.org/schema/mule/vm/2.0 http://www.mulesource.org/schema/mule/vm/2.0/mule-vm.xsd">
<model name="JMSProba">
<service name="JMS">
<inbound>
<jms:inbound-endpoint name="MyQueue" address="jms://queue:MyQueue" synchronous="false" connector-ref="jmsConnector"/>
</inbound>
<component class="disp.Dispatcher"/>
<outbound>
<outbound-pass-through-router>
<jms:outbound-endpoint name="out" address="jms://queue:out" connector-ref="jmsConnector"/>
</outbound-pass-through-router>
</outbound>
</service>
</model>
<jms:connector name="jmsConnector" connectionFactory-ref="openMQ"
createMultipleTransactedReceivers="false"
numberOfConcurrentTransactedReceivers="1" specification="1.1">
<spring:property name="jmsSupport" ref="jndiJmsSupport" />
</jms:connector>
<spring:beans>
<spring:bean name="jndiJmsSupport" class="org.mule.transport.jms.Jms102bSupport">
<spring:constructor-arg ref="jmsConnector" />
</spring:bean>
<spring:bean name="context" class="javax.naming.InitialContext">
<spring:constructor-arg type="java.util.Hashtable">
<spring:props>
<spring:prop key="java.naming.factory.initial">com.sun.jndi.fscontext.RefFSContextFactory</spring:prop>
<spring:prop key="java.naming.provider.url">file:///F:/Info/MessageQueue/mq</spring:prop>
</spring:props>
</spring:constructor-arg>
</spring:bean>
<spring:bean name="openMQ" class="org.springframework.jndi.JndiObjectFactoryBean">
<spring:property name="jndiName" value="MyQueueConnectionFactory" />
<spring:property name="jndiEnvironment">
<spring:props>
<spring:prop key="java.naming.factory.initial">com.sun.jndi.fscontext.RefFSContextFactory</spring:prop>
<spring:prop key="specifications">1.1</spring:prop>
<spring:prop key="java.naming.provider.url">file:///C:/Temp</spring:prop>
</spring:props>
</spring:property>
</spring:bean>
</spring:beans>
</mule>
I get an exception:
A Fatal error has occurred while the server was running:
* Cannot convert value of type [javax.naming.Reference] to required type
* [javax.jms.ConnectionFactory] for property 'connectionFactory': no matching
* editors or conversion strategy found (java.lang.IllegalArgumentException)
or in more details:
ERROR 2008-07-27 18:30:52,953 [main] org.mule.config.builders.AbstractConfigurationBuilder: Configuration with "org.mule.config.spring.SpringXmlConfigurationBuilder" failed.
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'JMS': Cannot create inner bean '(inner bean)' of type [org.mule.routing.inbound.DefaultInboundRouterCollection] while setting bean property 'inboundRouter'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)': Cannot create inner bean '(inner bean)' of type [org.mule.config.spring.factories.InboundEndpointFactoryBean] while setting bean property 'endpoints' with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jmsConnector': Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [javax.naming.Reference] to required type [javax.jms.ConnectionFactory] for property 'connectionFactory'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [javax.naming.Reference] to required type [javax.jms.ConnectionFactory] for property 'connectionFactory': no matching editors or conversion strategy found
I have no idea why I get this exception :(
There are a few things I don't understand in your config file though:
-How come we don't have to specify the address where the broker is running? (like localhost:7676)
-In the spring bean called "context", why do you specifiy the Open MQ installation directory? I mean, why do you have to specify it?
-I don't understand everything in the file, so I might say something stupid now... but ... you have a spring bean called "context", and I don't see it used anywhere. Or do you have to have a spring bean called context? Or is this necessary at all?
About the Open MQ admin tool. Am I correct in assuming, that all you have to do, is create a Broker (and add destination to it), and create an Object Store and add connection factory to it (and optionally physical destination too ... although this is not necessary because if you create a destination and you don't make physical destination for it, then by default it will be created for it). This is what I did with Open MQ tool.
I was wondering if you could please give me your email address, would be easier to communicate over that, this forum seems a bit deserted anyway.
Thanks in advance!
Sziladi Zoltan

Similar Messages

  • Can't get my laptop and airport extreme to work together

    Hi,
    I can't get a green light on my base. Also, when I try and set up the computer to do the wireless thing it's prompting me to enter all this info that I don't have...like network password, info, connection...where would I find that info? Sorry if I'm being vague...it seems to be alot of work to connect! I keep reading posts about it being so easy!

    hi DelilahBelle - maybe consider the following steps:
    1.) establish a valid connection with your dsl-provider. to do so: connect your modem to your computer using your mostly yellow ethernet-cable (so at the moment no wireless established). then check if you can access the internet thru safari.
    1.a) if not, configure first your modem and the dsl-connection in the right way. you can use safari and enter the modem's tcp/ip-(routerside-)adress (e.g. 192.168.1.1 for a netopia modem) and you will get the modemrouters menue. to configure the modem you must have some information from your dsl-provider (at&t, swisscom, t-online whatever):
    - your userid and password to validate yourself in the login process
    - maybe dns1 and dns2 adresses a.s.o. (if you have a simple network it's not required)
    1.b) if ok, ensure your modem is set to DHCP (dynamic tcp/adress management). maybe you have to set this parameter in your modem using its routers menue. then every component in your network will get a dynamic tcp/ip adress
    2.) connect your airport express to the modem with the ethernet cable. do a hard reset with your airport express. afterthat select and configure your airport express using the airport express utility version 5.2.1 (program, utility folder) using its assistant. after finishing you should get a green light on the express and you should be able to go on the internet thru safari
    2.a) if not, select the airport express in the utility and double-click twice on its icon. you will get the summary screen from the airport express. there you will see a yellow spot. click left there and you will get another window where the error is explained ...
    2.b) be happy
    3.) if your network is more complicated then follow maybe this
    http://discussions.apple.com/thread.jspa?threadID=1087373&tstart=0
    but anyway step 1 and 2 i would are the base for any extension.

  • Would like to get iSight, iChat and Universal Access to work together

    Problem: family member with age-related macular degeneration, form not presently curable. Avid reader, feels isolated unable to do so. Due to age and related problems he's very confused trying to use Universal Access (UA) on ANY size Mac screen, situation in which I suspect he's far from being alone; I also find UA extremely cumbersome and almost unworkable.
    Proposed solution: would like to procure him a second, external iSight camera, mount it on a (powerful) light stand next to a 20" iMac, have that contraption positioned over various paper documents which I propose to then magnify and display on the Mac.
    iChat, unlike PhotoBooth, does not have the ability to flip images and thus render text readable. Also, zoom on iChat inadequate. PhotoBooth use (taking images, flipping, etc) very cumbersome; also, cannot seem to be able to zoom.
    Dedicated CCTV units on the market accomplishing simple video magnification seem outrageously overpriced ($3-4000) and not sure if they have their own unknown issues. They would not afford the potential flexibility of a Mac, accomplishing so many other potential tasks.
    Proposed solution would seem to offer a wealth of possiblities if someone may have an idea how to tie it all together. Anybody?
    iMac   Mac OS X (10.4.7)   Intel

    Thanks for the tip about QuickTime pro.
    I think rather than moving the iSight camera down or up to adjust magnification, that you use Zoom instead.
    Zoom is a lot more user friendly with something like the PowerMate. The hot keys for adjusting magnification are just a little too obscure and awkward for my tastes, but having a dedicated knob takes care of that. We use a single press to toggle inverse on and off. A press and hold to activate/deactivate Zoom altogether. Press and spin to adjust contrast.
    eMac 1.42   Mac OS X (10.4.7)   I paid the going Windows price for a screen reader and got a free computer!

  • TS1702 my ipad2 was restored twice as it will not connect to my network, so what steps must I take to get iCloud and my ipad2 to work together and how do I connect so I am on internet????

    my ipad2 was restored twice as it will not connect to my network, so what steps must I take to get iCloud and my ipad2 to work together and how do I connect so I am on internet????   I connect tp my mac mini. It is on my own network. Mail and Safari open on it just can not get my ipad back online!!!     HELP!  LOST HERE!!!!

    Uwdawgfan-
    Your new router may not correctly handle Bonjour data required by AirPrint.  Contact Frontier to correct the router's setup.  A firmware update may be required.
    Fred

  • Hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Does 2 firewire audio and video interface can work together  on FCP ?

    hello,
    My audio interface is a TC Electronic Konnekt 24D
    my video interface is a Canopus ADVC 110
    my hard drives are plugged in firewire too
    and I use Final Cut Pro 5.0.4
    So, the konnekt is recognized by FCP only when the Canopus is not plugged. And even then, the audio sometimes drop out and sometimes causes the app to crash, so that I have to trash the preferences
    When I plug the Canopus, the Konnekt 24D is recognised by OS X but not FCP
    I want to use the voice over tool with the konnekt 24D, so what should I do ?
    Does 2 firewire audio and video interface can work together ?
    If so, maybe I only have a driver problem from TC Electronic.
    But if not, I have to change this interface. Let me know if only RME, MOTU, Presonus and Edirol work, as it is said on apple's webpage for hardware compatibility
    thanks
    eMac G4 1,25 Ghz Mac OS X (10.3.9)
    eMac G4 1,25 Ghz 1 Go RAM DDR   Mac OS X (10.3.9)  

    The 1082 does show up as a possible input when I open
    the VO tool.
    Ok. So an audio interface can be plugged to FCP without crashing the app. Because of the Konnekt driver problem, I wasn't shure of this.
    I use my Aja box for export & external monitoring.
    All my audio sources run back into the Tascam and I
    use the analog mixer in the 1082 to monitor different
    sources.
    When I view external video, the audio follows it to
    keep sync.
    that's exactly what I want with other I/O interfaces. I'd like to monitor video with the canopus ADVC 110, and monitor audio with the Konnekt 24D (or another interface if this one is not compatible)
    I also imput dailies with a deck or a camera (DV or HDV) but that's not the point here.
    I want to imput audio with the Konnekt 24D because of its audio quality. Not audio sync to video dailies. But voice over, in sync with FCP video playback (for me, tha ADVC 110)

  • I bought a mic for my ipod touch 2nd gen and the mic works yet when its plugged in the speakers dont work, meaning i cant hear, so skype and other similar apps are un-useable, is there a way in which the mic and speakers will both work together?

    I bought a mic for my ipod touch 2nd gen and the mic works yet when its plugged in the speakers dont work, meaning i cant hear, so skype and other similar apps are un-useable, is there a way in which the mic and speakers will both work together?

    Looking at the details for this mic, it appears that the app has to have the option to use the internal specak when a mic is plugged into the headphone jack. Specifically:
    NOTE: When MityMic is plugged into your iPod/iPhone you won’t be able to use the onboard speaker for sound output. You must remove the MityMic then play back your recordings. (The Skype app has an option to enable the onboard speaker even when the mic is plugged in, so you could use MityMic for placing Skype calls. However most other apps do not have this function.)
    The above is from:
    http://touchmic.com/products-page/view-all-products/touchmic-mitymic---voice-rec ording-and-interview-mic/

  • Trying to open pdf and Adobe Reader Stops Working...Please Help

    Trying to open PDF and it keeps popping up that Adobe Reader Stopped Working.  And doesn't seem to find a solution to fix.  Has been going on for a couple days.  Can't access pdf files needed for my business.

    With Reader XI I assume you mean 11.0.0; try updating to 11.0.06.
    Also, can you open Reader by itself?  If so, try to disable Protected Mode [Edit | Preferences | Security (Enhanced)].

  • How to get dual 5ghz and 2.4ghz to work at same time

    i am unable to get both 5ghz and 2.4 ghz to work at the same time - i only get options to use either one or the other - i have the AE xtreme -[bought when 1st came out] and the radio mode does not give me the option to choose both.

    never mind i found the answer ... i didnt know they just came out with a new
    aEBS ....

  • Getting lightbox2 and a slider to work together

    I have a slider jQuery that I am trying to get to work with lightbox2 but either one (or vice versa) does not want to work together.
    My coding markup is,
    <link rel="stylesheet" type="text/css" href="../CSS/ilovestylesheets.css"/>
    <link rel="stylesheet" href="..CSS/lightbox.css" type="text/css" media="screen" />
    <script src="../jQuery/lightbox2.05/js/prototype.js" type="text/javascript"></script>
    <script src="../jQuery/lightbox2.05/js/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="../jQuery/lightbox2.05/js/lightbox.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="../jQuery/slider.js"></script>
    Any help on what to do?

    I have a slider jQuery that I am trying to get to work with lightbox2 but either one (or vice versa) does not want to work together.
    My coding markup is,
    <link rel="stylesheet" type="text/css" href="../CSS/ilovestylesheets.css"/>
    <link rel="stylesheet" href="..CSS/lightbox.css" type="text/css" media="screen" />
    <script src="../jQuery/lightbox2.05/js/prototype.js" type="text/javascript"></script>
    <script src="../jQuery/lightbox2.05/js/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="../jQuery/lightbox2.05/js/lightbox.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="../jQuery/slider.js"></script>
    Any help on what to do?

  • Is there any way to get around the issue of AE7 and Lion OS not working together?

    I use AE7 for graduate studies and business and just can't understand why it won't work together.

    Why?  Because Adobe has other priorities, in simplest terms.  As with most commercial software producers, Adobe is looking to maximize their profits while their software developers are constrained to operate and optimize within their available development budgets, and also while delivering the corporate plans and schedules set by Adobe management.
    What to do for this case?  Migrate off of the Adobe software, migrate off of Mac OS X, deploy a virtual machine or Boot Camp (with Snow Leopard) and Adobe After Effects, or wait for Adobe to sort this out.  For sufficiently large-scale customers of Adobe, they can chat directly with Adobe management around whether a bounty will expedite the work.  (These are the usual answers, of course.)

  • IMovie, Garageband, iPhoto and iTunes no longer working together.

    I have seen several variations of this issue but NO solutions. 
    I work with iMovie almost every day; up until a month ago, all four (iMovie, Garage Band, iPhoto and iTunes) worked together perfectly. 
    iMovie no longer asks to make thumbnails of the videos in iPhoto when opening iMovie. 
    When opening the iphoto media browser, I am told to open iPhoto.. 
    When opening the itunes media browser in iMovie, I get the same message "open itunes..."
    I have opened those apps and iMovie is not recognizing that they are open.
    Garageband no longer recognizes iTunes - again, I am getting the message to "open iTunes";
    Last night I discovered that iTunes no longer offers me the option of syncing selected iPhoto albums to my iPhone and iPad; the only option I have is to sych my entire iPhoto Library file.
    I have posted these issues in iMovie and iPhoto forums and always am given a workaround but no solution; or I am told to ask the quesiton in another forum. I am posting THIS in all of the forums, so please do not suggest that I need to go to another forum.
    I have searched all similar threads and found others who are having the same issue but seem to never be given a solution.
    I have found temporary work arounds (exporting photos from iPhoto as slideshows and then importing them into iMovie; creating a Loop in Garageband which I export to iTunes to my "playlist" which is THEN recognized by Garageband and can be used in iMovie.  
    Any help for this will be greatly appreciated.

    This solved my question by Old Toad  on Aug 1, 2013 1:43 PM
    Try the following:
    Delete the following two preference files from your Home/Library/Preferences folder:
    com.apple.iApps.plist
    com.apple.iApps.lockfile
    Launch iPhoto and then iMovie and check the Media Browser again.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.

  • IPhoto and Aperture... working together?  Tips please?

    Hi there, I'm a new Mac user. I moved over from the PC where I used Adobe Photoshop and ACDsee image viewer. I wanted to get the Aperture experience so I now have Aperture 2.
    The 1st part of my problem is, a lot of my photos are already "in" iPhoto '08. I imported them before I got Aperture 2.
    The 2nd part of my problem is that I don't really fully understand how iPhoto '08 works. I can't seem to wrap my brain around the notion that it's primarily a database. I have all my photos carried into my computer via iPhoto, but I immediately copy them over to my external hardrive, rename them, then import them BACK into iPhoto. Is that the scenic route, or what? But right now, it's the only way I can really get a grip on how the whole process will work to my benefit of understanding. After the pictures are back in iPhoto I then "understand" them to be existing in 2 separate places; one on my external hard drive, the other on my internal drive where iPhoto stores them (wherever the heck that is!).
    This brings me to my ultimate problem. I don't, at all, understand how Aperture and iPhoto would collaborate together to allow me to edit the pictures in Aperture, while still allowing iPhoto to present them to me in a "photo viewer" type of way.
    I don't know how to work with BOTH programs at the same time; Aperture AND iPhoto '08.
    I want to use Aperture to edit my pictures but I still want to use iPhoto to view my pictures. I think iPhoto is a neat little program, and would really like to keep using it. I'm just recently exploring iWeb and the two really work well together.
    Would anyone have any good tips for a beginner?
    Thank you so much
    YahYah

    Hi and welcome to the Mac!
    Alright. Before you do anything else, you need to stop, sit down and - as William said - watch the tutorial. In fact, you need to watch all the Aperture tutorials. Second, Aperture is database. Repeat after me: +Aperture IS a database. Aperture manages my pictures... I don't touch them, move them or copy them.+
    If you're worried about that well, don't be. Although it appears like a monolithic file in the Finder, there is no weird compression going on that makes pictures unreadable. You can always get to a photo through the Finder if need be. But I've never had to.
    With Aperture you've bought into the mother lode in terms of photo management. So please understand this: Aperture HAS to be the master here. Believe me, it'll make your life a lot easier further down the road. There are all sorts of ways to integrate Aperture in the iLife workflow. In fact a lot of iPhoto 08's (fun) functions have made it into big brother Aperture 2. My advice to you would be to use Aperture for ALL your importing, cataloging and editing and then use iPhoto on a per need basis. You can import select pictures from your AP library into iPhoto without duplicating the files by going into iPhoto's preferences/advanced and unchecking "Copy items in the iPhoto Library". This means you'll be able to drag photos from the Aperture library panel into iPhoto without duplicating anything. IPhoto will simply link to your AP library package. Things you need to be aware of:
    • read up on Aperture previews. Any picture that has a preview can be shared amongst any iLife app (iWeb included). To create an iWeb photo page for instance, you simply open iWeb, choose your template and drag the pictures you want from the media browser. Not much more difficult than iPhoto.
    • read up on import strategies. Your process as described is quite convoluted and will only lead to duplicate files all over the place. It could also generate serious problems eventually.
    Using Aperture to only do editing is like buying a Ferrari to drive in a school zone. You absolutely need to grasp the concept of the application, how it integrates with the rest of your computer life and what it can do for you. I know it may seem daunting at first and you might be tempted to revert to your old ways of doing things. But don't. You'll be a lot happier in the long run AND you'll also be making the most of your recent purchases. Trust the Mac young jedi....

  • IPhoto 2.0.1 and photoshop elements 3 work together?

    I import digital pics into iPhoto but usually edit them in photoshop cause it offers much more. When I edit and save an image w/i photoshop and save it back into an iPhoto album w/i the Photoshop program, or add it to a newly created folder in Photoshop, it doesn't appear in iPhoto even tho the new folder is in Finder along with the rest of iPhotos folders. Why is that, since both programs are just interfaces with the same picture files? Or if I delete a picture file in one program, it remains in the other. I don't get how these programs work together and it is causing problems. Thank you.

    Because both applications are not just interfaces with the same picture files. While iPhoto conveniently allows you to have PS open an image for editing, PS opens the JPEG (or TIFF, or PNG, or GIF) from iPhoto and immediately makes a ".psd" copy of it to work with. If you just save that back into the iPhoto Library folder somewhere, 1) the iPhoto database has no way to know that it's there, and 2) ".psd" isn't a format that iPhoto 2 can handle, even if it knew the image was there. And while PS lets you "Save As..." in any of iPhoto's accepted formats, it's still a "Save As...", which is an inappropriate way of placing images into the iPhoto Library folder.
    A better approach would be to go ahead and save the PS-altered image to a folder on the desktop (or to the Pictures folder), switch to iPhoto, and import the image from that folder.

  • Time machine and filevault don't work together

    Let me get this straight....my files can either be safe from being stolen if I lose my laptop OR they can be safe from being lost when my hard drive dies, but they can't be safe from both at once?
    Seriously, FileVault is a great feature and so is Time Machine. Maybe someone at Apple can help them learn to live together?

    This is a major screw-up on Apple’s part. Interesting that I just realized courtesy of MacIntouch that TM was NOT backing up my FileVaulted home folder. I use my MacBook Pro probably like most people. When I’m at home I’m behind a firewall. I leave the computer connected to my home network and I leave it open and on. I don’t log out ever! For security I do use the FileVault feature and I don’t use distant connections to my home network.
    There should be an option for TM to back up the open file vault directory just as if, frankly, someone would have access to it if they picked up my open computer and walked off with it. The owner has to have physical control of the computer. FileVault works if the computer is asleep and the wake log-on is enabled or if the computer is restarted. However, if my filevault is open and being used by me it should be available for a TM back-up.
    Interesting that Retrospect, with all its faults and promises of vaporware to come, WILL back up my MacBook FileVault.
    Apple should provide some type of option for this situation. On the fly decoding of the open FileVault directory so as to avoid a repeated total backup of the whole thing is the answer. It is the owner’s responsibility to keep the TM volume secure.

Maybe you are looking for

  • Problem with PNP customized selection screen

    Hi guys, I have done a report in R/3 system using logical database PNP with customized selection screen. i have 3 parameters as below: 1. radiobutton1 group a for current period, 2. radiobutton2 group a for other period. 3. personnel number. my progr

  • Viewing keynotes on a pc

    hi guys.. i just got a mac so im kind of new to it, but i tried to save a document i did on keynotes and tried to open it on a windows xp and it wouldnt open.. is that possible to do documents on iwork 08 and view it on a pc?

  • Best Practice for the Vendor Consignment Process

    Hiii ,,, Can anybody have the best practices for the Vendor consignment process??? Please Send me the document. Please explain me the Consignment process in SAP?? Thanx & Regards, Kumar Rayudu

  • Cannot download podcasts

    Cannot download podcasts from apple store to itunes

  • Can not set Resources to Budget in MS Project Pro 2013

    Hi May be a bug in MS Project 2013 (Professional is what I'm using)... I can not set a resource of Type Work to be a BUDGET resource unless I change the Type first (e.g., to Material or Cost), and then set the BUDGET flag, and then change the Type ba