Attributes of page directive?

what is the purpose of the following attributes of page directive
1-extends
2-info
3-session

http://java.sun.com/products/jsp/tags/12/syntaxref1210.html#15653
extends="package.class"
The fully qualified name of the superclass of the Java class this JSP page will be compiled to. Use this attribute cautiously, as it can limit the JSP container's ability to provide a specialized superclass that improves the quality of the compiled class.
session="true|false"
Whether the client must join an HTTP session in order to use the JSP page. If the value is true, the session object refers to the current or new session.
If the value is false, you cannot use the session object or a <jsp:useBean> element with scope=session in the JSP page. Either of these usages would cause a translation-time error.
The default value is true
info="text"
A text string that is incorporated verbatim into the compiled JSP page. You can later retrieve the string with the Servlet.getServletInfo() method.

Similar Messages

  • Extend attribute of page directive

    How is it implemented in JSP.

    hi,
    related links
    http://forum.java.sun.com/thread.jspa?threadID=516273&messageID=2460461

  • How to use extends attribute in jsp page directive

    Can anybody tell how to extend a existing .jsp file from another .jsp file. I have tried but it gives error.
    I have used Extends attribute of page directive as below:
    <%@ page extends = "MyAnotherJsp.jsp"%>
    I also tried : <%@ page extends = "MyAnotherJsp"%>
    I am using Tomcat as a web server
    Also tell where to put those files.
    Thanks.

    Hi I am using Netbeans 5.5, Sun Java System Application Server 9.
    ABC.java
    package javapackage;
    public class ABC{
    public String show(){
    return "Sandip Gaikwad";
    index.jsp
    <%@ page extends="javapackage.ABC" %>
    <html>
    <head>
    <title>JSP Page</title>
    </head>
    <body>
    <h1>JSP Page </h1>
    </body>
    </html>
    Above code throws following exception at runtime:-
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    [javac] F:\Sun\AppServer\domains\domain1\generated\jsp\j2ee-modules\Page_Extends_Attribute_Example\org\apache\jsp\index_jsp.java:36: getPageContext(javax.servlet.Servlet,javax.servlet.ServletRequest,javax.servlet.ServletResponse,java.lang.String,boolean,int,boolean) in javax.servlet.jsp.JspFactory cannot be applied to (org.apache.jsp.index_jsp,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,,boolean,int,boolean)
    [javac] pageContext = _jspxFactory.getPageContext(this, request, response,
    [javac] ^
    [javac] 1 error
    Server log
    StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    [javac] F:\Sun\AppServer\domains\domain1\generated\jsp\j2ee-modules\Page_Extends_Attribute_Example\org\apache\jsp\index_jsp.java:36: getPageContext(javax.servlet.Servlet,javax.servlet.ServletRequest,javax.servlet.ServletResponse,java.lang.String,boolean,int,boolean) in javax.servlet.jsp.JspFactory cannot be applied to (org.apache.jsp.index_jsp,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,<nulltype>,boolean,int,boolean)
    [javac] pageContext = _jspxFactory.getPageContext(this, request, response,
    [javac] ^
    [javac] 1 error
    at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:94)
    at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:384)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:461)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:528)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:507)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:495)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:530)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:412)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:318)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    If I delete the line <%@ extends="javapackage.ABC"%> it works fine. Please tell me what is wrong with this line.

  • ER: organize imports in an "import" attribute of a JSP page directive

    Hi,
    it would be useful to see packages/classes hierarchy when changing the "import" attribute of <%@ page %> directive. It might be as well to have all possibilities of imports processing as in .java classes (autoadding, remove unused import, etc.)
    Thanks in advance.

    Hello Scott,
              First, you have to define this page directive in your static page or JSP
              page :
              <%@ page contentType="text/html; charset=UTF8" %>
              Check your your weblogic.properties file for the following settings:
              weblogic.httpd.inputCharset specifies encoding used when changing into the
              internal code of Java from the parameter of the browser's request. If you
              use Shift_JIS in HTML or JSP, please set
              weblogic.httpd.inputCharset./*=Shift_JIS.
              weblogic.codeset specifies encoding used when jDriver stores data in an
              Oracle database and it changes into the character code of a database from
              the internal code of Java. If you use ja16sjis in Oracle database, please
              set the same encoding as NLS_LANG to weblogic.codeset.
              Hope this helps
              Ludovic.
              Developer Relations Engineer
              BEA Support
              "Scott Mark" <[email protected]> a écrit dans le message news:
              3cd67e5d$[email protected]..
              > Did you ever get around this? Is there an issue with UTF-8 encoding?
              >
              > We are going to have to deliver a site in Japanese soon, and are
              researching how well WLS handles double-byte chars...
              

  • Page directive: can't have multiple occurrences of language

    Do anybody know what is the meaning of the following exception when running the JSP??
    org.apache.jasper.compiler.CompileException: D:\tomcat\webapps\ROOT\dbconn.jsp(2,0) Page directive: can't have multiple occurrences of language
    Is there any error in "dbconn.jsp"??

    Hi!
    Only the import attribute is allowed to appear mutiple times within the same JSP file.
    //Test01.jsp
    //OK!
    <%@ page import="xxx" %>
    <%@ page import="yyy" %>
    //Test02.jsp
    //Bad
    <%@ page language="xxx" %>
    <%@ page language="yyy" %>

  • Problem with errorPage in page directive tag while proxying request from iPlanet to WebLogic

              Hi,
              We are using iPlanet 4.0 as the webserver and WebLogic 5.1 as the application server on different solaris machines. We have put our JSPs in the weblogic application server and proxy the requests from iplanet to weblogic.
              We are facing a problem with the errorPage in the 'Page Directive' tag of the JSP. We have given xxx.jsp as an 'errorpage' parameter in the page directive tag. If we directly access the JSP from the WebLogic, and there is an system error, the error page specified in the JSP is getting displayed. But if we access the JSP from iPlanet and there is an system error, instead of displaying the error page, iPlanet is asking whether we want to download the file. If we say yes it downloads the actual JSP code itself. We have defined the mime types in obj.conf file as well as mime.types for the iPlanet.
              If anyone knows how this can be solved, it would be of great help
              Regards,
              Krish
              

    How did you configure the obj.conf file? proxy by mime type or ppath? It
              seems errorPage.jsp was not proxyed and treated as a unknown mime type.
              Krishnaraja <[email protected]> wrote in message
              news:3a372d79$[email protected]..
              >
              > Hi,
              >
              > We are using iPlanet 4.0 as the webserver and WebLogic 5.1 as the
              application server on different solaris machines. We have put our JSPs in
              the weblogic application server and proxy the requests from iplanet to
              weblogic.
              >
              > We are facing a problem with the errorPage in the 'Page Directive' tag of
              the JSP. We have given xxx.jsp as an 'errorpage' parameter in the page
              directive tag. If we directly access the JSP from the WebLogic, and there is
              an system error, the error page specified in the JSP is getting displayed.
              But if we access the JSP from iPlanet and there is an system error, instead
              of displaying the error page, iPlanet is asking whether we want to download
              the file. If we say yes it downloads the actual JSP code itself. We have
              defined the mime types in obj.conf file as well as mime.types for the
              iPlanet.
              >
              > If anyone knows how this can be solved, it would be of great help
              >
              > Regards,
              > Krish
              

  • Change Apex 5.0 pages direction to rtl to support Arabic

    Dear All,
    I started using Apex 5.0 my issue is how to change the page direction to be right-to-left I've added <html dir="rtl'> on the page template this works fine for most of regions on the page the only issue is the navigation menu still appears in left side of the page I think because position is fixed there. I've spend a lot of time trying to get it from the right side of the page along with the page header but i couldn't please help!!!!
    Thanks..

    Can i Get any Help??

  • I want to display a jsf page directly.

    I want to display a jsf page directly. In my project I am using jsf frame work and we are using org.apache.myfaces.component.html.util.ExtensionsFilter to redirect the request to the login.jsf. please any one help me on this.

    my requirement is I have to display a jsf page which is there in the project directly, without going through login page. Right now Iif i am trying to open it in browser directly, it is redirecting to login.jsf. I have following 'extensionsFilter' content in web.xml
    <filter>
    <filter-name>extensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>100m</param-value>
    <description>Set the size limit for uploaded files.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB
    </description>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    <description>Set the threshold size - files
    below this limit are stored in memory, files above
    this limit are stored on disk.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB
    </description>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>

  • Page directive with UTF-8 charset??

    Hello,
              I try to implement the following jsp with weblogic. It displays A???C on the
              browser when the encoding is set to Unicode(UTF-8).
              When I change the browser encoding to Western European, it works fine.
              <html>
              <head>
              <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
              <title>Trying</title>
              </head>
              <body>
              <%
              String original = new String("A" + "\u696D" + "\u00f1" + "\u00fc" + "C");
              byte[] utf8bytes = original.getBytes("UTF8");
              String roundTrip = new String(utf8bytes, "UTF8");
              %>
              Original = <%=original %>
              RoundTrip = <%=roundTrip %>
              </body>
              </html>
              I found that it ignores the first two 00 when handle \u00xx character.
              However, if I add the following page directive at the beginning, it works
              fine.
              <%@ page contentType="text/html; charset=UTF-8" %>
              My question are
              1. why it trim the first two digit ("00")?
              2. what the weblogic did when I add the page directive?
              3. Is that mean the line <meta http-equiv.....> cannot work?
              4. Is there any alternative instead of adding the page directive line?
              I use WL6.1, win2000. Please help.
              Thanks a lot.
              Regards,
              kfchu
              

    String original = new String("A" + "\u696D" + "\u00f1" + "\u00fc" + "C");          > I found that it ignores the first two 00 when handle \u00xx character.
              > 1. why it trim the first two digit ("00")?
              I can't tell what you mean. According to the JLS, the "\uxxxx" construct is
              processed in a pre-lexical step. That means that your code is the same as
              writing:
              String original = new String("A" + "?" + "?" + "?" + "C");
              (Where I used a question mark instead of looking up and writing in the
              actual character values.)
              The reason why it is 00xx is that the "\u" construct requires the data in
              UTF16 format (the 2-byte encoding of Unicode characters which you know as
              Java's "char" type).
              To see how this data is encoded / decoded, you can look at the Java sources
              for java.io.DataInputStream and DataOutputStream.
              > 4. Is there any alternative instead of adding the page directive line?
              Yes! You can use the Response method directly:
              public void setContentType(java.lang.String type)
              (That's all that the JSP does anyway.)
              Peace,
              Cameron Purdy
              Tangosol Inc.
              Tangosol Coherence: Clustered Coherent Cache for J2EE
              Information at http://www.tangosol.com/
              "kfchu" <[email protected]> wrote in message
              news:[email protected]...
              > Hello,
              >
              > I try to implement the following jsp with weblogic. It displays A???C on
              the
              > browser when the encoding is set to Unicode(UTF-8).
              > When I change the browser encoding to Western European, it works fine.
              > ---------------------------------
              > <html>
              > <head>
              > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
              > <title>Trying</title>
              > </head>
              > <body>
              > <%
              > String original = new String("A" + "\u696D" + "\u00f1" + "\u00fc" + "C");
              > byte[] utf8bytes = original.getBytes("UTF8");
              > String roundTrip = new String(utf8bytes, "UTF8");
              > %>
              > Original = <%=original %>
              > RoundTrip = <%=roundTrip %>
              > </body>
              > </html>
              > -----------------------------------
              >
              > I found that it ignores the first two 00 when handle \u00xx character.
              > However, if I add the following page directive at the beginning, it works
              > fine.
              > <%@ page contentType="text/html; charset=UTF-8" %>
              >
              > My question are
              > 1. why it trim the first two digit ("00")?
              > 2. what the weblogic did when I add the page directive?
              > 3. Is that mean the line <meta http-equiv.....> cannot work?
              > 4. Is there any alternative instead of adding the page directive line?
              >
              > I use WL6.1, win2000. Please help.
              >
              > Thanks a lot.
              >
              > Regards,
              > kfchu
              >
              >
              

  • "import" in the JSP's Page directive - referencing a package

    I have my JSP file in WEB-INF. And my .Java file in the "Project parent folder"/src/com/user/faq.
    My Page directive in the JSP looks something like,
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1" errorPage="errorPage.jsp" import="com.user.faq.FaqCategories"%>
    And JSP won't compile, saying com.user.faq.FaqCategories is not found.
    Any help on this will be appreciated. Thanks!

    JSP won't compile, saying com.user.faq.FaqCategories is not foundSo it isn't on the classpath when compilation occurs. So fix that.

  • In some computers I cannot find "Switch Page Direction" on the shortcut Menu or "View" Menu. Is there any setting related to this subject?

    Hi
    I have a problem with my firefox browser. please Help me!
    In some computers I cannot find "Switch Page Direction" on the shortcut Menu or "View" Menu. Is there any setting related to this subject?
    thanks

    In order to change your Firefox Configuration please do the following steps :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.
    # Look for '''bidi.browser.ui''', change its value to '''true''', restart Firefox, then right click to see the '''Switch Page Direction'''

  • Dreamweaver rewriting my page directives

    Hi there all,
    Quite a straightforward question here. I'm in the position
    where I'm having
    to use both Dreamweaver (CS4) and Microsoft Visual Studio
    2008 to create an
    asp.NET application.
    VS2008 for the coding part and Dreamweaver for everything
    else, mainly
    because I prefer the Dreamweaver interface for building and
    styling a site.
    I'm also using the templates mechanism within Dreamweaver to
    manage the
    site.
    The problem is when I make a global change to a template
    Dreamweaver keep
    defaulting my page directives on all my site pages thus
    breaking the
    code-behind link between .aspx page and .vb files.
    How can I stop Dreamweaver messing with the page directives?
    Would be most grateful for some guidance please.
    Cheers,
    @ndyB

    Good luck. Let us know how it goes.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "@ndyB" <[email protected]> wrote in message
    news:[email protected]...
    > Nice one.
    > Thanks Murray, I'll give it a go.
    >
    > @
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> It should do so, yes. You would have to change the
    contents of that
    >> construction, of course, but anything within @@('
    and ')@@ will not be
    >> touched.
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >> ==================
    >>
    >>
    >> "@ndyB" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> Thanks Murray,
    >>>
    >>> Will that stop Dreamweaver touching the
    directives altogether? Because
    >>> they are different from page to page you see.
    >>>
    >>> Cheers,
    >>>
    >>> @
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> OK - and this is above the doctype, right?
    >>>>
    >>>> Try this -
    >>>>
    >>>> @@('<%@ Page Language="VB"
    AutoEventWireup="false"
    >>>> CodeFile="stage4.aspx.vb"
    Inherits="_Default"
    >>>> enableViewStateMac="False" %>')@@
    >>>>
    >>>> in the Template file and see if that helps!
    >>>>
    >>>> --
    >>>> Murray --- ICQ 71997575
    >>>> Adobe Community Expert
    >>>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    >>>> ==================
    >>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>> ==================
    >>>>
    >>>>
    >>>> "@ndyB" <[email protected]> wrote
    in message
    >>>> news:[email protected]...
    >>>>> Something like
    >>>>>
    >>>>> <%@ Page Language="VB"
    AutoEventWireup="false"
    >>>>> CodeFile="stage4.aspx.vb"
    Inherits="_Default"
    >>>>> enableViewStateMac="False" %>
    >>>>>
    >>>>> Gets changed back to
    >>>>>
    >>>>> <%@ Page Language="VB"
    ContentType="text/html"
    >>>>> ResponseEncoding="utf-8" %>
    >>>>>
    >>>>> Cheers,
    >>>>>
    >>>>> @
    >>>>>
    >>>>>
    >>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> SHow us an example of your page
    directives that get rewritten,
    >>>>>> please.
    >>>>>>
    >>>>>> --
    >>>>>> Murray --- ICQ 71997575
    >>>>>> Adobe Community Expert
    >>>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>>> ==================
    >>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>> ==================
    >>>>>>
    >>>>>>
    >>>>>> "@ndyB" <[email protected]>
    wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>> Hi there all,
    >>>>>>>
    >>>>>>> Quite a straightforward question
    here. I'm in the position where I'm
    >>>>>>> having to use both Dreamweaver
    (CS4) and Microsoft Visual Studio
    >>>>>>> 2008 to create an asp.NET
    application.
    >>>>>>> VS2008 for the coding part and
    Dreamweaver for everything else,
    >>>>>>> mainly because I prefer the
    Dreamweaver interface for building and
    >>>>>>> styling a site. I'm also using
    the templates mechanism within
    >>>>>>> Dreamweaver to manage the site.
    >>>>>>>
    >>>>>>> The problem is when I make a
    global change to a template Dreamweaver
    >>>>>>> keep defaulting my page
    directives on all my site pages thus
    >>>>>>> breaking the code-behind link
    between .aspx page and .vb files.
    >>>>>>>
    >>>>>>> How can I stop Dreamweaver
    messing with the page directives?
    >>>>>>>
    >>>>>>> Would be most grateful for some
    guidance please.
    >>>>>>>
    >>>>>>> Cheers,
    >>>>>>>
    >>>>>>> @ndyB
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>
    >>>>
    >>>
    >>
    >

  • Set page direction in source code

    Hello,
    I would like to know how I can change the page direction in the source code of a backing bean.
    Thanks.

    I mean that the direction of the page has to be left-to-right or right-to-left.

  • Use automator to send document from pages directly in outlook

    send an email from pages directly in Outlook  Even though Outlook is selected as the default reader, Mail opens to send a document directly out of Pages.  Is it possible to set up a service in Automator to use Outlook instread of Mail? Or is there another solution?

    What version of Palm desktop do you have? Go to help - about in Palm desktop for the version number.
    Is there a media conduit in your version of Palm desktop? If so, have you tried using that conduit?
    Click on the following link to the kb.palm.com webpage for the article regarding copying Copying, deleting, sending and beaming files and applications on an SD/MMC expansion card
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=10102
    Click on the following link for the support page for your device on the kb.palm.com webpage.
    http://www.palm.com/us/support/centro/centro_att/
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Post relates to: Palm i705

  • Page directive error in my JSP file

    hi...
    I have an error in page directive.whenever iam trying to import from userdefined packages.The Package list is as follows..
    BandsExampleApp-->BandsExampleEJB-->examples-->ejb20-->relationships-->bands..
    BandsExampleApp-->webapp-->addBand.jsp
    im getting import error in addBand.jsp.the error line is as follows
    <%@ page import='examples.ejb20.relationships.bands.*'%>
    what should i do to avoid this error.

    Hi,
    Please check whether the jar is present in the library.
    Janaki

Maybe you are looking for

  • DVD-RW not working properly

    Hello, I just want to be able to use my DVD-RW like a hard drive, like in windows. I'm new to mac, so maybe I'm missing something, but I simply dragged a file onto the RW, it copied to it, then I couldn't add anything else. I also have Toast if this

  • Java wont open .class file

    ok i just started at this and found this web site http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html#1 i copyed exactly what he says to copy: * The HelloWorldApp class implements an application that * displays "Hello World!" to th

  • Opening pdf files in preview,mine will only open in colorsync utility. help

    My macbook operating on Mac os 10.5.6 when opening pdf files it will only open them with colorsync utility and I can't alter the files (rotate/zoom etc) like I can when I can open it with Preview on my iMac desktop... I don't seem to have preview on

  • How to change the user for an event job as SAP_MONITORING_STARTUP_DISPATCH

    Hi experts! We change the user that execute all our jobs. I can change the user JOB-BW for JOB-BI for this job SAP_CCMS_MONI_BATCH_STARTUP_DP, but the problem is when this job is executed by event for this other job SAP_MONITORING_STARTUP_DISPATCH, b

  • Apache webser configuration??

    Hi, I am having problems with my Apache webserver configuration, I think de Jserv configuration. http://localhost/ is working fine, I get an nice page of the webserver that says that it's working. but... I've added some aliases, but when I want to go