Using MicroSoft. XMLHttp in jsp or  java

Hi,
Can anybody tell me is it good to use
MicroSoft. XMLHttp in jsp and java programs for connectint to remote url and sending xml data..(in java script fucntions)
regards,

By default, JSTL variables are kept in servlet
attributes. Default is to store it in the page
context. You can make it request/session/application
scope as required by an attribute of the set tag.Hi there,
Can anyone advise how to access JSP variables in JSTL?
Can it be done as the same method through request/session/application scope?
Thnks...

Similar Messages

  • I'm trying to use Microsoft Livemeeting 2007 - browser and java issues

    My browser and java versions are apparently too new, and I can't seem to figure out how to download and use past versions to properly use the Livemeeting software. I know Livemeeting is outdated software, but this is what the client I'm working with is using, and I need to be able to join web conferences for document viewing/sharing, etc. Any help would be most appreciated, as I've spent hours trying to figure this out, but nothing seems to be working.

    Maybe try this??
    Microsoft Livemeeting 2007 not working
    Otherwise you may want to try posting on the Microsoft Mac forums:  http://answers.microsoft.com/en-us/mac

  • How to generate html-code using csv input with JSP or JAVA???

    Hello,
    I want to read out a .csv-file and generate html-code dynmically with JSP in an EP6 Application. The problem is, that the csv-file can’t be located or openend.
    BTW if every knows a good tutorial or weblog for this, please post the link.
    It’s located in a par-archive under:
    />dist>files
    I tried various methods, in the doContent mehtod or with JSP. Everytime same result.
    Here part of the code I tried in the doContent():
    public class CSV extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
            String strWRoot = request.getWebResourcePath();
            String contentCSV="", line="";
            String linesep = System.getProperty("line.separator");
            File fileLoadCSV = new File(strWRoot+"/files/ma_infosysteme.csv");
            boolean exCSV = fileLoadCSV.exists();
            boolean reCSV = fileLoadCSV.canRead();
            int a=0;
            if(exCSV&&reCSV){
                response.write("ok");
                try {
                  BufferedReader inputCSV = new BufferedReader(new FileReader(fileLoadCSV));
                  while((line=inputCSV.readLine())!=null){
                    contentCSV=contentCSVlinelinesep;
                    a++;
                  inputCSV.close(); 
                catch(IOException ioex){
                    System.out.println("Fehler");  
            else {
                response.write("not ok");
            response.write("<br>Wroot: "+strWRoot);
            response.write("<br>File: "+fileLoadCSV);
            response.write("<br>exists: "+exCSV);
            response.write("<br>read: "+reCSV);
            response.write("<br>Input: "+contentCSV);
    The Output is:
    not ok
    Wroot: /irj/portalapps/DHTML
    File: \irj\portalapps\DHTML\files\ma_infosysteme.csv
    exists: false
    read: false
    Input:
    So thanks to everyone who can give me a good hint.
    Bye.

    Without really looking too much into this it looks like the problem is with the way in which you are trying to open the file. I believe that when creating a File object you need to use a physical path. By using the getWebResourcePath() method you are retrieving the URL to this file and not the physical path name. There is another method (can't remember the exact name) called getPublicResourcePath() (or something similar) which will return the physical path to this file, i.e. c:\usr\sap\.....etc. If you try it this way it may well work
    I hope this helps
    D

  • I want to use data binding in jsp,just like microsoft ASP's RDS,how can I d

    I want to use data binding in jsp,just like microsoft ASP's RDS,how can I do?

    I can't claim to know exactly what RDS binding involves, but if my hunch is correct, you can get very similar behavior by using JSTL and define your data source using JNDI. See the JSTL spec, my article series about JSTL, or a JSP/JSTL book (such as mine ;-) for details:
    http://java.sun.com/products/jsp/jstl
    http://www.onjava.com/pub/a/onjava/2002/08/14/jstl1.html
    http://www.onjava.com/pub/a/onjava/2002/09/11/jstl2.html
    http://www.onjava.com/pub/a/onjava/2002/10/30/jstl3.html
    http://www.thejspbook.com/

  • Is there a way to use bpm object in jsp (java)

    hello
    i could see that the bpm object can be used in jsp with javascript and fuego tag. but is there a way to use bpm object with java code?
    thank you!

    Suppose a Servlet/JSP calls java classes. In the java
    functions of those classes, is there a way to get and
    set attributes with application/session scope
    directly? Thanks.Only by passing a reference to those classes (or by tying in to the framework/container).

  • First use of jsp and java bean and "Unable to compile class for JSP" error

    Hi,
    I am trying to create my first jsp + java bean and I get a basic error (but I have no clue what it depends on exactly). Tomcat seems to cannot find my class file in the path. Maybe it is because I did not create a web.xml file. Did I forgot to put a line in my jsp file to import my bean?
    Thank you very much for your help.
    Here is my error:
    An error occurred at line: 2 in the jsp file: /login.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    /usr/local/tomcat/jakarta-tomcat-5/build/work/Catalina/localhost/test/org/apache/jsp/login_jsp.java:43: cannot resolve symbol
    symbol : class CMBConnect
    location: class org.apache.jsp.login_jsp
    CMBConnect test = null;
    I only have this in my directory:
    test/login.jsp
    test/WEB-INF/classes/CMBConnect.java
    test/WEB-INF/classes/CMBConnect.class
    Do I need to declare another directory in classes to put my class file in it and package my bean differently?
    Here is my login.jsp:
    <%@ page errorPage="error.jsp" %>
    <jsp:useBean id="test" type="CMBConnect" scope="session" />
    <html>
    <head>
    <title>my test</title>
    </head>
    <body>
    <h3>Login information</h3>
    <b><%=session.getValue("customerinfo.message")%></b>
    <form> ....... </form>
    </body>
    </html>
    and here is my CMBConnect.java:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class CMBConnect
    public CMBConnect () { }
    public String openConnection(String id, String password) {
    String returnText = "";
    try {
    Connection con = null;
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = DriverManager.getConnection("jdbc:oracle:thin:@myserver.abc.com:1521:TEST", id, password);
    if(con.isClosed())
    returnText = "Cannot connect to Oracle server using TCP/IP...";
    else
    returnText = "Connection successful";
    } catch (Exception e) { returnText = returnText + e; }
    return returnText;
    Thanks again!

    Thanks for you help
    I created the package and I get this error this time:
    javax.servlet.ServletException: bean test not found within scope
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:822)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:755)
         org.apache.jsp.login_jsp._jspService(login_jsp.java:68)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:268)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:277)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:223)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)

  • Is it possible to use Microsoft's Java Packages in Forte4Java/JBuilder?

    Dear all,
    I am wondering whether it is possible to use those java packages installed by MS Visual J++ in Sun's Forte4Java or Borland's JBuilder? I found one of the java packages of Microsoft -- com.ms.com.* quite useful for calling ActiveX Components in java code and I have succeeded in calling my DLL COM under Visual J++ with the help of com.ms.com.Dispatch. But I have to use Forte4Java to write my Java program, therefore, it will be great if I can still use com.ms.com.* under Forte4Java. Is it possible? If so, how to do it? Please advise and thanks in advance...
    Tracy

    You can use any java package if you just add it to the classpath. In Forte this means adding it to the explorer pane, I am not sure about Builder.
    The problem will be when you try to run it. Any Microsoft class which uses some part of their runtime will require the Microsoft VM. If you have that, and are willing to be permenantly tied to it, then you will be in business.

  • Signature Capture for pocket pc using JSP or JAVA

    hello,
    i need to find a way using jsp or java enviornment in which i can capture the signature which the user has signed on my pocket pc .....??
    please let me know what is the ideal way of doing so and what is the best way to transfer it securely to the server ??
    i am using a pocket pc 2000 on hp jornada 568... so the solution should be supported by pocket pc internet explorer
    thanks in advance & regards, :-))
    Prithipal

    You mean like a hand written signiture right?
    That's awesome, that's a really cool idea. And it's not very hard to implement at all. A java applet will be your best bet. Use version 1.1.8 or something for compatibility. All you have to do make a drawing surface for the user to sign, then send it to the server in one of a varity of ways. I would use a single bit bit map, pixels are on or off.
    For the security end you could have your server run SSL. I don't know if the pocket PC supports that though. If it doesn't, the RSA algorithm is open now, the patent expired, and there are several nice java packages available that implement it. So you can just have the applet read a public key from your server, encrypt the data stream with it as it sends it backs. That will be impossible to crack. ( use at least 64 bit keys. )

  • Is it supported to use Microsoft JDBC driver use in Java 7 (and 8) multithreaded applications?

    Hello everone
    is it supported to use Microsoft JDBC driver (the latest version) with Java 7 multithreaded application?
    I am planning to use standard Java 7 threads library and use separate JDBC objects per each thread, i.e. Java threads will not share any JDBC objects among them, only the thread-safe Java collections/data structures will be shared between threads (such as
    ConcurrentHashMap etc). The JDBC connections, resultsets, statements, etc will be created and dedicated per each individual thread.
    If it is supported - do you expect this design to scale-up well or am I better off using multiple but single-threaded Java/JBDC programs to access SQL Server 2012/2014 from Microsoft JDBC driver?
    Thanks
    Yuri Budilov
    Yuri Budilov Melbourne Australia

    >is it supported to use Microsoft JDBC driver (the latest version) with Java 7 multithreaded application?
    Yes, so long as:
    > Java threads will not share any JDBC objects among them,
    >do you expect this design to scale-up well or am I better off using multiple but single-threaded Java/JBDC programs >to access SQL Server 2012/2014 from Microsoft JDBC driver?
    Using threads should scale better than using processes (at least on Windows), as there is quite a bit of overhead with a process.  Each process has it's own JRE, it's own GC heap, its own threads...
    The bigger question, though, is how this scales on the SQL Server.  Your throughput may be limited by resources on your database server, and the thread's workloads may not be able to run concurrently because of locking. 
    David
    David http://blogs.msdn.com/b/dbrowne/

  • How to use a variable of jsp custom tag in my java code?

    hi folks,
    i got a folderList tag like this:
    ArrayList list = new ArrayList(20);
    %>
    <foo:folderList path="${attributes.newsPath}" var="year" contentType="folder">
    <%
              list.add(${year.contentEntryName});   // of course, this doesn't work
    %>
    </foo:folderList>I think, its clear what I want to do. I am just wondering how I can use my Variable "year" in the Java code between <% %>...

    <% list.add(year.getContentEntryName()); %>
    You have to have defined in the custom tag that "var" relates to a scripting variable that you want defined.
    <tag>
      <variable>
        <name-given>var</name-given>
        <variable-class>myPackage.myClass</variable-class>
        <declare>true</declare>
        <scope>NESTED</scope>
      </variable>
    </tag> Cheers,
    evnafets

  • Reg : I am getting an error while Using MicroSoft ODBC For Oracle Driver

    I am Using MicroSoft ODBC For Oracle Driver  for JDBC. Why i am using this driver is i could not able to get  the arabic content if i use the other driver  .I Right now i cannot change the NLS Lang because its a production server    also it has around 300 gb of data  and i can not take risk now by changing the NLS lang.. coming to the below error .i could able to access my data up to 4 Hours after that i am getting this error.If i restart my tomcat i can use my application  one more 4 hrs  .Please get back to me if u have any solution.Its very very helpful to me......+*
    [java.sql.SQLException] [ Microsoft ODBC for Oracle ]
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:3073)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:3
    23)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:174)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at com.iton.eoffice.DatabaseBean.connecteOfficeMoEnq(DatabaseBean.java:4
    60)
    at org.apache.jsp.MhewProfilesearchMoEnq_jsp._jspService(MhewProfilesear
    chMoEnq_jsp.java:434)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:384)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    20)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at com.iton.eoffice.tree.CharacterEncodingFilter.doFilter(CharacterEncod
    ingFilter.java:63)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:228)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:104)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:109)
    at org.apache.catalina.ha.tcp.ReplicationValve.invoke(ReplicationValve.j
    ava:347)
    at org.apache.catalina.ha.session.JvmRouteBinderValve.invoke(JvmRouteBin
    derValve.java:209)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:212)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ss(Http11Protocol.java:634)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:44
    5)
    at java.lang.Thread.run(Thread.java:619)
    ------------1234-----------
    java.lang.NullPointerException
    at com.iton.eoffice.DatabaseBean.getSQLRows(DatabaseBean.java:764)
    at org.apache.jsp.MhewProfilesearchMoEnq_jsp._jspService(MhewProfilesear
    chMoEnq_jsp.java:435)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:384)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    20)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at com.iton.eoffice.tree.CharacterEncodingFilter.doFilter(CharacterEncod
    ingFilter.java:63)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by sreenivas navuluri:
    Oracle(tm)Client and networking components not found. These components are supplied by Oracle Corporation and part of Oracle Version 7.2 or greater Client software installation. You will be unable to use this driver until these components have been installed . This error occurs while selecting the Microsoft Odbc for Oracle driver from the ODBC in control panel. Pls suggest<HR></BLOCKQUOTE>
    null

  • Problem with JSP and Java Servlet Web Application....

    Hi every body....
    I av developed a web based application with java (jsp and Java Servlets)....
    that was working fine on Lane and Local Host....
    But when i upload on internet with unix package my servlets and Java Beans are not working .....
    also not access database which i developed on My Sql....
    M using cpanel support on web server
    Plz gave me solution...
    Thanx looking forward Adnan

    You need to elaborate "not working" in developer's perspective instead of in user's perspective.

  • Can I use Microsoft Silverlight on my iPad?

    Can I use Microsoft Silverkight on my iPad?

    Can anyone let me know how to open java based web pages or silverlight based webpages in ipad mini. These does not open specially some websites require these to play videos.

  • Firefox 3.6.6 Not Displaying Gmail Contacts & Calendar and at least 1 other website correctly after using Microsoft Windows Easy Transfer

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    In migrating from an XP PC to a new Win 7 PC, I downloaded Firefox to the new PC and it worked fine - got my Gmail contacts, calendar, etc. Later I used Micros Soft's Windows Easy Transfer to move data, profiles, etc to the new PC. Then could log onto Gmail but it would not show Contacts or Calendar. I then uninstalled Firefox and reinstalled it - nohelp, then I did a system to Restore to before I did the Windows Easy Transfer - no help, then I manually moved my Firefox Profile from the XP machine - no help. BTW at least one other website does not display correctly: http://www.hollandamerica.com/main/Main.action. NOTE - through all this Internet Explorer has shown these sites correctly.
    == This happened
    ==
    Every time Firefox opened
    == Used Microsoft Windows Easy Transfer
    ==
    == Troubleshooting information
    ==
    Troubleshooting Information
    This page contains technical information that might be useful when you're
    trying to solve a problem. If you are looking for answers to common questions
    about Firefox, check out our support web site.
    Copy all to clipboard
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Flashblock 1.5.13 true {3d7eb24f-2740-49df-8937-200b1cc08f8a}
    Google Notebook 1.0.0.22 false [email protected]
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    PDF Download 3.0.0.1 false {37E4D8EA-8BDA-4831-8EA1-89053939A250}
    Java Console 6.0.20 true
    McAfee SiteAdvisor 3.0 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days 20
    browser.history_expire_days.mirror 20
    browser.places.importBookmarksHTML false
    browser.places.importDefaults false
    browser.places.leftPaneFolderId -1
    browser.places.migratePostDataAnnotations false
    browser.places.smartBookmarksVersion 2
    browser.places.updateRecentTagsUri false
    browser.startup.homepage https://mail.google.com/mail/?shva=1#contacts
    browser.startup.homepage_override.mstone rv:1.9.2.3
    browser.tabs.loadInBackground false
    dom.disable_window_move_resize true
    dom.event.contextmenu.enabled false
    extensions.lastAppVersion 3.6.3
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    network.cookie.lifetimePolicy 1
    network.cookie.prefsMigrated true
    network.image.imageBehavior 0
    places.last_vacuum 1273287748
    print.print_printer HP Photosmart C7100 series
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgcolor false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgimages false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_command
    print.printer_HP_OfficeJet_Pro_1170Cse.print_downloadfonts false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_evenpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerleft &PT
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerright &D
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerleft &T
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerright &U
    print.printer_HP_OfficeJet_Pro_1170Cse.print_in_color true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_bottom 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_left 0.5
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_right 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_top 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_oddpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_orientation 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_pagedelay 500
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_data 1
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_height 11.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size 1634485807
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_type 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_unit 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_width 8.50
    print.printer_HP_OfficeJet_Pro_1170Cse.print_printer HP OfficeJet Pro 1170Cse
    print.printer_HP_OfficeJet_Pro_1170Cse.print_reversed false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_scaling 1.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_shrink_to_fit true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_bgcolor false
    print.printer_HP_Photosmart_C7100_series.print_bgimages false
    print.printer_HP_Photosmart_C7100_series.print_command
    print.printer_HP_Photosmart_C7100_series.print_downloadfonts false
    print.printer_HP_Photosmart_C7100_series.print_edge_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_edge_left 0
    print.printer_HP_Photosmart_C7100_series.print_edge_right 0
    print.printer_HP_Photosmart_C7100_series.print_edge_top 0
    print.printer_HP_Photosmart_C7100_series.print_evenpages true
    print.printer_HP_Photosmart_C7100_series.print_footercenter
    print.printer_HP_Photosmart_C7100_series.print_footerleft &PT
    print.printer_HP_Photosmart_C7100_series.print_footerright &D
    print.printer_HP_Photosmart_C7100_series.print_headercenter
    print.printer_HP_Photosmart_C7100_series.print_headerleft &T
    print.printer_HP_Photosmart_C7100_series.print_headerright &U
    print.printer_HP_Photosmart_C7100_series.print_in_color true
    print.printer_HP_Photosmart_C7100_series.print_margin_bottom 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_left 0.5
    print.printer_HP_Photosmart_C7100_series.print_margin_right 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_top 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_oddpages true
    print.printer_HP_Photosmart_C7100_series.print_orientation 0
    print.printer_HP_Photosmart_C7100_series.print_pagedelay 500
    print.printer_HP_Photosmart_C7100_series.print_paper_data 1
    print.printer_HP_Photosmart_C7100_series.print_paper_height 11.00
    print.printer_HP_Photosmart_C7100_series.print_paper_size 1634485807
    print.printer_HP_Photosmart_C7100_series.print_paper_size_type 0
    print.printer_HP_Photosmart_C7100_series.print_paper_size_unit 0
    print.printer_HP_Photosmart_C7100_series.print_paper_width 8.50
    print.printer_HP_Photosmart_C7100_series.print_reversed false
    print.printer_HP_Photosmart_C7100_series.print_scaling 0.80
    print.printer_HP_Photosmart_C7100_series.print_shrink_to_fit false
    print.printer_HP_Photosmart_C7100_series.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_left 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_right 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_top 0
    print.printer_hp_psc_1200_series.print_bgcolor false
    print.printer_hp_psc_1200_series.print_bgimages false
    print.printer_hp_psc_1200_series.print_command
    print.printer_hp_psc_1200_series.print_downloadfonts false
    print.printer_hp_psc_1200_series.print_evenpages true
    print.printer_hp_psc_1200_series.print_footercenter
    print.printer_hp_psc_1200_series.print_footerleft &PT
    print.printer_hp_psc_1200_series.print_footerright &D
    print.printer_hp_psc_1200_series.print_headercenter
    print.printer_hp_psc_1200_series.print_headerleft &T
    print.printer_hp_psc_1200_series.print_headerright &U
    print.printer_hp_psc_1200_series.print_in_color true
    print.printer_hp_psc_1200_series.print_margin_bottom 0.3
    print.printer_hp_psc_1200_series.print_margin_left 0.5
    print.printer_hp_psc_1200_series.print_margin_right 0.3
    print.printer_hp_psc_1200_series.print_margin_top 0.3
    print.printer_hp_psc_1200_series.print_oddpages true
    print.printer_hp_psc_1200_series.print_orientation 0
    print.printer_hp_psc_1200_series.print_pagedelay 500
    print.printer_hp_psc_1200_series.print_paper_data 1
    print.printer_hp_psc_1200_series.print_paper_height 11.00
    print.printer_hp_psc_1200_series.print_paper_size 1634485807
    print.printer_hp_psc_1200_series.print_paper_size_type 0
    print.printer_hp_psc_1200_series.print_paper_size_unit 0
    print.printer_hp_psc_1200_series.print_paper_width 8.50
    print.printer_hp_psc_1200_series.print_reversed false
    print.printer_hp_psc_1200_series.print_scaling 1.00
    print.printer_hp_psc_1200_series.print_shrink_to_fit true
    print.printer_hp_psc_1200_series.print_to_file false
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.downloads false
    privacy.clearOnShutdown.formdata false
    privacy.clearOnShutdown.history false
    privacy.clearOnShutdown.passwords true
    privacy.cpd.cookies false
    privacy.cpd.downloads false
    privacy.cpd.formdata false
    privacy.cpd.history false
    privacy.item.downloads false
    privacy.item.formdata false
    privacy.item.history false
    privacy.item.passwords true
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.promptOnSanitize false
    privacy.sanitize.sanitizeOnShutdown true
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Default Plug-in
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Shockwave Flash 10.0 r45
    *McAfee Virtual Technician plugin for Mozilla (Gecko Version: 1.8b1)
    *3.0.50106.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Adobe PDF Plug-In For Firefox and Netscape

    Oops - for some reason, this problem now seems to have gone away. May have had something to do with Flash. I'll keep my fingers crossed.

  • Problem using a bean in JSP on Tomcat 5.0.28

    Hi,
    I'm new to JSP, I've installed Tomcat 5.0.28 and I'm able to run JSP but when I try an asp wich uses a bean it gives me this error, the directory structure is
    testingProject with the first.jsp
    testingProject\WEB-INF\classes\myPackage with the test.class
    the first.asp
    <%@ page import="myPackage.Test" %>
    <html><head><title>Test</title></head>
    <body bgcolor=white>
    <jsp:useBean id="list" class="myPackage.Test"> </jsp:useBean>
    <jsp:getProperty name="list" property="value1" />
    <%=list.value1%>
    <p>
    </body></html>
    the Test.java
    package myPackage;
    public class Test{
    String value1="testinggggggggg";
    public void Test(){
    public String getValue1(){ return value1}
    the error
    thanks in advance
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 6 in the jsp file: /first.jsp
    Generated servlet error:
    C:\Program Files\Apache Group\Tomcat 5.0\work\Catalina\localhost\testingProject\org\apache\jsp\first_jsp.java:60: cannot resolve symbol
    symbol : variable value1
    location: class myPackage.Test
    out.print(list.value1);
    ^
    1 error
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:332)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:412)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)

    There are two ways of getting info from the bean.
    1) the jsp:getProperty tag, which seems correct in your code
    2) the <%= ... tag. In that case you must write a valid java expression. In your case: list.getValue1()

Maybe you are looking for

  • How to change an icon of a button

    hi guys, i want to change the icon of a button when it is click how can i do it? thanks

  • Networkinfo.ane does not support iOS 64bit?

    I get the following error when packaging using AIR SDK 16.0.0.272. I used com.adobe.extension.Networkinfo.ane to check the network state. When is Networkinfo.ane updated? Anyone who knows?

  • File to rfc (file has multiple records)

    Hi Guys, I have a filr to rfc scenario.. I created a Z table with ITAB in import tab and field names and then a BAPi using se37... The BAPI source code is just one line Modify Ztable from ITAB I first tried wth input file having one record, and in sc

  • Iphoto sending photo per email with entourage

    dear all, since when I updated online the mac applications (all of them), I can't choose anymore Entourage for sending photos per email from iphoto: the only choice I get is Mail (that I do not use). I have already disselected Mail as preferred appli

  • Audio "unmuting" when project exported

    I spent ages cutting together a series of over 30 video clips. I muted each of them in order to put in a voiceover. Everything is fine in iMovie, but when I export the file to YouTube or just to my computer, files become "unmuted." Oddly enough, the