My first Servlet, it is not working

package javax.servlet doesn't exist.
I am using jdk 1.6.0, NetBeans 5.5
Jakarta-Tomcat 5.0.25.
classpath:./;C:\jakarta-tomcat-5.0.25\common\lib;C:\Program Files\jade\lib\http.jar;C:Program Files\jade\lib\iiop.jar;C:\Program Files\jade\lib\jade.jar;C:\Program Files\jade\lib\jadeTools.jar;C:\Program Files\Jade\lib\common-codec-1.3.jar;C:\Program Files\Jade\lib\Base64.jar
Thanks for any help.

One more question.
Suppose my code
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class WelcomeServlet extends HttpServlet
   // process "get" requests from clients
   protected void doGet( HttpServletRequest request,
      HttpServletResponse response )
         throws ServletException, IOException
      response.setContentType( "text/html" );
      PrintWriter out = response.getWriter(); 
      // send XHTML page to client
      // start XHTML document
      out.println( "<?xml version = \"1.0\"?>" );
      out.printf( "%s%s%s", "<!DOCTYPE html PUBLIC",
         " \"-//W3C//DTD XHTML 1.0 Strict//EN\"",
         " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n" );
      out.println( "<html xmlns = \"http://www.w3.org/1999/xhtml\">" );
      // head section of document
      out.println( "<head>" );
      out.println( "<title>A Simple Servlet Example</title>" );
      out.println( "</head>" );
      // body section of document
      out.println( "<body>" );
      out.println( "<h1>Welcome to Servlets!</h1>" );
      out.println( "</body>" );
      // end XHTML document
      out.println( "</html>" );
      out.close();  // close stream to complete the page
   } // end method doGet
} // end class WelcomeServletAfter I right click the project node to run it.
Where can I find the created web page?
I saw there are "context.xml","web.xml" and "index.jsp",
where can I look "Welcome to Servlets!" etc.
Thanks again.

Similar Messages

  • Servlet Filter is not working

    Hi
    If I define a servlet filger as
    <filter-mapping>
    <filter-name>UploadPreProcessing</filter-name>
    <url-pattern>*test.jsp</url-pattern>
    </filter-mapping>
    This is not working . But If I do like.
    <filter-mapping>
    <filter-name>UploadPreProcessing</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    It works. Any idea why the first condition its not working ?
    Thanks
    Suneesh

    From the [Servlet Specification|http://jcp.org/aboutJava/communityprocess/mrel/jsr154/index2.htm] ,
    SRV.11.2 Specification of Mappings
    In the Web application deployment descriptor, the following syntax is used to define
    mappings:
    • A string beginning with a ‘/’ character and ending with a ‘/*’ suffix is used
    for path mapping.
    • A string beginning with a ‘*.’ prefix is used as an extension mapping.
    • A string containing only the ’/’ character indicates the "default" servlet of
    the application. In this case the servlet path is the request URI minus the context path and the path info is null.
    • All other strings are used for exact matches only

  • My first PL/SQL block not working with using Select query within begin

    I am new to PL/SQL , just started with basics of BLOCKS .
    I am having a query here in executing a block .
    When i am doing a insert oprtation in Blocks Begin method everything is working fine , but when ever i tried to do select operation , some error is being thrown .
    First of all This is my Table :
    select from try :*
    KEY      VALUE
    Key     Value
    Key1     Value1
    Key2     Value2
    Key3     Value3
    ======================
    This is the code which is not working : Please see the code and tell me what is the problem .
    DECLARE
    v_KEY    VARCHAR2(20);
    v_VALUE   VARCHAR2(20);
    BEGIN
    select key into v_KEY FROM try where v_value='Value' ;
    dbms_output.put_line(v_KEY);
    END;
    When i run this code , it is saying Data Not Found on this line " select key into v_KEY FROM try where v_value='Value' ;"
    wheer when i run tis individually it worked fine :
    select KEY FROM try where VALUE='Value' ;"
    please share your ideas .as why it isn't running ??
    Edited by: user10503747 on Sep 20, 2010 3:16 AM

    Hi,
    user10503747 wrote:
    I am new to PL/SQL , just started with basics of BLOCKS .
    I am having a query here in executing a block .
    When i am doing a insert oprtation in Blocks Begin method everything is working fine , but when ever i tried to do select operation , some error is being thrown .
    First of all This is my Table :
    select from try :*
    KEY      VALUE
    Key     Value
    Key1     Value1
    Key2     Value2
    Key3     Value3
    ======================
    This is the code which is not working : Please see the code and tell me what is the problem .
    DECLARE
    v_KEY    VARCHAR2(20);
    v_VALUE   VARCHAR2(20);
    BEGIN
    select key into v_KEY FROM try where v_value='Value' ;
    dbms_output.put_line(v_KEY);
    END;
    When i run this code , it is saying Data Not Found on this line " select key into v_KEY FROM try where v_value='Value' ;"
    wheer when i run tis individually it worked fine :
    select KEY FROM try where VALUE='Value' ;"
    please share your ideas .as why it isn't running ??
    Edited by: user10503747 on Sep 20, 2010 3:16 AMInstead of:
    {code}
    select key into v_KEY FROM try where v_value='Value' ;
    {code}
    perhaps you meant something like:
    {code}
    v_value := 'Value1';
    select key into v_KEY FROM try where v_value=Value ; -- No quotes
    {code}
    Until you assign a vlue to a variable, like v_value, it is NULL, so your original statement was equivalent to
    {code}
    select KEY FROM try where NULL='Value' ;
    {code}
    In PL/SQL, a SELECT ... INTO statement must return exactly one row, or else you will get an error (either NO_DATA_FOUND or TOO_MANY_ROWS). This is different from SQL, where a query cn return any number of rows, including 0, without raising an error.

  • First WDA (Hello World) not working in IE but looks good in FireFox.

    Hi,
    My Hello World App in WD  is not working in Browser IE. So I can't TEST it in SE80. It only shows a blank page and a javascipt error...
    Taking the same URL in Firefox works just fine....
    BSP apps is working just fine in both browsers.
    sapr3d.korkow is inside a "single label domain"
    http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2?sap-system-login-basic_auth=X&sap-client=300&sap-language=EN
    I have looked at the Config Manuals for WDA. FQDN etc.
    RZ10 now looks like this
    icm/host_name_full                          sapr3d.korkow
    rdisp/rfc_min_wait_dia_wp                   5
    rsdb/ntab/irbdsize                          8000
    rsdb/ntab/ftabsize                          35000
    rsdb/esm/buffersize_kb                      6144
    rsdb/cua/buffersize                         5000
    zcsa/installed_languages                    DEFKNOV
    abap/buffersize                             400000
    DIR_EPS_ROOT                                F:\usr\sap\trans\EPS
    DIR_TRANS                                  
    $(SAPTRANSHOST)\sapmnt\trans
    SAPTRANSHOST                                sapr3d
    SAPSYSTEMNAME                               U01
    SAPGLOBALHOST                               sapr3d
    SAPSYSTEM                                   00
    INSTANCE_NAME                               DVEBMGS00
    DIR_CT_RUN                                  $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
    DIR_EXECUTABLE                              $(DIR_INSTANCE)\exe
    PHYS_MEMSIZE                                9059
    rdisp/wp_no_dia                             16
    rdisp/wp_no_btc                             4
    rdisp/max_wprun_time                        900
    icm/keep_alive_timeout                      180
    icm/server_port_0                           PROT=HTTP,PORT=80,TIMEOUT=0,PROCTIMEOUT=180
    ms/server_port_0                            PROT=HTTP,PORT=81$$
    rdisp/wp_no_enq                             1
    rdisp/wp_no_vb                              4
    rdisp/wp_no_vb2                             2
    rdisp/wp_no_spo                             1
    In my hosts file I have:
    127.0.0.1       localhost
    178.18.8.15     SAPR3D
    Any Pointers ?
    Br,
    Martin

    Hi,
    I'm using IE 7.0.5730.13
    I also "fixed" securtiy settings to be as Low as possible....
    (Below message I could not cut and paste... so there may be some spelling misstakes.)
    First javascript error:
    Line: 10
    Char: 13
    Error: Invalid argument
    code: 0
    URL: http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2?sap-system.....
    second error (pushing Next button):
    same as above but:
    URL: http://sapr3d.korkow/sap/bc/webdynpro/ssr/domain_relax.html?000041-1
    third error:
    same as above but:
    URL: http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2~ucfLOADING?sap-contextid=SID.....&sap-wd-clientWindowid=25143
    Any pointers ?
    Br,
    Martin
    Edited by: Martin Andersson on Jun 29, 2008 5:36 AM

  • Build WAR with servlet in JAR not work

    I am building a WAR file and have a bunch of jars and one of the jars has 2 servlets. When I create new web component from deploytool, I add all the jars and no class files. I then get to a page where I can select servet,jsp, or no component. I select servlet, and when I hit next get an error that there is no servlet class added, go back in add it(even though it is in a jar file). I then go back and add the servlet and then it tells me it can't find one of the classes the servlet is using.
    My main goal is to keep everything in jars. Is this possible with deploytool?? How? Why is this not working?
    thanks for any help anyone can provide.
    Dean

    This problem is known, please see http://developer.java.sun.com/developer/bugParade/bugs/4529122.html for a workaround.

  • My First Web Application is not Working

    I have tried to design a webapplication. the index file just presents two input fields and a submitt button, but when i press submitt, the browser displays '.../FirstServlet' not found. I think there is something wrong with allocation of files in the proper directories. or something else....? I have tried to deploy WAR File generated by NetBeans through Apache-Tomcat but same is the result?
    The Error Header is as under:
    HTTP Status 404 /MyApp/%E2%80%9Chttp:/localhost:808/FirstServlet"
    The code is as under:
    *1) Index.html:*
    {color:#ff0000}+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">+{color}
    {color:#ff0000}+<html>+{color}
    {color:#ff0000}+<body>+{color}
    {color:#ff0000}+<form method="POST" ACTION = "http://localhost:8080/FirstServlet" NAME="myForm">+{color}
    {color:#ff0000}+<h2> Enter your name</h2>+{color}
    {color:#ff0000}+<INPUT TYPE="text" name="name"/>+{color}
    {color:#ff0000}+
    +{color}
    {color:#ff0000}+<h2> Salary</h2>+{color}
    {color:#ff0000}+<INPUT TYPE="text" name="salary"/>+{color}
    {color:#ff0000}+
    +{color}
    {color:#ff0000}+<INPUT type="submit" value="Submit"/>+{color}
    {color:#ff0000}+</form>+{color}
    {color:#ff0000}+</body>+{color}
    {color:#
    *+{color:#000000}FormServlet.java is as under:+*
    *+{color}+{color}{color:#ff0000}+{color:#000000}
    {color:#ff0000}import java.io.*;{color}
    {color:#ff0000}import java.net.*;{color}
    {color:#ff0000}import javax.servlet.*;{color}
    {color:#ff0000}import javax.servlet.http.*;{color}
    {color:#ff0000}public class FirstServlet extends HttpServlet {{color}
    {color:#ff0000}// this method is being called by both doGet() and doPost(){color}
    {color:#ff0000}protected void processRequest(HttpServletRequest request, HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}// getting value of salary text filed of the HTML form{color}
    {color:#ff0000}String salary = request.getParameter("salary");{color}
    {color:#ff0000}// converting it to the integer.{color}
    {color:#ff0000}int sal = Integer.parseInt(salary);{color}
    {color:#ff0000}// calculating 15% tax{color}
    {color:#ff0000}int tax = (int)(sal * 0.15);{color}
    {color:#ff0000}// converting tax into string{color}
    {color:#ff0000}String taxValue = tax + "";{color}
    {color:#ff0000}// request object can store values in key-value form, later it{color}
    {color:#ff0000}// can be retrieved by using getAttribute() method{color}
    {color:#ff0000}request.setAttribute("tax", taxValue);{color}
    {color:#ff0000}// getting object of servletContext{color}
    {color:#ff0000}ServletContext sContext = getServletContext();{color}
    {color:#ff0000}// getting object of request dispatcher{color}
    {color:#ff0000}RequestDispatcher rd ={color}
    {color:#ff0000}sContext.getRequestDispatcher("/secondservlet");{color}
    {color:#ff0000}// calling forward method of request dispatcher{color}
    {color:#ff0000}rd.forward(request, response);{color}
    {color:#ff0000}}{color}
    {color:#ff0000}// This method is calling processRequest(){color}
    {color:#ff0000}protected void doGet(HttpServletRequest request,{color}
    {color:#ff0000}HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}processRequest(request, response);{color}
    {color:#ff0000}}{color}
    {color:#ff0000}// This method is calling processRequest(){color}
    {color:#ff0000}protected void doPost(HttpServletRequest request,{color}
    {color:#ff0000}HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}processRequest(request, response);{color}
    {color:#ff0000}}{color}
    {color:#ff0000}}{color}
    +*
    *+{color:#000000}This servlet is intended to call the Second Servlet:{color}
    {color:#ff0000}import java.io.*;{color}
    {color:#ff0000}import java.net.*;{color}
    {color:#ff0000}import javax.servlet.*;{color}
    {color:#ff0000}import javax.servlet.http.*;{color}
    {color:#ff0000}public class SecondServlet extends HttpServlet {{color}
    {color:#ff0000}// this method is being called by both doGet() and doPost(){color}
    {color:#ff0000}protected void processRequest(HttpServletRequest request,{color}
    {color:#ff0000}HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}response.setContentType("text/html");{color}
    {color:#ff0000}PrintWriter out = response.getWriter();{color}
    {color:#ff0000}// obtaining values of name and salary text fields of index.html{color}
    {color:#ff0000}String name = request.getParameter("name");{color}
    {color:#ff0000}String salary = request.getParameter("salary");{color}
    {color:#ff0000}/* getting attribute value that has been set by the calling{color}
    {color:#ff0000}servlet i.e. FirstServlet */{color}
    {color:#ff0000}String tax = (String)request.getAttribute("tax");{color}
    {color:#ff0000}// generating HTML tags using PrintWriter{color}
    {color:#ff0000}out.println("<html>");{color}
    {color:#ff0000}out.println("<head>");{color}
    {color:#ff0000}out.println("<title>SecondServlet</title>");{color}
    {color:#ff0000}out.println("</head>");{color}
    {color:#ff0000}out.println("<body>");{color}
    {color:#ff0000}out.println("<h1> Welcome " + name+ "</h1>");{color}
    {color:#ff0000}out.println("<h3> Salary " + salary+ "</h3>");{color}
    {color:#ff0000}out.println("<h3> Tax " + tax+ "</h3>");{color}
    {color:#ff0000}out.println("</body>");{color}
    {color:#ff0000}out.println("</html>");{color}
    {color:#ff0000}out.close();{color}
    {color:#ff0000}}{color}
    {color:#ff0000}// This method is calling processRequest(){color}
    {color:#ff0000}protected void doGet(HttpServletRequest request,{color}
    {color:#ff0000}HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}processRequest(request, response);{color}
    {color:#ff0000}}{color}
    {color:#ff0000}// This method is calling processRequest(){color}
    {color:#ff0000}protected void doPost(HttpServletRequest request,{color}
    {color:#ff0000}HttpServletResponse response){color}
    {color:#ff0000}throws ServletException, IOException {{color}
    {color:#ff0000}processRequest(request, response);{color}
    {color:#ff0000}}{color}
    {color:#ff0000}}{color}
    +*
    *+
    {color}+{color}*

    Syed_Asad wrote:
    here is the XML :
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <servlet>
    <servlet-name>FirstServlet</servlet-name>
    <servlet-class>FirstServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>FirstServlet</servlet-name>
    <url-pattern>/FirstServlet</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <servlet>
    <servlet-name>FirstServlet</servlet-name>
    <servlet-class>FirstServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>FirstServlet</servlet-name>
    <url-pattern>/FirstServlet</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    </web-app>I'm assuming you accidentally posted your xml file twice. That is, the file should end at the first instance of </web-app>.
    But what I also notice is that you don't appear to be using packages. You need to indicate the fully qualified class name of the servlet as the value of the <servlet-class> element inside the <servlet> tag. And fully qualified class names include packages. It's important when developing web applications to place your class files in packages. It's important generally, but specifically with web app development.
    Edited by: nantucket on Jul 12, 2008 9:16 PM

  • Applet-Servlet , AttributeValues does not work in browser

    I am using Applet on Server, when I 'Run on server' it runs in a browser but statements and code after this statement don't work.
    AttributeValues values = new AttributeValues();
    I get error
    access denied (java.lang.RuntimePermission accessClassInPackage.sun.font)
    Edited by: 902324 on Dec 14, 2011 10:04 AM
    Edited by: 902324 on Dec 14, 2011 10:09 AM

    Hi JackSmith,
    Of course it does work.The only mistake you made is with your Request URI, it should be /examples/snoop9 instead of /examples/servlets/snoop9 which you have used.The Context Path is /examples and the Servlet Path /snoop9 ,so your Request URI should be /examples/snoop9
    Thanks
    Padmanava

  • Using V 9.0.1 it looks like EDIT in the first Drop Down is not working... I wish edit my Preferences ! Thanks...

    I am looking to modify my Preferences because I wish to add a PROXY Website... When I activate Firefox, the initial Window opens, I then click on the Firefox tab on the top left hand corner, the drop list appears but the word EDIT is in italics and is not available for use

    Thanks for the reply Colum. The problem wasn't that though.
    The English links work fine and didn't have the code you mentioned
    either. Note that these .htm files no longer reside inside RH. They
    have been built into a .chm and then the .chm has been decompiled
    for translation.
    I trouble-shot (is that a word?) this all day yesterday and
    found that the problem is due to the source code in the translated
    .htm files not having any line breaks. All the source code is on
    one line (see attached code below). This tends to mess up some of
    the javascripts. In this particular case the javascript function,
    kadovTextPopupinit, won't run because it is commented out due to
    the comment tag, <!--, being on the same line:
    <script type="text/javascript" language=JavaScript1.2>
    <!-- kadovTextPopupInit('a10'); //--></script>
    The solution was is to insert a line break in front of
    kadovTextPopupInit, like this:
    <script type="text/javascript" language=JavaScript1.2>
    <!--
    kadovTextPopupInit('a10');
    //--></script>
    The javascript function then works properly. Now the problem
    is doing that to the 3000+ topics in the translated help project.
    I'm currently writing my own VB tool to do this.
    Attached Code Below:

  • ISE 1.2 Guest First Login time profile not working

    I had create time profile First Login and assign to Guest that generate in sponsor portal but account status is Active instead of Await Initial Login.
    Any suggestion ?

    Check what is the role you have assigned , if ActivatedGuest then account is enabled automatically. Status for these guests displays as "Active" even if the guest has not yet signed on

  • My first Jabber Guest link not working

    So I believe I have everything set up correctly for Jabber Guest, but when I browse to the link I created I either get the Expressway Edge login page, or if I'm logged in to the Exp I get "The requested URL /call/8888 was not found on this server."  Maybe I'm confused on how the domains are supposed to work together, but shouldn't I be able to use the FQDN of the Expressway Edge in my Jabber Guest links?  Thanks!  Mike

    From the Cisco Jabber Guest Server 10.0 Installation and Configuration Guide:
    The Cisco Expressway-E administrator currently uses port 80 and therefore, incoming requests from the Cisco Jabber Guest client to Cisco Expressway-E on port 80 need to be remapped to port 9980 using a firewall (or similar) in front of Cisco Expressway-E.
    The Cisco Expressway-E administrator currently uses port 443 and therefore, incoming requests from the Cisco Jabber Guest client to Cisco Expressway-E on port 443 need to be remapped to port 9443 using a firewall (or similar) in front of Cisco Expressway-E.

  • First time EDL exporting - not working

    I am a longtime Premiere user, but I am exporting an EDL for the first time today. I decided to do a simple test - I put a few .m4v video files into a timeline, made a few random edits with the razor tool, and then exported the timeline as an EDL. When I import the EDL into a new project to test how it did, it knows to put those video tracks into the timeline, but it doesn't make any of the edits that I made. What am I doing wrong?

    1 video track, 2 audio tracks. As for the edits, they just aren't there. Here's a screencap of the original timeline that I am testing with:
    That's three videos in the timeline, with a bunch of cuts made to the first one.
    I then exported an EDL, started a new project, imported the EDL, and it looks like this:
    Notice that it's putting the three videos into the timeline, but none of the cuts that I've made are in there. Basically, it knows what elements to bring in, and that they go into that timeline, but they left out all of the work I did on it.
    By contrast, I exported a "Final Cut Pro XML," imported that into a new project, and it worked perfectly.

  • TS3276 since upgrading to Lion I have had a plethora of problems.  First my mailboxes are not working like they were.  The yahoo mailbox keeps telling me my password is not correct.  Also, when I log on several of my programs (i.e. Neat, iTunes) just pop

    I have two mailboxes.  My Yahoo mailboxe keep telling me I have the wrong password and the mailbox ap keeps popping up.  I believe this is then screwing up my Outlook mailbox which is my work email account.  I had it configured fine and then upgrade to Lion.  Since upgrading my mailboxes are challenging to keep up and running.   Also, when I log in several of my programs autimatically pop up (NEAT, iTunes,etc), kind of like all the ads did when I was using MS.  Any ideas of why this is happening?  Is it a Lion issue?  What can I do to fix?

    Hellow keith5000 ,
    regarding your issue lets see what we can do to solve this issue.
    - have you tried safe boot
    safe boot = starting up the mac with the SHIFT- button.
    - when entering safe mode you will be able to enter and quick change some settings
    now next question do the unwanted aplications still load in safe mode , if so
    go to the Apple icon -> System preferences -> user & groups -> login items (top right on the screen from user & groups window)  now at login items u can close any unwanted aplications by deleting them or unmarking them
    - unwanted aplications will now disapear when starting up your mac os x system
    - next issue should be your authentication , this will be a bit more tricky , lets see
    same category user & groups and u will see your admin account try seeing if u have enabled the admin account right click on your admin account to see information about it and compare it if your info is correct , next see if you have authorized your admin account to write & read.
    if these still don't work , make a test account to see if this problem is user wide or system wide.

  • The conversion of a PDF file into excell put all items into the first column, it did not work

    The product produced an excel , but put all the different column information into column A .

    Try this process:
    In the PDF file that you would like to copy information from:
    1. Go to Tools>Content Editing panel
    2. Click the "Edit Text & Images" button
    3.  Select the information that you would like to copy and draw a selection square.  It should group the information into a selection outlined in blue.
    4. Go to Edit>Copy
    In the PDF file that you would like to paste information into:
    1. Go to Tools>Content Editing panel
    2. Click the "Edit Text & Images" button
    3.  Go to the page that you want to paste your information
    4.  Select the page
    5.  Go to Edit>Paste
    6.  You should now have a selection square that contains the raster information and that you can adjust size by Shift + Click + Dragging the object handle on the corner of the selection square.
    Does this work for you?

  • My first generation Ipad does not work with Keynote.

    The program appears to run normally, but it won't project.  My colleague's identical ipad works with our projector, and my cable works on his ipad.  What is wrong?

    Here are some things to try:
    - Restart the iPad
    - Remove and reinstall Keynote
    - Restore the OS on the iPad
    One of those might fix the problem.
    Regards.

  • Urgent--custom servlet not working with https/gateway of the portal server

    We have created the custom servlet to add some more authentication to the login screen. I have explained detaildely below.
    We have set if password reset change password screen should come by using identity server.
    First screen comes which asks �user id� and �password�.
    after this next screen comes with �old password�, �New Password� and �Confirm Password� (as we have forcefully asked user to change password after reset by using identity server ).
    On this page we have added two new filed �Date of Birth� and �Date of Joining�.
    And we are forcefully transferring request to our Custom Servlet which will validate the �Date of Birth� and �Date of Joining� from the database and submit the same a form as required by Login Servlet to validate the default parameters �old Password�, �New Password� and �Confirm Password� (which is the default validation without adding custom Servlet).
    This whole process is working with �http� protocol and giving �unable to connect� host with �https� protocol.
    Without custom Servlet process is like this, which is working
    Login (usrid, password) � Login (Old Password, New Password, Confirm Password) � Portal home Page
    With custom Servlet , Which is not working with �https� Protocol. we are getting the message "Authentication Failed" screen.
    Login (usrid, password) --> Login (Old Password, New Password, Confirm Password , Date of Birth, Date of Joinig) --> Custom Servlet validate Date of Birth, Date of Joining --> Login (Old password, new Password, Confirm Password) --> Protal Home Page
    This one works with http, whereas this one gives the "Authentication Failed" screen with the https.
    Please let me know if anybody have implemented this and help me to resolve the issue.
    Best Regards
    Ramkumar

    Hi,
    I am also getting this error message in the sun ONE webserver error log file....
    [20/Nov/2004:13:42:39] failure ( 6162): for host 172.16.5.21 trying to GET /amserver/UI/Login, service-j2ee reports:
    StandardWrapperValve[LoginServlet]: WEB2792: Servlet.service() for servlet LoginServlet threw exception
    com.iplanet.jato.CompleteRequestException
    at com.sun.identity.authentication.UI.AuthenticationServletBase.onUncaughtException(AuthenticationServletBase
    .java:141)
    at com.iplanet.jato.ApplicationServletBase.fireUncaughtException(ApplicationServletBase.java:1023)
    at com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:469)
    at com.iplanet.jato.ApplicationServletBase.doPost(ApplicationServletBase.java:324)
    at com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:294)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:771)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:322)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:586)
    Regards
    Ramkumar R

Maybe you are looking for

  • SAP Work Manager customization - adding a new field to equipment details screen (Syclo Agentry)

    Hi Experts, I am trying to add a field (NAME1) on the Equipment details screen under work orders in work manager 5.3 application. I have performed the following steps, but I am getting an error while connecting to the application. 1) Create extension

  • Trying to add revolving Photo Box

    I would like to create a single box or photo frame on a page where I can have several photo's change every couple of seconds within the box or frame. I really don't want to do animated gifs as the photo quality looks terrible. Any help would be great

  • How can I print a page?

    Hi How can I print a page in Firefox for Android? (Edited) ToddeSwe

  • Alot of issues. bad harddrive?

    i have a 30gb 5th gen ipod, and there are many things wrong with it. first it responds very slowly when using it, it will play a few songs, but then it will freeze, the back of it gets very hot, and i hear strange clicking noises coming from it, and

  • ? about keeping files in original order when sending attachments

    Hi there, I have a question about sending attachments. Is it possible for the files/folders to remain in the order that I have originally put them in my documents etc...? When I go to send an attachment it automatically rearranges the folders in alph