Faclets and JSP comparison using JSF Web framework

I am doing project titled "comparison of JSP and Facelet used in JSF based web application".
I want to know what are the parameters on basis of which i can do comparison.
e.g Facelets fits with jsf life cycle. while jsp doesn't ...... how can i prove this in implementation point of view?
what other parameters are?
Is that practical that my app pressentation layer all views(user interfaces ) built in both jsf + Facelets and JSF+JSP ?
please help me so i start working on project. thanks

I have tried both:
logincontrol.jspf (1)
<f:subview id="sv">
    <h:form id="loginform">
        <h:panelGrid columns="2">
            <h:outputLabel value="User:"/><h:inputText id="username_email"/>
            <h:outputLabel value="Pass:"/><h:inputText id="password"/>
        </h:panelGrid>
    </h:form>
</f:subview>
logincontrol.jspf (2)
<f:view>
    <h:form id="loginform">
        <h:panelGrid columns="2">
            <h:outputLabel value="User:"/><h:inputText id="username_email"/>
            <h:outputLabel value="Pass:"/><h:inputText id="password"/>
        </h:panelGrid>
    </h:form>
</f:view>but nothing changes... i added this line, in the .jsp file:
<%@ include file="WEB-INF/jspf/logincontrol.jspf" %>   by the way, is it good to write a .jspf file for login process and include it to the pages?

Similar Messages

  • Problem with fixing pagerdeluxe and progressbar while using jsf-ibm.jar

    hi,
    I am having a jsf data table with <hx:pagerdeluxe> to navigate, and i am using (jsf-ibm-unknown-vers.jar) jar, this works fine. I need to insert a progress bar in my jsf and used <hx:progressBar> but this was not available in the old jar, So i upgraded my jar to jsf-ibm.jar when i ran this progress bar works fine but he pager deluxe shrinks and unable to navigate.. I am using jboss server .... Can any one help me out about regarding this. So that both works fine
    Thanks.
    Rakesh M

    This is not related to Sun JSF. You might have more luck if you ask component library specific questions at the website/forum/mailinglist of the component manfacturer.

  • How to dynamically include jsp files using jsf el in include tag ?

    Hi,
    I'm trying to get the jsp file name from my backing bean to use it in an include tag but I can't make it work
    When using this piece of code I can get the generated path
             <h:outputText value="/_partial/#{myBean.jspName}.jsp"/>whereas in this code the jsf el is not replaced by this value.
            <%@ include file="/_partial/#{myBean.jspName}.jsp" %> Have you any idea of how to solve this ? I'm currently developing for J2EE 1.4 platform.     
    Thanks for your help,
    Regards.

    If you're using JSF 1.2 and JSTL 1.2 at a JSP 2.1 environment, then you can just use <jsp:include> with unified EL.
    If you're using JSF 1.1, then you may find this article useful [http://balusc.blogspot.com/2007/01/dynamic-jsf-subviews.html]

  • CP 8 crashes and closes when using the web object.

    Adobe Captivate 8 is crashing when using the web object, give me a box which says I need to close the program. How can I fix this issue?
    Message was edited by: Deborah Schonfeld

    Hi There,
    Can you please confirm your operating system ? Do you have the full administrative rights ? Are you getting any error when trying to insert Web Object interaction ?
    Would like to inform you Captivate 6 onwards interactions have been uploaded on server. Captivate pings this server on a regular basis, If there is any firewall or strict network policy then it might take some time to check the URL or might be result in crash or freeze.
    Regards,
    Ajit

  • OSB and SAP integration using XML web services

    Hi Team,
    We are designing solution for asynchronous and synchronous scenarios integration between OSB and SAP using web services.
    Can you please provide some pointers which tells about how OSB and SAP integration works.
    For an example:
    If we are designing the above scenario between SAP PI and SAP ECC, we know the below communication protocols are avilable:
    1.Proxy
    2.RFC
    3.IDOCs
    And also we know how adapters will get connect.
    Now ODB wants to connect to SAP to send and receive data. Please help me with information like:
    1. Is Proxy, RFC or IDOCs are applicable for OSB as well?
    2. How webservice scenarios can be implemented?
    Thanks in Advance.
    regards,
    Vicky

    Hi,
    >>>and what are the Forms ? for SAP Business Connector Related Postings ??
    try WM (webmethods forums) or here since this is the only middleware related forum on SDN
    >>> I have a requirement to integrate sap to non-sap with Business Connector !!
    excellent
    >>>We need to Generate the SAP Data In xml Format ? and the Non-sap System can Understand Only XML Formated data.
    fairly easy
    >>>>Is there any way Business Connector Box can Pull the XML file from R/3 Application Server and store the file in the Business Connector Server. from that How do we Sent XML file to Non-sap. How do we Integrate ??
    business connector has both IDOC and RFC adapters so it can
    receive data from SAP (IDOC, RFC), send data to SAP (IDOC, RFC)
    and pull data from SAP (RFC only)
    >>>>what transaction code will trigger this event ? I mean is ther any SAP Transaction Code to Integrate Business Connector?
    either transaction from SAP (for sending IDOCs for example) or you can schedule (via BC scheduler)
    an RFC call to SAP that will fetch the data and put it in an XML file
    good luck,
    Regards,
    Michal Krawczyk

  • Passing parameters to included JSP files using JSF

    I have included JSP, which I use in many other JSP files. I want to display message in this included JSP which depends on the information in JSP files which include this JSP. How can I do this without using scriptlets?
    Message was edited by:
    cheltsov

    I have one included page in one jsp page(mother page). I have included it by jsp:include tag. The included page consists of two inputText. I need to pass the parameters of the mother page together with the parameters in the included page in the backingBean of the mother page. Hope this one is clearer.
    The code snippet in the mother page looks like this
    <jsp:include page="/pages/ps/sample_rep2.jsp"/>.
    In the sample_rep2.jsp, I have two inputText. How can I pass this in the backingBean of the motherpage.
    The sample_rep2.jsp is the included page here. The sample_rep2.jsp looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <af:panelBox>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <af:panelBox>
    <af:inputText label="User ID" id="userid" value="CDOUGLAS"/>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <af:panelBox>
    <af:inputText label="User ID" id="userid" />
    <af:inputText label="Age" id="age"/>
    </af:panelBox>

  • Mail (and all apps using apple.AddressBook.framework) crashing on open

    I was able to fix Safari by not selecting any Address Book lookup items in Safari-Preferences. Address Book, Mail, Omniweb all crash on open. They all point to the same problem - srr0 is telling me that the apple.AddressBook.framework is the culprit (address matches) but lr is not showing the same address, thus is referencing an invalid pointer as per Apple's support doc on CrashReporter (and how to analyze it with GDB but I don't have Xcode loaded). But the fix eludes me....
    0 ...apple.AddressBook.framework 0x94f23fc4 c4FormatS::~c4FormatS [in-charge deleting]() + 28
    1 ...apple.AddressBook.framework 0x94df80c8 c4HandlerSeq::~c4HandlerSeq [unified]() + 176
    2 ...apple.AddressBook.framework 0x94dfd81c c4CustomSeq::c4_CustomSeq[unified](c4CustomViewer*) + 172
    3 ...apple.AddressBook.framework 0x94dfd750 c4View::c4_View[unified](c4CustomViewer*) + 52
    4 ...apple.AddressBook.framework 0x94dfd47c c4View::Hash(c4View const&, int) const + 48
    5 ...apple.AddressBook.framework 0x94dfd314 cacheViews + 280
    6 ...apple.AddressBook.framework 0x94df7674 -[ABAddressBook nts_OpenContactManagerWithMode:cacheSchema:] + 452
    7 ...apple.AddressBook.framework 0x94df61d0 -[ABAddressBook nts_InitDefaultContactManager] + 1052
    8 ...apple.AddressBook.framework 0x94df5d0c +[ABAddressBook nts_SharedAddressBook] + 76
    9 ...apple.AddressBook.framework 0x94df5c40 +[ABAddressBook nts_CreateSharedAddressBook] + 76
    10 ...apple.AddressBook.framework 0x94df5b64 +[ABAddressBook sharedAddressBook] + 80
    11 com.apple.MessageFramework 0x9a2c4ef4 -[MailAddressManager loadAddressBookSynchronously] + 44
    12 libobjc.A.dylib 0x90a461f4 objc_msgSendv + 180
    13 com.apple.Foundation 0x92bdec94 -[NSInvocation invoke] + 944
    14 com.apple.MessageFramework 0x9a2b0800 -[MonitoredInvocation invoke] + 144
    15 com.apple.MessageFramework 0x9a2b9e80 -[InvocationQueue _drainQueue] + 416
    16 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    17 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x0000000094f23fc4 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x48042224 xer: 0x0000000020000006 lr: 0x0000000094f23fb0 ctr: 0x0000000094f23fa8
    r0: 0x0000000094df80c8 r1: 0x00000000f007fec0 r2: 0x00000000a4e03fb0 r3: 0x0000000004a15700
    r4: 0x0000000000000001 r5: 0x0000000000000000 r6: 0x00000000ffffffff r7: 0x0000000000000000
    r8: 0x0000000000000003 r9: 0x0000000008000100 r10: 0x0000000094df6c10 r11: 0x0000000048042222
    r12: 0x0000000094f23fa8 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x00000000004c6f9c r22: 0x0000000000000001 r23: 0x000000000000000b
    r24: 0x00000000f0080080 r25: 0x0000000004a11d80 r26: 0x0000000000000003 r27: 0x00000000004a8728
    r28: 0x0000000000000000 r29: 0x00000000004a8710 r30: 0x0000000000000000 r31: 0x0000000094f23fb0

    I had already done the disk permissions fix and the disk repair (booting from CD) and went through step-by-step but still Mail crashes on open - lastest crashreport log shows the same results - same addresses failing and same invalid pointers referenced (srr0 and lr addresses):
    Thread 2 Crashed:
    0 ...apple.AddressBook.framework 0x94f23fc4 c4FormatS::~c4FormatS [in-charge deleting]() + 28
    1 ...apple.AddressBook.framework 0x94df80c8 c4HandlerSeq::~c4HandlerSeq [unified]() + 176
    2 ...apple.AddressBook.framework 0x94dfd81c c4CustomSeq::c4_CustomSeq[unified](c4CustomViewer*) + 172
    3 ...apple.AddressBook.framework 0x94dfd750 c4View::c4_View[unified](c4CustomViewer*) + 52
    4 ...apple.AddressBook.framework 0x94dfd47c c4View::Hash(c4View const&, int) const + 48
    5 ...apple.AddressBook.framework 0x94dfd314 cacheViews + 280
    6 ...apple.AddressBook.framework 0x94df7674 -[ABAddressBook nts_OpenContactManagerWithMode:cacheSchema:] + 452
    7 ...apple.AddressBook.framework 0x94df61d0 -[ABAddressBook nts_InitDefaultContactManager] + 1052
    8 ...apple.AddressBook.framework 0x94df5d0c +[ABAddressBook nts_SharedAddressBook] + 76
    9 ...apple.AddressBook.framework 0x94df5c40 +[ABAddressBook nts_CreateSharedAddressBook] + 76
    10 ...apple.AddressBook.framework 0x94df5b64 +[ABAddressBook sharedAddressBook] + 80
    11 com.apple.MessageFramework 0x9a2c4ef4 -[MailAddressManager loadAddressBookSynchronously] + 44
    12 libobjc.A.dylib 0x90a461f4 objc_msgSendv + 180
    13 com.apple.Foundation 0x92bdec94 -[NSInvocation invoke] + 944
    14 com.apple.MessageFramework 0x9a2b0800 -[MonitoredInvocation invoke] + 144
    15 com.apple.MessageFramework 0x9a2b9e80 -[InvocationQueue _drainQueue] + 416
    16 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    17 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x0000000094f23fc4 srr1: 0x000000000200d030 vrsave: 0x0000000000000000
    cr: 0x48042224 xer: 0x0000000020000006 lr: 0x0000000094f23fb0 ctr: 0x0000000094f23fa8
    r0: 0x0000000094df80c8 r1: 0x00000000f007fec0 r2: 0x00000000a4e03fb0 r3: 0x0000000004a152c0
    r4: 0x0000000000000001 r5: 0x0000000000000000 r6: 0x00000000ffffffff r7: 0x0000000000000000
    r8: 0x0000000000000005 r9: 0x0000000008000100 r10: 0x0000000094df6c10 r11: 0x0000000048042222
    r12: 0x0000000094f23fa8 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x00000000004d1cdc r22: 0x0000000000000001 r23: 0x000000000000000b
    r24: 0x00000000f0080080 r25: 0x0000000004a110e0 r26: 0x0000000000000003 r27: 0x0000000004a1bf58
    r28: 0x0000000000000000 r29: 0x0000000004a1bf40 r30: 0x0000000000000000 r31: 0x0000000094f23fb0

  • Is JSF evolving to a web framework?

    hi;
    initially i thought JSF would be a full web framework (like struts, WAF etc..).
    is there any intention of doing this?
    what is the reason of not doing this and having a standard J2EE web framework?
    thanks

    I just read the JSR for JSF and noticed that teh
    Apache Software Foundation was objected to the passing
    the JSR. That objection is out of date and has probably been repealed.
    Am I correct in assuming that unless the JSR
    gets a majority, it will not pass. Even if it does,
    without support from a big player like IBM, JSF will
    be more like a lame duck.IBM is fully behind JSF.. they're already building a JSF editor for WebSphere Studio.
    This JSR conflicts with the Apache open source project
    Struts. Considering Sun's current position that JSRs
    may not be independently implemented under an open
    source license, we see little value in recreating a
    technology in a closed environment that is already
    available in an open environment.that has changed under the new JSR rules.
    To the extent that this JSR extends beyond Struts
    today, we would encourage the Sun developers proposing
    this JSR to join the Sun developers already leading
    Struts to create an open solution at Apache, something
    which when finished would be assured of being able to
    be implemented as open source.The JSF JSR lead, Craig McClanahan is the creator of Struts. He's also contributing code to Struts-Faces ( http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/ ) that integrates JSF and Struts.
    The only concern I have with that is that Open Source
    is not the greatest model for commerical companies.
    There is no money in it. Will it help keep things
    standardized...or lead ot more fragmentation. The way
    it is right now, u see 5 diff open source frameworks-
    all to do the same thing. JSF has a lot of commercial potential, since it standardizes the third party component playing field.. Write your components to the JSF spec and conceivably (*here's hoping*) developers will just drag & drop your components into their webapps.
    Ivar

  • Apache web server / run Servlets and JSP

    Hello. I need to know how to run servlets and JSP's with Apache web server

    install Tomcat and use it alongise of apache. Apache cannot serve either servlets or jsp's on its own

  • URGENT.........File Upload using Servlets and jsp

    I am a new servlet programmer.......
    iam using tomcat server......
    can any one pls help in writing code for file upload using servlets and jsp without using multipart class or any other class like that....
    Please URGENT..

    Slow down! "Urgent" is from your perspective alone. I, myself, am not troubled or worried in the least.
    hi ugniss
    thanks for ur reply....sorry i was not
    y i was not asked not to use multipart class or any
    other class like that...is there any other
    possibility to do file uploading from jsp to
    servlet...
    Just as an aside, a JSP is a Servlet. But even if I move beyond that, the question does not make sense. If you want a "JSP to upload to a Servlet", then simply do so in memory. You are still (likely) within the same scope of a given request. However, if instead you are referring to a JSP that is displayed on a browser, then really you are talking about HTML, which is what the browser will receive. And since you are now talking about a browser, your only real, viable option is a multi-part file upload. So, it is either server or it is browser. And either way, the question leads to very established options, as outlined above.
    the main concept is.. in the browser the user selects
    a particular file and clicks the button upload..after
    clicking upload the jsp should sent the file to the
    servlet in streams...there the servlet gets in and
    saves in a server location........this is wat i hav
    to do...
    Okay. So, after reading my previous (redundant) paragraph, we have arrived at the crux of the issue. You have a JSP that will be output as HTML to a client (browser) which you want to upload content to your server (handled by a Servlet). So, you are now stuck again with multi-part. The requirement to not use multi-part is non-sensical. You can overcome it, say, if you write your own applet or standalone Swing client. However, if your users are invoking this functionality from a browser, you are limited by the options that W3C has provided you. Use multi-part.
    is there aby possibilty to do this.....can any one
    pls help....Take the advice to download and review Jakarta Commons FileUpload. Inform your management that their requirement makes no technical sense. Research on your own. There are dozens of examples (and tutorials) on file upload using multi-part. Embrace it. Live it. Love it.
    - Saish

  • Why JSF & When to use JSF?

    Hi Experts,
    I am new to JSF and i am studying that now. I have some basic questions.
    1. Why JSF and When to use JSF means What is the right requirement or situation to use JSF?
    2. Studied that JSF is basically a UI driven framework and developed to provide & support for UI component model. If that is the case, each UI components(Textfield, drop-down, etc..) in the web page is coupled to server-side components and for each validation or events, is the page submitted to server and come back?
    3. What are the other benefits i get compared to Struts and JSP if i use JSF?
    Please provide your experience.
    Thanks,.
    Edited by: MouliOnTech on Mar 6, 2009 3:02 AM

    Depends on how you code the JSF page and which component library you use.
    Standard JSF components doesn´t support asynchronous requests, so the validation will only happen when you submit the form to the server (either by pressing the submit button or by Javascript´s form.submit). But there are also Ajaxical JSF component libraries out which can validate asynchronously based on the (Javascript) events. For example RichFaces/Ajax4jsf.

  • Should I use a MVC framework for an large RIA application

    The book of "Adobe Flex 3 Training from the Source" does not
    talk about any MVC frameworks in its
    eCommerce example. I think Flex's events, functions, and mx
    components are MVC already. Do they have to be in separate file to
    call them MVC? I do not find that core Flex is harder to read and
    understand than using a MVC framework. I think using the MVC
    framework would hurt the performance because too many additional
    events are dispatched. Any comments?

    MVC is one design pattern that is pretty darn useful for a
    lot of applications, IMHO. There are frameworks that more or less
    force you to think in MVC pattern terms, like Cairngorm and
    PureMVC. But you certainly don't need to use a framework to create
    an overall design pattern of model, view, controller. However, it
    sure can make it easier if you're doing a large project. The book
    you're talking about is a good example. They don't use a framework
    but they have tried to use a form of MVC in the way that they
    implement all the components to ensure things are loosely coupled.
    As far as hurting performance, I'm no expert but there are so
    many thousands of events occurring all the time in Flex that you
    might actually enhance performance if you take more control by
    using custom events of your own creation within a well designed
    framework.
    I'm a fan of the Mate because I get it and it doesn't impose
    a strict structure like Cairngorm. I don't have a whole lot of
    experience with OOP (though I'm sure getting it thanks to this
    forum). Many others have their own opinions and will surely
    recommend other frameworks. However, the bottom line is that if
    you're doing a big project, I would think it would be a huge help
    to at least have a conceptual framework approach in your mind, if
    not part of the code.
    Here's a video intro to Mate
    http://tinyurl.com/mateintro

  • Is there any way to ban Winsock Packet Editor from workin on your browser other players are using this progarm to interfer with peopels game play using your web browser on forfox

    ok i play yoville and people are using your web browser for the program Winsock Packet Editor Pro and everytime I try to enjoy yoville by zynga some fool uses your web browser to make winsock packet aditor to disconnect my player im so sick of this crap i work all day i exspect to come on yo and enjoy my game play not for some fool to use your web browser to make a program work and disconnect my player by gaining access to cdata people can also use wpe to get into others account with out any password or user name so is there any way to stop this program from working on your browser to stop these hackers from compromising accounts and ruining the fun of zynga games Ty for your kind Support and i hope u can help stop this program from working on your browser and from other browsers game play would be better off for all

    If you are meaning [http://wpepro.net http://wpepro.net], that tool doesn't use Firefox in the slightest. It uses TCP/IP (part of Windows) to Monitor networks (it can also be used nefariously).
    Please update your Firefox to Firefox 11, as the version you are running Is vulnerable to Many known security holes. After you do that, try to see if your problem is still going on.

  • Oracle portal using JSF, JSP, Struts framework

    Hi ,
    Can anyone tell me how to build an oracle portal using JSF,Jsp and Struts Framework.
    Also please provide any manual or documentation for developing oracle portal.
    Thanks in Advance,
    Raghav

    At present, i think the best thing to do is to look at the example provided with the struts-faces integration taglib. I don't know any documentation about it.
    http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/

  • Buling a new Web Application using JSF and Ajax.

    Hello Group,
    I am a building a new web application using JSF and AJAX. Planning to use Myfaces Tomahawk, Dojo for Ajax, Hibernate, Spring,Eclipse IDE and Jetty Server.Can some one please suggest me will this be a right one for
    building complex UI and will it support for using the jsf features and would like to know any other free open
    source framework, ide, tools which support the best way for an agile project..?. There is restriction like i have to use java1.4

    jaisheela wrote:
    Hello Friends,
    I am also in the same situation.
    I am a building a new web application using JSF and AJAX.
    Requirement is I need to use IBM version of DOJO and JSF but I need to develop the whole application using Eclipse 3.3,2 and Tomcat 5.5.
    With IBM version of DOJO and JSF, will Eclipse and Tomcat help to speed up the development or do you suggest me to go for Rational Application Developer and WebSphere Application Server.
    If I need to go with RAD and WAS, then I am new to RAD and WAS, is it easy to use RAD and WAS for this kind of application and implement web applicaiton fast.
    Any feedback will be great help.Those don't sound like requirements of the system to me. They sound more like someone wants to improve their CV/resume
    From what I've read recently, if it's just fast you want, look at Ruby on Rails

Maybe you are looking for

  • How to get rid of the illustration (next to the song's title) on my 160GB?

    Hi a while ago I bought a 160 GB IPOD and it works fine ... There is just one annoying thing : I only use it for playing music and it put as much information as possible on it via iTunes... now when I play my iPod, there is this annoying illustration

  • Keyboard problem unsolvable, or just challenging ?

    As I seem to have run out of help on the previous thread I will restate the problem and the steps I have taken to troubleshoot it: Problem: I have the Apple Keyboard which came with my 1st generation Intel iMac. It has a numeric keypad, but no num-lo

  • BI Publisher 11g - calling SQL Server 2005 stored procedure error

    Hi experts I have been calling succesfully an SQL server 2005 stored procedure for the data model of a BI publisher report in 10g, passing it a customerNo parameter. EXEC     [dbo].[usp_WelcomeLettersConsumerNo]           @CustomerNo = :sCustomerNo H

  • Problem with Field image recovery software

    Dears, I updated cisco wlc 5508 FUS image, but field recovery image stayed the same, does this mean that fus is not upgraded, what can i do? Manufacturer's Name.............................. Cisco Systems Inc. Product Name............................

  • What happened to the Arrowheads ?

    In Illustrator CS4 you used to add Arrowheads as an effect (under the Stylize - Add Arrowheads tool), and in CS5 it's moved to the Stroke panel. Unfortunately it appears that's not all that's changed.  It now appears to be impossible to create the ki