More than one converter per component

hi!
I want to set to a component two converters, but, I don't know why, JSF only gets the second converter. Why?
I've put the converters with <f:converter> tag.
Thanks

This is just prohibited due to bad design.
Create a custom converter which calls or simulates those two converters.

Similar Messages

  • How do I configure the Airport utility to allow more than one rule per port?

    How do I configure the Airport Utility (AU) to allow more than one rule per port?
    I am on a home network, with broadband cable modem.  I have my airport extreme connected to the broadband modem.  I have 2 servers in my home that need to be accessed remotely from time (SSH), and they also serve data for an iphone app, so I'm using a variety of protocols.  The problem I'm running into is that AU seems to only allow one rule per protocol, so if I go to add another address for access on a specific port that is being used by one of my servers, AU tells me "The Port Mapping Entry Already Exists". 
    I need to be able to allow SSH on both of my servers, for instance.  Am I missing something?  Is this doable with AU?
    Thanks for any insight.
    Khalid

    The Port Mapping "rules" on the AirPorts will allow you to: 1. Map a single port to a single IP address OR 2) Map multiple ports to a single IP address.
    What you won't be able to do is map a single or multiple ports to multiple IP addresses.

  • Can I have more than one iphone per email account?

    When my son got his iphone 4s I used my email address since he didnt have one yet.  I have since gotten an Iphone 4s also, but when I went to activate it I had to put it under another email account, since mine was used for my sons iphone, so I used my husbands.  My husband now has an iphone on order and I was wondering if there was a way of having more than one phone per email account?

    I would set up a new email for him.  That will give you a new icloud account.  Also any apps that he downloaded with your ID will forever be linked to that ID and can only be updated with that ID.  If that is a problem then you might delete those apps and download them again with the new ID ( and if they were paid apps you need to pay again)

  • Is it possible to datamerge more than one image per page?

    I am building a product catalogue using datamerge.  Is it possible to data merge more than one image per page? (ie I have a logo, product image and dimensioned drawing to go with each product page)
    What would the coding be for the Data Field Name?
    Would it be
    @Logo
    @Product Image
    @Dimension Drawing
    Add image fields in the data source file
    By adding image fields to the data source file, you can allow a different image to appear on each merged record. For example, when you merge documents that include information from various companies, you may want to include an image of each company’s logo as part of the merge.
    Open the data source file.
    At the beginning of the data field name, type an “at” symbol (@) to insert text or paths that refer to image files.The @ symbol is required only in the first line; subsequent lines should include the image paths. Paths, which are case-sensitive, must follow the naming conventions of the operating system in which they’re stored.
    If you get an error message when you type the @ symbol at the beginning of the field, type an apostrophe (') before the @ symbol (such as '@Photos) to validate the function. Some applications, such as Microsoft Excel, reserve the @ symbol for functions. 
    (Windows) Example of image references in data source file
    Bill Tucker
    36
    C:\Photos\BillTucker.jpg
    Dat Nguyen
    53
    C:\MyDocuments\dat.gif
    Maria Ruiz
    26
    C:\Photos\Ruiz.psd
    (Mac OS) Example of image references in data source file
    Bill Tucker
    36
    Mac HD:Photos:BillTucker.jpg
    Dat Nguyen
    53
    Desktop:Family:dat.gif
    Maria Ruiz
    26
    Mac HD:Photos:Ruiz.psd
    You can use InDesign to view the path of an image on your operating system. Insert an image in an InDesign document, and then use the Links panel to view the image’s location. With the image selected, choose Copy Info > Copy Full Path from the Links panel menu. You may need to edit the path after you paste it in your data source. This technique is especially useful for images on a server. 

    anna-rees wrote:
    I am building a product catalogue using datamerge.  Is it possible to data merge more than one image per page? (ie I have a logo, product image and dimensioned drawing to go with each product page)
    What would the coding be for the Data Field Name?
    Would it be
    @Logo
    @Product Image
    @Dimension Drawing
    Yes, pretty much exactly as you describe. You would then just add those fields to the boxes in your page. I tend to add an apostrophe before the @ symbol in Excel so it doesn't think it's a function - as per text you quoted above.
    If you get an error message when you type the @ symbol at the beginning of the field, type an apostrophe (') before the @ symbol (such as '@Photos) to validate the function. Some applications, such as Microsoft Excel, reserve the @ symbol for functions.

  • Hacking application id equals() to allow more than one row per "primary key"

    I have a read only entity whose primary key is not the real primary key
    on the underlying table. The result is that I get more than one row per
    "primary key". This is what I want. However KODO will not allow me do
    it, because I am storing the collection in a HashSet() and the equals()
    method on the application id object ensures that this set contains no
    duplicates (as defined by the application id). At least thats how it
    seems to behave.
    So, I have hacked the equals() method to do this:
    public boolean equals (Object ob)
    if (this == ob)
    return true;
    // Doing this because we expect more than one row from
    // REF_CODES for the same domain/shortCode combination.
    // This is ok to do (I guess?) as long as we are only
    // doing selects using this class.
    return false;
    Will this hack have any side effects? Is there another option? Like
    using a list collection? Is so, which collections are supported?
    Thanks,
    Mike.

    The "primary key" I am using it already a compound key of two columns.
    The real key on the underlying table is a three column key. But the
    problem is that the table represents two different application level
    entities. I could deal with it when I was hand-writing SQL (I could do
    a distinct for example) but now I am relying on foreign key
    relationships since I moved to JDO. Not sure what to do. Best solution
    is to rework the table, but there is a lot of legacy code (that other
    teams use and maintain) relying on this table. I guess I'll use the
    weekend for inspiration ;-)
    Steve Kim wrote:
    This sounds like a dangerous operation. Even if this works now, I
    cannot promise future compatibility... and in fact may result in bad
    data (for example in caching both at the PM and PMF level) Is there no
    other field that you can reference as part of the primary key? Primary
    Keys can be multi columned (e.g. last_name, soc_sec_number)
    Mike Hogan wrote:
    I have a read only entity whose primary key is not the real primary
    key on the underlying table. The result is that I get more than one
    row per "primary key". This is what I want. However KODO will not
    allow me do it, because I am storing the collection in a HashSet() and
    the equals() method on the application id object ensures that this set
    contains no duplicates (as defined by the application id). At least
    thats how it seems to behave.
    So, I have hacked the equals() method to do this:
    public boolean equals (Object ob)
    if (this == ob)
    return true;
    // Doing this because we expect more than one row from
    // REF_CODES for the same domain/shortCode combination.
    // This is ok to do (I guess?) as long as we are only
    // doing selects using this class.
    return false;
    Will this hack have any side effects? Is there another option? Like
    using a list collection? Is so, which collections are supported?
    Thanks,
    Mike.

  • Importing From Excel file will not import assignments correctly where there are more than one assignment per task

    I am trying to import an excel file ... see below.   It appears if you select both Tasks and Assignments tables it will not allow you to do this, says file is not in a project recognized format.  So I import Tasks tab first then run the
    wizard again and import the assignments tab while selecting merge with project option.   This works with one exception:
    If there are more than one assignment per task.  It does not merge in the 2nd assignment, only the first.
    Is there a way to import a task with 2 or more assignments?
    Background
    To figure out what the format for the file needed to be, I started with a MPP file and from project saved as Excel and selected the "Project Template" file.  Now I am trying to import that XLS to see how it works
    ID
    Active
    Task Mode
    Name
    Duration
    Start
    Finish
    Predecessors
    Outline Level
    1
    Yes
    Auto Scheduled
    DS001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    1
    2
    Yes
    Auto Scheduled
    MT001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    2
    3
    Yes
    Auto Scheduled
    CT001
    1 day
    June 17, 2014 8:00 AM
    June 17, 2014 5:00 PM
    3
    4
    Yes
    Auto Scheduled
    CT002
    2 days
    June 18, 2014 8:00 AM
    June 19, 2014 5:00 PM
    3
    3
    5
    Yes
    Auto Scheduled
    DS002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    1
    6
    Yes
    Auto Scheduled
    MT002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    2
    7
    Yes
    Auto Scheduled
    CT003
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    4
    3
    Task   Name
    Resource Name
    % Work Complete
    Work
    Units
    CT001
    Engineer1
    0
    8h
    100%
    CT002
    Engineer2
    0
    16h
    100%
    CT003
    Engineer1
    0
    8h
    100%
    CT003
    Engineer2
    0
    8h
    100%
    Andrew Payze

    Andrew,
    I did a quick test using your example although I didn't include the Predecessor or Outline Level fields to keep things a little simpler. I imported the Excel data into a new Project file with a single import of task and assignment data. It is very important
    to set up the Excel Workbook correctly. On Sheet 1 I entered the task data (Name, Duration, Start). I did not include the ID or finish date as that is redundant - Project generates its own ID and will calculate the finish date based on the start date and duration.
    On Sheet 2 I entered the assignment data basically just as you show it except I didn't include the Units.
    The data imported as expected.
    John

  • What if i need more than one prepareStatements per connection

    hi all!!
    Please take some time to look into this scenario.
    On the front end: User enters/ updates his/her records and submits. An ArrayList of object goes to backend.
    On back end: i have to loop for the size of the ArrayList submitted and see if some record is to be updated or inserted.
    Now at back end i do following steps:
    I have only one Connection object named connection.
    Step 1:
    query (say query1 )to see if the record in DB exists for the primary key as extracted from the element from ArrayList. So one prepareStatment ( say prepareStatement1) for this. I write a query and execute :
    prepareStatment1= connection.prepareStatement(query1);
    Step2 :
    A query ( say query2) to update Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment2 = connection.prepareStatement(query2);
    Sep3
    A query (say query3 )to insert Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment3 = connection.prepareStatement(query3);
    Step4:
    for: size of arraylist:
    1. take out the element at ith index from the list.
    2. see if the record exists i.e execute step1 and see if resultSet.next() is true.
    3. if record exists step2 applies so execute update query
    4. if record doesnot exist then go to step3 and execute insert query
    A weird thing happened .. insert was running fine but update was not. May be i was not checking appropriately. BUT the error that occurrd was that
    [Microsoft][ODBC SQL Server Driver]Connection is busy with
    results for another hstmt.
    So i changed my path and in loop i prepareStatement and execute query to see if record exists or not and store the result in some boolean variable and then close this prepareStatement. and if the result existed again prepare a statement for update or else prepare a statement for insert and execute the respective.
    and then again close this prepareStatement and go for next iteration of loop
    so each iteration i am preparing statement and then closing it BECAUSE Connection doesnot allow more than one statement per connection at one time. Am i right.??
    what should i do.? Although i have solved problem by closing and preparing in loop but that is so inefficient. Is there some elegant way???
    please reply.
    PS: I am using ms sql server 8.0 as my DBMS. I am developing web application using Sun Creator.

    No, you can use as many PreparedStatements as you like, all from one Connection, and you can keep them open as long as you like. (I do this with no problems.) Where you will run into problems is when you are trying to use two ResultSets at the same time. That's what the error message means, it just doesn't use JDBC terminology.

  • More than one af:messages component on a page?

    Hi,
    I'm struggling with error messages. Our users complain about the numerous popups with errors they get and about how "persistent" those popup are. I cannot blame them for complaining, the popups can be really annoying.
    Consider an editable table, with a couple of required fields. You create a new record, required fields are empty and then you think: "Oh, I should change that value in that other record", so you click on another row in the table to edit the other record before continuing to fill the newly created one. You'll get a popup that keeps re-appearing constantly, until you've filled all required fields in the new record. Users get very frustrated about this.
    So, I'm looking for another solution, and this is my idea: we have a small piece of "screen real estate" at the bottom of the screen, near the commit and rollback buttons. I can put an <tt><af:messages></tt> component there, with the <tt>inline</tt> attribute set to <tt>true</tt>. Because of the limited space, only the first line of the errors will be shown. To enable the user to see the complete list of errors, I can add a <tt><af:popup></tt> with an <tt><af:noteWindow></tt> inside. I can then add an <tt><af:popupBehaviour></tt> to the <tt><af:messages></tt> component, to show the popup whenever the user mouses over the first line of errors. I can get this working without problems. But when I add a second <tt><af:messages></tt> inside the <tt><af:noteWindow></tt>, it won't show any message. Can I have more than one <tt><af:noteWindow></tt> on a page? If not, is there another way to repeat the error messages inside the popup?
    Best regards,
    Bart Kummel

    Hi Bart,
    How about hiding messages(by setting visible property to false using javascript) on table mouse over and making it visible on clicking on the submit button by using clientListener tag to call the javascript methods.
    I am not sure about note windows but you can think of the above solution if it makes sense.
    Sireesha

  • How can I print more than one slide per page from the iPad????

    Im having problems printing from the iPad. I want to print more than one slide in one peace of paper. 3, 6, 9 ...
    Can any one help?

    Start the print process and click on the Custom layout.  At the bottom you can set the size of the image desired and see how many photos can be placed on the page size selected.
    OT

  • Emailing more than one photo per email message

    Newbie alert: I want to resize and send a handful of photos via email, can't figure out how.
    Thanks, Julie

    Select up to four files at once, then click on the email buton.
    So select more than one file: Click on one then hold the command key and click on the others.
    Regards
    TD

  • Adding more than one photo per frame

    Is there a way in iMovie HD 5.0.2 to show more than one photo at a time that is imported from iPhoto?

    I LOVE to support Christian's little company, but.........
    … use any pic processor (PhotoshopElements), make your "compositing" and add THAT into iMovie....
    made a long time ago some nice effect, people asked me "how?!" by making a gigantic pic, containing 8 stills, and using the KB effect to "jump" from one pic (part) to the other…
    in PSE you can create a "pile" of pics, then zoom in to the wanted pic (which starts to live, but that is another story..... )

  • Can you have more than one movie per page?

    Hi, I am creating a web site and have some movie content on some of the pages. Can you have more than one quicktime file on each page? Reason I ask is that on one page I have put 3 movie files but only one shows up when I run the site online. I am not using .mac. The website is on grapeape dot co dot uk and if you look at the examples page you should see what I mean. I get one video that works and 2 large "Q"'s where the other videos were. Odd because it works locally. Any ideas? Many thanks.
    Ben

    Just noticed something. If you leave it until the first movie caches or preloads - the second one appears. Is there a way round this at all? Thanks. Ben

  • How do I add more than one video per track/layer?

    Hi.
    Could someone please advise me how I can add more than one video to a track/layer?
    I'm cutting and pasting parts and each time I paste, a new track/layer is added.
    The final video is going to be approximately 5 minutes long.
    I am 17 seconds in and have 54 tracks already!
    How do I stop this?
    Thank you very much
    J

    More video tracks. This is actually what you want.
    Unless you're just making a still image (like Photoshop), multiple layers give you control to animate each individually. (If it's just a Photoshop comp you're after, you may want to create it in Photoshop)
    If you want to move ALL OF THE VIDEO TRACKS TOGETHER, you can use
    parenting or
    precompose those individual layers into a single composition.
    livedocs

  • More than one ipod per computer?

    I was just wondering if it is gonna be a problem to have more than one ipod on a single computer. I just didn't want to wipe out all the songs I have on my current one, because my sister just got one. Thanks for the help!

    Welcome to Apple Discussions!
    If your software is all up to date...
    iTunes
    iPod Updater
    Then she can just connect the iPod up.
    This may also help...
    Using Multiple iPods With One Computer
    btabz

  • More than one HD per AirPort Extreme (802.11n) / different access

    If more than one HD is attached via a USB hub, is it possible to setup different access permissions for the HDs?
    I would like to use one for the Time Machine, another to be used as a local video server but not accessible from the Internet and the third fully (read/write) accessible from the Internet.

    Hi! I've formatted the 160GB USB drive to HFS+ and tried again. I saw that speed access to USB drive was a little bit faster than before.
    I simultaneously saved data from 3 PC's. After 5 hours (37 GB transferred) the base station "crashed" without rebooting. The base answered to my pings and the LED was green, the "switch function" worked properly. I tried to reconnect the disk without success. So I tried to access the base via AirPort utility without success: error code 6722 was shown. I physically rebooted the base: same problem occurred (green led, ping ok, no disk access, error 6722). I tried again and waited 5 minutes before accessing the base and the disk: everything worked again
    Did any of you already try to put lot of GB simultaneously from more than 1 MAC/PC to an USB drive? Did your airport crash as described? Thank in advance!

Maybe you are looking for

  • How to Archive/move  a file in Tcode AL11

    Hi Experts, How to arvhieve a file or move the file from one path to other path in AL11. For one of the inbound file, i need to archive it after preocessing the data. Appreciate your response, Preetham

  • Transport Release runtime error in BPC Netweaver 10.1

    Hi, We are getting the following error while releasing the transport in SAP BPC NW 10.1 Development system Category               ABAP Programming Error Runtime Errors         UNCAUGHT_EXCEPTION Except.                CX_RSBPCR_INTERNAL_EXCEPTION ABA

  • Iphoto emailing and "events" issue

    I am not sure if these issues are related.  2 weeks ago I began having and issue where 3 of my events had no key image.  It also said there were 0 photos in the event.  If you clicked on the event, you could still see there were photos in there.  I d

  • Load balance issues with RV042

    Hi, I have some issue to configure my RV042. I have 8 voip phones and 10 pcs on my network. I used DHCP to attribute IP between 192.168.1.10 and 192.168.1.20 to the phones and over .100 to the PC. I want my phone to have their own connexion. My switc

  • Cannot save or export a system report

    How do I save or export a "system report" to something such as .pdf, or .xls file? I am running a profit and loss from within SAP and I can view the report and then print preview in the "system report" I created, however I cannot save it so that I ca