Very big problem with JSF about FORM and "id=" for HTML form's elements and

I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
Suppose you have something like this, to render some datas form a Java Beans :
<h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
<h:column>
<f:facet name="header">
<h:outputText value="Name"/>
</f:facet>
<h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
</h:column>
</h:dataTable>
Everything works fine...
Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
<td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
You think you can use the java instructions :
Enumeration NamesParam = request.getParameterNames();
while (NomsParam.hasMoreElements()) {
String NameParam = (String) NamesParam.nextElement();
out.println("<h4>"++NameParam+ "+</h4>);
YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
Edited by: ungars on Jul 18, 2010 12:43 AM
Edited by: ungars on Jul 18, 2010 12:45 AM

While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
"Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
Ed

Similar Messages

  • I have a very big problem with my mac book pro. It continously looses the wifire connection. This happens every 5-10 minutes and is getting to be a very big irritation. I have tested my wifiresignal

    I have a very irritating problem with my MacBook Pro. It keeps loosing the wifi connection - every 5-1o minutes!!!
    I have testet the wifi signal and had my router checked - both are fine.
    Please tell me what I can do :-(
    John

    First you should check on another Wifi to see if it's your Lion machine.
    If it only occurs on your Wifi, then perhaps you have local interference and need to set the router on another channel far from others.
    You can install a free program called KisMAC that you set your Driver Preferences to Apple Airport Extreme Passive Mode, enter your Admin password and monitor your local Wifi signals, see if you cna pin point the cause of your interference or meddler.
    If your not running WPA2 with AES and a 12 plus random character/letter/number password for both Admin and Internet access use only then you should seriously consider doing so.
    http://www.tomshardware.com/reviews/wireless-security-hack,2981-10.html

  • VERY BIG PROBLEMS WITH MY ZEN MICRO AND MEDIASOURCE! PLEASE PLEASE PLEASE HELP ME! PLEASE RESPOND

    Ok so a while back I had to give up my computer because it wasn't working.
    I thought that with my new computer I'd be able to transfer all of my music from my zen micro onto my new computer.
    Now my new computer is set up and I have installed creative mediasource and everything. I started to transfer my music from my zen onto my computer. My first 2 songs transfered successfully onto my computer. On the third song, I get this message:
    "Unable to read file, file may be in use, missing, or corrupted."
    I thought that maybe it was just that one song so I shrugged it off. But then it says the same thing for every single other song that i have! Only my first 2 songs out of my entire music library on my zen will transfer!!!
    Please i really need your help!!!
    And say that there is no hope in getting the rest of my songs to transfer and i have to download 094 songs from limewire? I'll surely be arrested for downloading that much! What should i do if i must download all of them?
    And one more problem with my zen: Some of my Jump Little Children songs are doing something weird. The song will be fine and then a clip from another song will play during it! And then press next and it just keeps playing all of my Jump songs in order even though my player is on shuffle and they do the same thing with the clip from another song interupting it. Whats going on?
    Most importantly though, i really need the questions answered about transfering from my zen to my computer because i'll be getting a new player soon. But this is my entire music library at stake!! PLEASE RESPOND!!!

    Might try this:? http://forums.creative.com/creativel...mp=true#M95059

  • Very big problem with java downloads - geo targeting problem ?

    Hello,
    i am from germany and i hope you understand my english.
    I have following problem.
    our official IP Adress is listed in some geo targeting servers to a false country.
    for example - a website language is not in german - but in english / arabic
    -> this problem is now solved - anyone in the world change this false IP-to-country entry - but not all sites works fine
    If i test my IP adress via utrace.de i see, that my ip is not in germany but in israel. � utrace.de wants to fix this in the next 2 weeks � I hope so.
    My provider and RIPE settings are OK
    if i try to download java or other software from sun.com i receive a message, that the download is not allowed, because my location is in an embargo state. (false ip-to-country entry)
    My problem is to find a contact to sun.com or the service provider of sun.com, who manages the geo targeting DB
    forgot the normal sun support - nobody can help me.
    can you help me ??

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • Very big problem with professional Color Managed Display in PS CC and CS6 win7 64 bits

    How to reproduce this problem:
    - Photoshop CS6/CC
    - Win 7 Ultimate 64 bits English with all the updates.
    - ATI 7870 / HD 550 and early graphics cards.
    - Dell U3014, CINTIQ 21UX (in the 7870), 2 samsung 2232 in the 5500 (all on, or one at the time)
    - Spyder 3/4 Elite, Eyeone Display 2, DispCal (argyll), ColorEyes 1.60
    After the calibration and profile process with everyone of this Display profling tools (lets supose that is all right), open a image with more saturated colors (with Adobe 1998 RGB color space) in CS6 or CC, and hit the "F" key to toggle screens.
    You will see that the saturated colors will change (will become even more saturated) in the nest two screen modes, and color come back to the "normal" if hit F one more time.
    Seems like the photoshop get rid of calibration luts in the 2 F screens modes and come back to normal when the image are in the initial screen mode.
    ps: the loaders startups of each display calibration, was choosed one of the time when I restart the PC ( so, there are no multi loaders trying to put your luts at same time)
    - PS CS6 / CC and WINDOWS are totally up to date
    - The driver of display cards, are the latest AND the windows certificated
    - There are no other software installed on the PC that try to handle the display card or even diferents CMS.
    - In fact the Windows is a fresh install
    - This happen in RGB and CMYK images.
    This is very frustating..:(

    Dear Lundberg, in fact I'm wrong about this happen in RGB images, only happen in CMYK (whatever CMYK)
    If you have an up to date Win 7 64bit, PS CS6 or CC, and calibrate your display with any colorimeter spectrophotometer and their respective softwares. Download an image like this flowers:
    http://hdw.eweb4.com/out/663221.html
    Before, be sure to set in PS, this color settings attachad :
    Open this file, convert to CMYK and hit the F key to toggle between screen modes.
    If you have a calibrated display with,  let me say, Eyeone and Coloreyes, and the videoLuts loader is on, when you hit the "F" key, the colors on the CMYK image, will become way more saturated/heavy/dense, so Hit the F key until the screen mode is "normal" the color come back to the normal too.
    I test this behavior in 8 machines so far, and in all this machines, the change in the colors are very noticiable, to reach a point that I cant be used in color professional works.
    I hope that now I could express my self good enough.
    Regards.

  • Very BIG problem with my powerbook G4, won't boot!

    Hi nice people here,
    This is the most serious problem I have for my powerbook G4 1.67GHz...
    When I turn it on, it has the start up sound as usual.
    However, the apple logo is not on the display, in fact, i doubt the display is not even turned on because it's all black and no light.
    Also, the keyboard is not working either, the numlock and capslock are both not lit up when I push them.
    Also I notice that the USB is not powered either, because I have a USB cooling pad and it was usually turned on as the computer is turn on. Now it's not turning on so I think the USB plug is not powered either.
    I have tried reseting the Power Management, doesn't help.
    I have a weird idea, maybe the computer was turned on as usual, but because the screen is not on, the keyboard is not on, and the usb is not on, so it feels like it won't boot?
    The powerbook was fine before this happened....
    Anyone has any clue about this? I will be very grateful if you can help...
    Thanks a lot!!

    I think it's time for an appointment at a Genius Bar. The only other thing I might try is to put in your original OS install DVD and see if it will boot off there, but it does sound like there might be a hardware issue.

  • I have a very big problem with my icloud acc

    On 9th of this month , i erase my another device from my "find my iphone " app , after ther i write on my phone the icloud acc  and when i want to press on that iphone's back-up , i can't find it , i must say that , on my another device , when i enter settings -> icloud -> storage -> manage storage , i can see that back-up and it have 8.9 gb .... what's the problem  ? i lost so many photos and i really want them back....

    Hi Leleli,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are saying that you are having issues restoring your current iPhone from a previous iPhone's iCloud backup, you may find the information and steps outlined in the following articles helpful:
    iCloud: Restore or set up your iOS device from iCloud
    If you need help restoring an iCloud backup - Apple Support
    Regards,
    - Brenden

  • Big problem with my macbook pro 2009 - 3 motherboard changed at applestore Velisy and one more time it is for nothing.... ! Apple says you're not lucky?????

    3 motherboard i have changed at applestore Velisy and one more time it is for nothing.... !
    Apple says you're not lucky????? What can i do

    A sorry it 's macbook pro unibody from 2011

  • Please, I am in a very big problem I designed the project by Adobe director And you test the software on the computers on Windows and works with high quality When I tested the project on Apple Macintosh operating system, Li appeared a number of problems

    Please, I am in a very big problem
    I designed the project by Adobe director
    And you test the software on the computers on Windows and works with high quality
    When I tested the project on Apple Macintosh operating system, Li appeared a number of problems and you dissolve a large part of them
    But I have a problem too big
    The project works on some devices and others show me messages mistakes and why chasm different operating system version
    Apple's Macintosh and these messages
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    others
    shokwave player error
    pleas what can i do

    Welcome to the Support Communities.
    m.raslan wrote:
    I tested the project on Apple Macintosh operating system
    Click on the  menu at top left of your screen, choose About This Mac and, in the panel that appears, note the Version no. in the form 10.n.n. Then update your product list so we can see what version of OS X you're running on the Mac — see this tutorial:
    Update your product list
    m.raslan wrote:
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    This Apple doc may help:
    OS X: About Gatekeeper
    m.raslan wrote:
    shokwave player error
    Is Shockwave Player installed?...
    http://www.adobe.com/shockwave/welcome/
    ...If not, get it here:
    http://get.adobe.com/shockwave/

  • I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    My question...
    any answers pl.
    I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    If I've understood you correctly then the ALLEXCEPT function may be what you're after and it could be applied in a similar way to the following...
    =
    RANKX(
    ALL(Table1),
    CALCULATE(
    COUNTROWS(table1),
    ALLEXCEPT(Table1, Table1[ContactReason])
    DENSE
    If this has missed the mark, would it be possible to clarify the requirement further?
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com
    Blog: http://www.nimblelearn.com/blog
    Twitter: @nimblelearn

  • Hi,i have a very big problem....i had an accident with my macbook , i poured some champagne and it does not start anymore....it will work again???

    hi,i have a very big problem....i had an accident with my macbook , i poured some champagne and it does not start anymore....it will work again???

    If you spilled champagne on it, chances are not good.  If you haven't alredy DO NOT turn it on or charge it.  I would immediately take it to the Genius Bar and see if they can clean it up before. 
    Had the same problem with a 15" MBP and a tea spill and I did the opposite.  Trashed the Logic & Keyboard Assembly.  Cost to repair was going to be more than what I paid for a computer so ended up having to replace it.

  • Got big problem with my iphone , its not charging as it did before i updated (5.0.1) Now its charging very slowly and it doesnt show the charging sign on screen..

    got big problem with my iphone4 , its not charging as it did before i updated (5.0.1) Now its charging very slowly and it doesnt show the charging sign on screen..

    How do you know its charging very very slowly? Is the screen back on?
    Once a month you should charge your phone to 100% then drain it, then charge it back up to 100%.
    Just leave the phone in and do what is said above.
    How long do you think it will take to charge to 100%?

  • Problems with JSF and included subviews

    Hi everybody,
    I' ve got a problem with JSF and included subviews which makes me going
    crazy. I've got no clue why my web-pages are represent wrongly. The only
    tip I've got is that it must be connected with the kind I do include my JSF-pages.
    When I use <%@file="sub.jsp"%> my pages are are represent right. When I use <jsp:include page="Sub.jsp" /> or <c:import url="Sub.jsp" /> ( mark: the usage of flush="true" or flush="false" doesn't matter )
    my pages are represent wrongly.
    The usage of tags like f:facet or f:verbatim were also included but didn't point to an solution.
    I searched the whole Sun Developer Forum and some other web-sites for any solution for my problem but the given hints and clues didn't help. Now I'm trying to post my problem directly in Sun's Forum in hope to get help.
    My environment is the following:
    JAVA JDK 1.5 Update 4
    Tomcat 5.5.9
    JSLT 1.1
    Sun JSF 1.1
    Win 2K
    Here's my code:
    Main.jsp
    <%@ page language="java"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%
              String path = request.getContextPath();
              String basePath = request.getScheme() + "://" + request.getServerName()
                        + ":" + request.getServerPort() + path + "/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <base href="<%=basePath%>">
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <link rel="stylesheet" href="stil.jsp" type="text/css" />
    </head>
    <body>
         <f:view>
              <h:form>
                   <div class="table">
                        <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 1"/>
                             <h:outputText styleClass="tdinfo" value="value 2"/>
                        </div>
                        <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 3"/>
                             <h:outputText styleClass="tdinfo" value="value 4"/>
                        </div>
                   </div>
              </h:form>     
              <jsp:include page="Sub.jsp" />
         </f:view>
    </body>
    </html>Sub.jsp
    <%@ page language="java"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <f:subview id="subview">
         <h:form>
              <div class="table">
                   <div class="tr">
                             <h:outputText styleClass="tdleft" value="value 11"/>
                             <h:outputText styleClass="tdinfo" value="value 22"/>
                   </div>
                   <div class="tr">
                        <h:outputText styleClass="tdleft" value="value 33"/>
                        <h:outputText styleClass="tdinfo" value="value 44"/>
                   </div>
              </div>
         </h:form>
    </f:subview>stil.jsp
    <%@page contentType="text/css"%>
    <%
        String  schwarz     = "#000000",
                grau1       = "#707070",
                grau2       = "#c0c0c0",
                grau3       = "#e0e0e0",
                grau4       = "#e8e8e8",
                grau5       = "#fdfdfd",
                blau        = "#0000dd",
                tuerkis     = "#00cfff";
        String  liniendicke = "1px",
                linienart   = "solid";
        String allgemeineTextFarbe           = schwarz;
        String allgemeineHintergrundFarbe    = grau3;
        String infoTextFarbe                 = blau;
        String fieldsetRandFarbe             = blau;
        String fieldsetRandDicke             = liniendicke;
        String fieldsetRandArt               = linienart;
        String hrLinienFarbe                 = blau;
        String hrLinienDicke                 = liniendicke;
        String hrLinienArt                   = linienart;
        String inputAktivHintergrundFarbe    = grau5;
        String inputReadonlyHintergrundFarbe = grau4;
        String inputPassivHintergrundFarbe   = grau4;
        String inputPassivFarbe              = schwarz;
        String inputRandFarbe1               = grau1;
        String inputRandFarbe2               = grau5;
        String inputRandDicke                = liniendicke;
        String inputRandArt                  = linienart;
        String inputButtonHintergrundFarbe   = grau3;
        String legendenFarbe                 = blau;
        String linkFarbe                     = blau;
        String linkAktivFarbe                = tuerkis;
        String linkBesuchtFarbe              = blau;
        String linkFocusFarbe                = tuerkis;
        String objectGitterFarbe             = grau5;
        String objectGitterDicke             = liniendicke;
        String objectGitterArt               = linienart;
        String tabellenGitterFarbe           = grau5;
        String tabellenGitterDicke           = liniendicke;
        String tabellenGitterArt             = linienart;
    %>
    <%-- ----------------------------------------------- --%>
    <%-- Textdarstellung mittels der Display-Eigenschaft --%>
    <%-- in den Tags div und span                        --%>
    <%-- ----------------------------------------------- --%>
    *.table {
        display:table;
        border-collapse:collapse;
    *.tbody {
        display:table-row-group;
    *.tr {
        display:table-row;
    *.td,*.tdright,*.tdleft,*.tdinfo,*.th {
        display:table-cell;
        padding:3px;
        vertical-align:middle;
    *.td,*.th {
        text-align:center;
    *.tdright {
        text-align:right;
    *.tdleft {
        text-align:left;
    *.tdinfo {
        color:<%=infoTextFarbe%>;
        text-align:right;
    *.th {
        color:<%=infoTextFarbe%>;
        font-weight:bold;
    }thanks in advance
    benjamin

    Hello Zhong Li,
    many thanks for your post, but it didn't work.
    My problem is that the JSF-Components im my included or imported
    JSP-Pages does not accept any kind of style or styleClass for
    designing. The components take over the informations for colors
    but not for alignment.
    When I take a look at the generated JAVA-Source in $TOMCAT/WORK/WEBAPP for my sub.jsp ( sub.java )
    it seems that the resulting HTML-page would be presented correctly.
    But later when I start the application via Firefox or Mozilla the html-sourcecode is totally wrong.
    In my example I create a simple grid with 2 rows and 2 columns.
    Both columns contains JSF-Outtext-Components and are included with div-tags.
    The generated Sub.java shows that the text would be setted in the div-tags. Unfortunately the html-sourcecode represented by my browser shows that jsf-text is not setted in the tags but in the <h:form> tags. The div-tags are neither rounded by <h:form> nor containing the JSF-OutText-Components.
    Any clue?
    Many thanks Benjamin
    Here is the html-code from Firefox:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <base href="http://polaris21:8080/webtest/">
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <link rel="stylesheet" href="stil.jsp" type="text/css" />
    </head>
    <body>
         <form id="_id0" method="post" action="/webtest/Main.faces" enctype="application/x-www-form-urlencoded">
              <div class="table">
                   <div class="tr">
                        <span class="tdleft">value 1</span>
                        <span class="tdinfo">value 2</span>
                   </div>
                   <div class="tr">
                        <span class="tdleft">value 3</span>
                        <span class="tdinfo">value 4</span>
                   </div>
              </div>
              <input type="hidden" name="_id0" value="_id0" />
         </form>     
          <form id="SUB:_id5" method="post" action="/webtest/Main.faces" enctype="application/x-www-form-urlencoded">
               <span class="tdleft">value 11</span>
              <span class="tdinfo">value 22</span>
              <span class="tdleft">value 33</span>
              <span class="tdinfo">value 44</span>
              <input type="hidden" name="SUB:_id5" value="SUB:_id5" />
         </form>
         <div class="table">
              <div class="tr">
              </div>
              <div class="tr">
              </div>
         </div>
    </body>
    </html>

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    I think many of us need a Defense Against the Podcasts App professor.
    Have you looked at this Apple support page?
    http://support.apple.com/kb/HT6190?viewlocale=en_US&locale=en_US

Maybe you are looking for

  • Email CSV Files from ABAP in 4.6c

    Hi all, I've been trying to work out how to send an email from an ABAP program with a body of email text and a CSV file  attachment. We are running 4.6c and have SAP connect configured. I can send plain text emails but can't seem to attach a CSV file

  • Why does a red line is appearing when generating a pdf file from illustrator?

    I create my slide using illustrator (from CS2 to CS5) and when I save the file in pdf format, a red line is being created around the rectangle border of the silde. I don't know how it was generated and what to do to remove it. I need help please.

  • Open SO even though DO and Invoice are completed

    Hi All, SO still exists as Open even though it had been DO and Invoiced. THere is only 1 item but in the status overview, it kept indicating that SO is Open and even exists in VA05. Please kindly assist.

  • Error Help ?

    Getting "Error 148.3"   on Illustrator CS4 what is this?  Also error 150:30  on Photoshop Element 8 and error 150.30 on Premier Elements 8

  • Errors while installing

    Whenever I try to istall my Photoshop CS4 onto my Windows 7, I get these errors: Adobe Photoshop CS4 English Language Pack_x64 Error: Error 2. LangPack (English) for DeviceCentral Error: Error 2. I have tried: - installing in compatability mode with