Suggestion for the JSF framework team.

We Neeeeeeeeeeeeed tiles/template system in JSF :(
btw i Hate .net and C# and etc ( and microsoft ) but today i was on the lounch of the new microsoft products CLR 2.0 C# 2.0 bla bla Visual Studio 2005 , Sql 2005 .. etc..
i see that in ASP.net now there is tiles system it`s called "MASTERs" or somethink like it .. its nice easy to use not like struts tiles in JSF ( i was going crazy until i make them work ).
So please people SUN rox , Java ROX , JSF RooooooX but we(or I) need template system

Thanks Jacob,
Unfortunately I still can't find how to get rid of
all these <ui:insert name="title"> and
<ui:define name="body">
<h:form id="helloForm">
Could somebody point me on??
Denis Krukovsky
http://write-software.blogspot.com/
Facelets allows the use of jsfc, so in the above example:
<span jsfc="ui:insert" name="title">Example Title</span>
<span jsfc="ui:insert" name="body">Example Body</span>
<form jsfc="h:form" id="helloForm">...You can even experiment with custom decorators which will automatically convert HTML->JSF tags at compilation time.

Similar Messages

  • I would like to make a suggestion for the next iso iphone 4-4s update.  Include a seperate treble and bass switch. What do u people out there think about this

    I would like to make a suggestion for the next iso itunes software update for the iphone 4-4s.  Include a serperate treble and bass switch for the ipod on the iphone.  What to you people out there think about this?

    vince20 wrote:
    Obviously you dont like listening to music on your ipod in iphone.  The EQ is crap
    Not true at all.
    I listen to music on my iphone all the time.
    It is your position that anyone who does not agree with you does not listen to music?
    Really?
    What a leap.

  • Is there any suggestion for the "SafeNamedCache was explicitly released"

    I deployed the coherence-java-3.6.0-java on red had with core 2.6.18 with 64 bit.
    Then the deployed the coherence-3.6.0-cpp on the same manchine and complied the example "hellogrid" and it works ok . No any error .
    My requirement is to integrate the Coherence into the Nginx0.7.62 for my web server . And i wrote a thread pool for the NameCache::handle and get a newly hendle after a 5 seconds just because of the error "was explicitly released" . But it is not useful for solving the problem .
    Anybody please give me a suggestion for the root cause of this problem .
    Thanks .
    And the configurate as follows which are all copied from the configurate file for the example "hellogrid"(coherence-cpp/examples/config/extend-server-config.xml and coherence-cpp/examples/config/extend-cache-config.xml):
    extend-server-config.xm:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>repl-*</cache-name>
    <scheme-name>example-replicated</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>example-local</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>example-distributed</scheme-name>
    <service-name>DistributedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <replicated-scheme>
    <scheme-name>example-replicated</scheme-name>
    <service-name>ReplicatedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </replicated-scheme>
    <local-scheme>
    <scheme-name>example-local</scheme-name>
    </local-scheme>
    <invocation-scheme>
    <scheme-name>example-invocation</scheme-name>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    <proxy-scheme>
    <scheme-name>example-proxy</scheme-name>
    <service-name>ProxyService</service-name>
    <thread-count system-property="tangosol.coherence.extend.threads">2</thread-count>
    <acceptor-config>
    <tcp-acceptor>
    <local-address>
    <address system-property="tangosol.coherence.extend.address">localhost</address>
    <port system-property="tangosol.coherence.extend.port">9099</port>
    </local-address>
    </tcp-acceptor>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </acceptor-config>
    <autostart>true</autostart>
    </proxy-scheme>
    </caching-schemes>
    </cache-config>
    extend-cache-config.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>local-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>near-*</cache-name>
    <scheme-name>near-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>extend-dist</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <local-scheme>
    <scheme-name>local-example</scheme-name>
    </local-scheme>
    <near-scheme>
    <scheme-name>near-example</scheme-name>
    <front-scheme>
    <local-scheme>
    <high-units>100</high-units>
    <expiry-delay>1m</expiry-delay>
    </local-scheme>
    </front-scheme>
    <back-scheme>
    <remote-cache-scheme>
    <scheme-ref>extend-dist</scheme-ref>
    </remote-cache-scheme>
    </back-scheme>
    <invalidation-strategy>auto</invalidation-strategy>
    </near-scheme>
    <remote-cache-scheme>
    <scheme-name>extend-dist</scheme-name>
    <service-name>ExtendTcpCacheService</service-name>
    <initiator-config>
    <tcp-initiator>
    <remote-addresses>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">localhost</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">127.0.0.1</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">172.16.1.23</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    </remote-addresses>
    <connect-timeout>10s</connect-timeout>
    </tcp-initiator>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </initiator-config>
    </remote-cache-scheme>
    </caching-schemes>
    </cache-config>
    Anyone who knows the root cause please tell me . Thanks .

    The original error shown in the console of the Coherence server as follows :
    2010-11-23 22:27:33.742/1566.313 Oracle Coherence GE 3.6.0.0 <D5> (thread=Proxy:ProxyService:TcpAcceptorWorker:0, member=1): An exce
    ption occurred while processing a PutRequest for Service=Proxy:ProxyService:TcpAcceptor: java.lang.IllegalStateException: SafeNamedC
    ache was explicitly released
    at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put$Router(NamedCacheProxy.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put(NamedCacheProxy.CDB:2)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$PutRequest.onRun(NamedCacheFactory.CDB:6)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:39)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    It is shown again and again for any operation before the Coherence server is restart.

  • Suggestion for the PlayBook Team

    There have been suggestions made and issues identified with the PlayBook on this and other forums. Many of these are understandable with the initial release of a totally new product, new OS, and very limited development time.
    My issue is more fundamental: What is the PlayBook supposed to be?
       1) Business Tool?
       2) Entertainment Device?
       3) Smartphone Extension/Enhancement?
    It appears that PlayBook is trying to be "all of the above, to all people, and master of none"
    The PlayBook was to be my business tool. Unfortunately it currently fails to meet my minimum business requirements. The functionality for the two other uses seems to be limited as well.
    It would be helpful if the PlayBook Team conveyed the primary purpose of the PlayBook; and, concentrated  development in that direction. This would provide a realistic expectations as to the future use of my PlayBook.

    What is wrong with all of the above?
    What's the focus of the iPad, Xoom and Tab?
    I do believe you'll see it fulfill all three as apps develop and time passes. Obviously right now it's not serving your needs.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Suggestions for the interactive guide

    I have been using FIOS TV service now for several months, and seen several iterations of the guide come through. I have a number of issues I would like to suggest for improvements.
    First a suggestion about DVR and show recording. I have 2 DVRs, as we record a lot of TV and need the 4 tuners. I love that I can access recordings from either DVR as I want. However, it would be really great if I could just have a single schedule of shows set to record and let the two DVR's figure out what should record where based on the availability of tuners in the DVR's which would not produce conflicts.
    I essentially need to put together my own matrix in order to figure out what set to record on which DVR based on when shows air. It would be great if the DVRs could talk to each other and intelligently figure out where to record.
    A big issue I have encountered is that sometimes only part of a show will record. The biggest issue has been because for whatever reason, CBS's "Person of Interest" has only recorded 30 minutes of the show, and only the latter 30 minutes. There was no indication on the scheduled recordings view that the show would only partially record, it just showed that it would record. For most shows at least, they will either re-air the show, or I can get caught up on one of several streaming services. This is the only show that is not available as a re-run or on ANY streaming service.
    If a show is going to only partially record, it should be clearly indicated, and it actually should just not record - it should show to me that there is an issue or conflict with another show recording into the 1st half of this show which would prevent a full recording. This is a huge bug in the recording logic that should be fixed.
    From the menu guides, I would really  like the option to set the default menu starting point. I do not way ANY pay preview, or pay for any on demand content. I have never done that with any TV provider I have had, and I don't plan to start now, the fact that the menu always defaults to searching on demand is annoying. 
    The entire menu experience feels not as if its designed to allow me to easily or quickly navigate and make the changes or selections I want, but instead it constantly wants me to basically buy a movie or TV show. There are plenty of ways to design an interface which allows you to promote your pay services and also allow me to get into the areas of the menu I need in an intuitive manner.
    I do like that the DVR remembers some of my recent searches, a nice feature. It would be great for homes with multiple DVRs to allow the DVR's to act more as a "single unit" and share that information between the units so I don't have to go figuring out which DVR I previously searched for something. The search menu should also allow you to set some basic filters - when I go into search, 99% of the time I am going to search for something specific - the title of a movie or TV show. The search results should show me just that, I don't need to see actors or all the other options when I search by default - I should be able to go into advanced search to get broader or complex with what I am searching for. I should also be able to turn off searching in certain areas - like pay-per-view or on-demand options. 
    P.S. - the spell check component of the post message feature should really have "FIOS" and "DVR" in the dictionary.

    sbobcat wrote:
    I have been using FIOS TV service now for several months, and seen several iterations of the guide come through. I have a number of issues I would like to suggest for improvements.
    First a suggestion about DVR and show recording. I have 2 DVRs, as we record a lot of TV and need the 4 tuners. I love that I can access recordings from either DVR as I want. However, it would be really great if I could just have a single schedule of shows set to record and let the two DVR's figure out what should record where based on the availability of tuners in the DVR's which would not produce conflicts.
    I essentially need to put together my own matrix in order to figure out what set to record on which DVR based on when shows air. It would be great if the DVRs could talk to each other and intelligently figure out where to record.
    A big issue I have encountered is that sometimes only part of a show will record. The biggest issue has been because for whatever reason, CBS's "Person of Interest" has only recorded 30 minutes of the show, and only the latter 30 minutes. There was no indication on the scheduled recordings view that the show would only partially record, it just showed that it would record. For most shows at least, they will either re-air the show, or I can get caught up on one of several streaming services. This is the only show that is not available as a re-run or on ANY streaming service.
    If a show is going to only partially record, it should be clearly indicated, and it actually should just not record - it should show to me that there is an issue or conflict with another show recording into the 1st half of this show which would prevent a full recording. This is a huge bug in the recording logic that should be fixed.
    From the menu guides, I would really  like the option to set the default menu starting point. I do not way ANY pay preview, or pay for any on demand content. I have never done that with any TV provider I have had, and I don't plan to start now, the fact that the menu always defaults to searching on demand is annoying. 
    The entire menu experience feels not as if its designed to allow me to easily or quickly navigate and make the changes or selections I want, but instead it constantly wants me to basically buy a movie or TV show. There are plenty of ways to design an interface which allows you to promote your pay services and also allow me to get into the areas of the menu I need in an intuitive manner.
    I do like that the DVR remembers some of my recent searches, a nice feature. It would be great for homes with multiple DVRs to allow the DVR's to act more as a "single unit" and share that information between the units so I don't have to go figuring out which DVR I previously searched for something. The search menu should also allow you to set some basic filters - when I go into search, 99% of the time I am going to search for something specific - the title of a movie or TV show. The search results should show me just that, I don't need to see actors or all the other options when I search by default - I should be able to go into advanced search to get broader or complex with what I am searching for. I should also be able to turn off searching in certain areas - like pay-per-view or on-demand options. 
    P.S. - the spell check component of the post message feature should really have "FIOS" and "DVR" in the dictionary.
    Hello,
    Nice post!!
    A couple of things:
     Suggestions for FiOS TV programming (or for any Verizon service/product/offering on the internet, telephone or TV) can be made on the 'Idea Exchange' section of the forum where it'll be noticed more by other Verizon community members as well as Verizon employees who can bring up individual ideas to the appropriate teams.
    Also, forum members can vote on the posted idea for greater emphasis.
    Please see:
    http://forums.verizon.com/t5/Verizon-Idea-Exchange-FAQs/Idea-Exchange-FAQs/td-p/231267 for more details.
    The direct link to the Idea Exchange section is found here:
    http://forums.verizon.com/t5/Verizon-Idea-Exchange/ct-p/ideaexchange
    Some of your recommendations may very well have been posted by other folks! 

  • Can anyone please  suggest for the following query relating to OEDQ ?

    I have to process 10M  records through batch matching by Oracle EDQ.  There will be 10 file(.csv)  each size 1M. They will be placed landing area of EDQ one by one separately. Given, All 10 file should have same number of columns & same order of columns. I have to process them one by one sequentially through only single batch contact match job.
    Condition is : 
    Only one batch job will be executed 10 times to process them. At each iteration/operation, one file (.csv) will be taken as input in that job. As we know, only one source is present in  job. I have to create /run ShellScript which will be passing  one file to the single snapshot  via single datastore from the landing area of EDQ. Once the one input file  is passed and complete matching is done, Without changing anything, Is it possible to pass 2nd input file  to that snapshot via previously created datastore by that Shell-script.
    I mean, I want to pass one by one file  sequentially  via  single snapshot via single datastore to a batch job  using unix shellscript. 
    Is it feasible to consider in my project????
    Any suggestion will be highly appreciated. Thanks in advance.

    Hi Mike,
    Thanks for the quick response.
    Keeping in mind source will be changed sequentially/one after another but the target is constant & the same JOB will be executed each time.
    suppose, I have two file in the landing area of EDQ. These file are:  PersonData.csv  and goutam.csv
    PersonData.csv is used in current data store.
    File in the working area:    C:\Program Files\Datanomic\dnDirector\config\landingarea\PersonData.csv
    Snapshot is using  this datastore. I have right clicked on the snapshot. I have done setting externalize option enable.
    I am using the command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    This command is successfully executing batch job "Testing for R3  source A "   where source is PersonData.csv.
    Now, I  want to use the following command with externalize option to execute  the file goutam.csv as source  by the above job.
    I am using the below command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -D externalized=goutam -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    this command also executes the file PersonData.csv instead of goutam.csv file.  In the above command I have highlighted  externalize option with deep black color . please let me know how I write this externalize option in the command so that it should execute goutam.csv file.
    Meanwhile, I am googling to find solution.
    Regards,
    Goutam Samanta

  • A chance for YOU to play for the T-SQL team, in the TechNet Guru World Cup!

    The World Cup is here again!
    Not balls... brains!
    And YOU have been selected to play on our team!
    Yes forum reader, step up and take a shot!
    Slam some techie tips in the back of our nets!
    No dribbling please, just lots of problem tackling.
    So come on Gurus and use your head!
    Show us your skills, wow us with your technique, and win the hearts of your nation!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white paper, or just something
    you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    Here is my new article :-)
    Transact-SQL: Join Order
    http://social.technet.microsoft.com/wiki/contents/articles/25668.transact-sql-join-order.aspx
    I am going to add it to THIS WIKI COMPETITION PAGE now :-)
    * Thanks to Ed
    Price for the proofreading!
    >> I add an C# article as well, but this less relevant to this forum :-)
    C Sharp: Multi-Types Application, by Ronen
    Ariely (nickname PITUACH)
    [Personal Site] [Blog] [Facebook]

  • Finding jsp file for the OA framework

    hi all,
    i working in the OA framework, and i need to do some changes in the application and i need to get the jsp files for the shopping carts, i connected to the server through ftp.
    from the about link in the shopping cart it says that the OA_HTML found in the path /u01/applcrp2/crp2comn/html/ but i coudn't find the jsp files for the shopping cart, i also need to locate the java classes for this files
    any help please, is there any documentation on this issue - the location of the files in the OA framework in the server.
    urgent please any tipes
    Mahdi

    Oracle guys - maybe it's time for a "sticky" post at the top of the forum entitled This is not the right forum for asking OA Framework questions.
    The OA Framework Forum is [url http://forums.oracle.com/forums/forum.jspa?forumID=210]here
    I am going to become the top poster on this forum just responding to these ;)
    John

  • Where can I leave suggestion for the manufacturers???

    Anybody knows where can suggestions can be posted for the future improvements for the software to our Ipods??
    Some things that I'd love to see in the next Ipods or software are:
    - Scrolling of the whole album name, Artist name on the screen of the Ipod
    - During the mode sleep would be nice to set the volume low level for sleep and for "alarm" mode it would be perfect wake up with a louder volume.
    - For the clock settings moving the digits each one 9,8,7,6,5,4,3,2,1,0 independently instead to go around the clock for 12 hours everytime when a new alarm is set.
    - Timer for sleep if could be "open" to everybody own time it would be great other than 15 mins 30 mins 60 mins etc there 1,2,3,4,5,6,7,8,9 etc much better in this case for sleep.
    I wish that the people that is involved with the development and manufacturing of our favorite player could do something about it otherwise who else???
    Share this message all around if there something can be done it is here and is with apple.
    Any ideas around???
    Thank you all for the interest and enthusiasm!!!
    5 gen   Windows XP Pro  
    5gen   Windows XP Pro  
    5 gen   Windows XP Pro  

    Hey!
    Try hereApple Feed Back
    Cheers,
    John
    iMac G5 1.8GHz 20"   Mac OS X (10.4.7)   ipod 30GB Video Black v.1.2 Agent 18 Case iTunes 7.0.1 Bose Sounddock

  • HT3275 Any other suggestions for the message the backup volume is read only

    I keep getting the message Time machine is unable to complete the backup because it appears the backup volume is read only.  I've tried the suggested repairs from apple for this but keep getting the same problem.  Any suggestions?

    The Master of the Time Machine, Pondini has extensive documentation and he mentions your particular problem in the following link.
    http://pondini.org/TM/C6.html

  • Any printer suggestions for the ibook g4

    I am completely overwhelmed and in need of some suggestion of the most compatable printer for the ibook g4. Mine is a 2004 model

    Hi Hotrodgirlly,
    Welcome to Apple Discussions
    What are you going to use the computer for and what features do you want(example: mostly printing documents, normal amount of pictures, professional photography, as well as all-in-one, scanner, fax, fast printing, portability, quality of print outs, etc)? Price range?
    You may want to look at the following threads...
    http://discussions.apple.com/thread.jspa?messageID=1718307
    http://discussions.apple.com/thread.jspa?messageID=1198652
    http://discussions.apple.com/thread.jspa?messageID=1858479
    http://discussions.apple.com/thread.jspa?messageID=594421
    There are a ton of posts in Apple Discussions alone that can help you make a decision or narrow down your options. I suggest searching AD, Google, and any other search engine on the internet. Consumer Reports probably has a review section on new printers, but you can either buy it in the store or buy an online subscription (I believe).
    Jon
    Macbook 2.0 White (100Gb HD 2Gb RAM) Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Detailed description for the JSF

    I am new to the JSF i want to know why should we choose JSF

    Dear Cyril,
    In the properties for that info Object ,,type the person id and give some gap and write person name.and try to execute it..with Key and Test as display...
    Check this
    The best way is" to include person name as attribute to Person key....In this way u can arrive at the best possible solution as u can name the info object, the way u want at the query level...."
    the better would be to create it as navigational attribute...
    Or else  With ur existing data ,the way to get a solution is using the structure...
    1.In the Structure....go for new selection and in the name type  "person----
    person name" and drag in ur fields...and execute them
    hope this helps u...
    Assign points if needful...
    Best REgards,
    VVenkat.

  • Album suggestions for the music store

    Has anyone suggested albums for the music store and actually gotten it listed for sale? I've suggested a few and just wondering if this is a waste of time

    I will keep suggesting, I no longer like ordering cds. But if the music store does nothing with the suggestions then I'll have to do that.
    It would be nice if they could post whether or not they could get the album but I doubt if they will ever have the manpower to do that

  • Reuesting a suggestions for the best cryptography.

    We have a product under development and one of the module is to use encryption/decryption. Can anyone suggest me which one is the best?
    Thanks in advance!

    For this purpose, I'd think pretty much ANYthing would be suitable. How about this - get the timestamp for the time you want the eval to expire, and XOR the bits into the MD5 hash of your application's name. Reverse on the client side.
    Can your clients undo this? Yes. Of course, if you use "real" crypto and bury a key in your app, they're just going to spend the 15 minutes it will take to dig that key out and make their own timebombs. If you use something like RSA, with the public-key in the client and a license that was encrypted with the private key, they'll just modify your app to disable the license check entirely. They may do both, just because they can.
    What you want is something that will be dead easy to implement and maintain for you, and mildly painful for your clients to undo. You hit diminishing returns almost immediately after that point.
    Grant

  • Got a suggestion for the Community??

    Post it here -- Suggestions for this Community
    Please tell us what you like about the Community and what you dont like!! Feel free to be honest as we are definitely interested in your feed back!!
    Thanks, L

    it's possible to make itunes enhancement requests directly to the Apple folks nowadays. here's a link through to the relevant itunes feedback form:
    iTunes application feedback

Maybe you are looking for