Trying to call a data bean from jsp

          I get the following error:
          C:\bea\user_projects\infologic1\.\myserver\.wlnotdelete\extract\myserver_BibleApp_BibleApp\jsp_servlet\__menu.java:146:
          cannot resolve symbol
          probably occurred due to an error in /menu.jsp line 27:
          Enumeration.categoryIds = categories.keys();
          code:
          menu.jsp
          <%@page import="java.util.*"%>
          <jsp:useBean id="DbBean" scope="application" class="showMeItNow.DbBean"/>
          <%
          String base = (String) application.getAttribute("base");
          %>
          <table width="150" cellpadding="5" height="75" cellspacing="0" border="0">
          <tr>
          <td>
          <form>
          <input type="hidden" name="action" value="search">
          <input type="text" name="keyword" size="10">
          <input type="submit" value="go">
          </form>
          </td>
          </tr>
          <tr>
          <td>category</td>
          </tr>
          <tr>
          <tr valign="top">
          <%
          Hashtable categories = DbBean.getCategories();
          Enumeration.categoryIds = categories.keys();
          while (categoryIds.hasMoreElements()) {
          Object categoryId = categoryIds.nextElement();
          out.println("<a href=" + base + "? action=browseCatalog&categoryId="
          + categoryId.toString() + ">" + categories.get(categoryId) + "</a><br>");
          %>
          web.xml
          <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
          "http://java.sun.com/dtd/web-app_2_3.dtd">
          <web-app>
               <servlet>
                    <servlet-name>ControllerServlet</servlet-name>
                    <servlet-class>ControllerServlet</servlet-class>
          <init-param>
               <param-name>base</param-name>
               <param-value>http://localhost:7001/BibleApp/</param-value>
          </init-param>
          <init-param>
               <param-name>imageURL</param-name>
               <param-value>http://localhost:7001/BibleApp/</param-value>
          </init-param>
          <init-param>
               <param-name>dbURL</param-name>
               <param-value>jdbc:weblogic:mssqlserver4:users@COMPAQSERVER</param-value>
          </init-param>
          <init-param>
               <param-name>usernameDbConn</param-name>
               <param-value>dinesh</param-value>
          </init-param>
          <init-param>
               <param-name>passwordDbConn</param-name>
               <param-value>passs</param-value>
          </init-param>
          </servlet>
          </web-app>
          DbBean.class
          package showMeItNow;
          import java.util.*;
          import java.sql.*;
          import showMeItNow.Poll;
          public class DbBean {
          public String dbUrl="";
          public String dbUserName="";
          public String dbPassword="";
          public void setDbUrl(String url) {
          dbUrl=url;
          public void setDbUserName(String userName) {
          dbUserName=userName;
          public void setDbPassword(String password) {
          dbPassword=password;
          public Hashtable getCategories() {
          Hashtable categories = new Hashtable();
          try
          Connection connection = DriverManager.getConnection(dbUrl, dbUserName,
          dbPassword);
          CallableStatement cstmt = connection.prepareCall("{? = call dbo.categoryListing()}");
          //register the stored procedure's output paramater!!!
          cstmt.registerOutParameter(1, java.sql.Types.VARCHAR);
          cstmt.registerOutParameter(2, java.sql.Types.VARCHAR);
          ResultSet rs = cstmt.executeQuery();
          while (rs.next()) {
          categories.put(rs.getString(1), rs.getString(2) );
          rs.close();
          cstmt.close();
          connection.close();
          catch (SQLException e) {  }
          return categories;
          

You might want to look at whether there is any data being fetched from
          the DB. Use some System.out.println()'s in the code where you fetch the
          data from the stored proc.
          Another way might be to comment out the database code, add some dummy
          values into the hastable and make sure that the page comes up as you
          expect.. and then go ahead with the database thingy..
          Nagesh
          dinesh wrote:
          > Thanks, the page is loading up. But, it is just blank. It is not displaying the
          > hastable data. Any ideas?
          >
          > thanks again,
          > Dinesh
          >
          > Nagesh Susarla <[email protected]> wrote:
          >
          >>>Enumeration.categoryIds = categories.keys();
          >>
          >>try replacing the dot '.' with a space and it should be all fine ..
          >>maybe a typo.
          >>
          >>Enumeration categoryIds = categories.keys();
          >>
          >>--
          >>Nagesh
          >>
          >>
          >>dinesh prasad wrote:
          >>
          >>>I get the following error:
          >>>
          >>>C:\bea\user_projects\infologic1\.\myserver\.wlnotdelete\extract\myserver_BibleApp_BibleApp\jsp_servlet\__menu.java:146:
          >>>cannot resolve symbol
          >>>probably occurred due to an error in /menu.jsp line 27:
          >>>Enumeration.categoryIds = categories.keys();
          >>>
          >>>
          >>>code:
          >>>
          >>>menu.jsp
          >>>----------
          >>><%@page import="java.util.*"%>
          >>><jsp:useBean id="DbBean" scope="application" class="showMeItNow.DbBean"/>
          >>>
          >>><%
          >>> String base = (String) application.getAttribute("base");
          >>> %>
          >>>
          >>>
          >>><table width="150" cellpadding="5" height="75" cellspacing="0" border="0">
          >>><tr>
          >>><td>
          >>><form>
          >>><input type="hidden" name="action" value="search">
          >>><input type="text" name="keyword" size="10">
          >>><input type="submit" value="go">
          >>></form>
          >>></td>
          >>></tr>
          >>><tr>
          >>><td>category</td>
          >>></tr>
          >>><tr>
          >>><tr valign="top">
          >>>
          >>> <%
          >>> Hashtable categories = DbBean.getCategories();
          >>> Enumeration.categoryIds = categories.keys();
          >>> while (categoryIds.hasMoreElements()) {
          >>> Object categoryId = categoryIds.nextElement();
          >>> out.println("<a href=" + base + "? action=browseCatalog&categoryId="
          >>>+ categoryId.toString() + ">" + categories.get(categoryId) + "</a><br>");
          >>>}
          >>>
          >>> %>
          >>>-------------------------------------------------------------------------------------
          >>>
          >>>web.xml
          >>><!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
          >>
          >>2.3//EN"
          >>
          >>>"http://java.sun.com/dtd/web-app_2_3.dtd">
          >>>
          >>><web-app>
          >>>     <servlet>
          >>>          <servlet-name>ControllerServlet</servlet-name>
          >>>          <servlet-class>ControllerServlet</servlet-class>
          >>>     
          >>><init-param>
          >>>     <param-name>base</param-name>
          >>>     <param-value>http://localhost:7001/BibleApp/</param-value>
          >>></init-param>
          >>>
          >>><init-param>
          >>>     <param-name>imageURL</param-name>
          >>>     <param-value>http://localhost:7001/BibleApp/</param-value>
          >>></init-param>
          >>><init-param>
          >>>     <param-name>dbURL</param-name>
          >>>     <param-value>jdbc:weblogic:mssqlserver4:users@COMPAQSERVER</param-value>
          >>
          >>></init-param>
          >>><init-param>
          >>>     <param-name>usernameDbConn</param-name>
          >>>     <param-value>dinesh</param-value>
          >>></init-param>
          >>><init-param>
          >>>     <param-name>passwordDbConn</param-name>
          >>>     <param-value>passs</param-value>
          >>></init-param>
          >>> </servlet>
          >>></web-app>
          >>>     
          >>>          
          >>>-----------------------------------------------------------------------
          >>>DbBean.class
          >>>
          >>>package showMeItNow;
          >>>
          >>>import java.util.*;
          >>>import java.sql.*;
          >>>import showMeItNow.Poll;
          >>>
          >>>public class DbBean {
          >>> public String dbUrl="";
          >>> public String dbUserName="";
          >>> public String dbPassword="";
          >>>
          >>> public void setDbUrl(String url) {
          >>> dbUrl=url;
          >>> }
          >>>
          >>> public void setDbUserName(String userName) {
          >>> dbUserName=userName;
          >>> }
          >>>
          >>> public void setDbPassword(String password) {
          >>> dbPassword=password;
          >>> }
          >>>
          >>> public Hashtable getCategories() {
          >>> Hashtable categories = new Hashtable();
          >>> try
          >>> {
          >>> Connection connection = DriverManager.getConnection(dbUrl,
          >>
          >>dbUserName,
          >>
          >>>dbPassword);
          >>>
          >>> CallableStatement cstmt = connection.prepareCall("{?
          >>
          >>= call dbo.categoryListing()}");
          >>
          >>> //register the stored procedure's output paramater!!!
          >>> cstmt.registerOutParameter(1, java.sql.Types.VARCHAR);
          >>> cstmt.registerOutParameter(2, java.sql.Types.VARCHAR);
          >>> ResultSet rs = cstmt.executeQuery();
          >>> while (rs.next()) {
          >>> categories.put(rs.getString(1), rs.getString(2) );
          >>> }
          >>> rs.close();
          >>> cstmt.close();
          >>> connection.close();
          >>> }
          >>> catch (SQLException e) {  }
          >>> return categories;
          >>> }
          >>>
          >>>}
          >>>
          >>>
          >>>
          >>
          >
          

Similar Messages

  • How to call a simple bean from jsp in weblgic 6.1

    Hi All,
    Can any one help me , my problem is i have a jsp that is calling a simple bean method for displaying a message .
    When im trying to call the beans methods it conntinusly giving me error unable to resolve the Beans' name
    my jsp content is:
    <%@ page language="java" import="com.Arvind*"%>
    <jsp:useBean id="mybean" scope="session" class="com.Arvind" />
    <%
         out.println("Hello"+mybean.callMe());
    %>
    beans is :-
    package com;
    public class Arvind
         private String st ="This Is Me??";
         public String callMe(){
              System.out.println("Hello World!");
              return st;
         public static void main(String[] args)
              System.out.println("Hello World!");
    i have tried it a lot but all time it fails resolve the class name itself ??
    can anyone please help me urgently
    thanks in advance
    rgds
    Birendar

    It might compile perfectly well, but the message suggests that you didn't deploy it properly. The class loader can't find it.
    That .class file should appear with its package directory structure under the WEB-INF/classes directory or in a JAR in your WEB-INF/lib directory in some WAR file. Does it?

  • Trying to call stateless session bean from MDB

    Folks,
    Am working on RAD and WAS 8.
    I have an MDB. And a stateless session bean (AOBean under EJB project).
    While the listener listens to the messages from queue, it also tries to persist to db. I want to achieve this via a method of AOBean (through instantiating session bean or by injection).
    I have been sucessful by invoking a method from AOBean class -  that method just returns a string (without any objects being passed)
    Problem:
    I am getting IllegalStateException when I try to invoke a method of AOBean class, that has an object as a parameter
    For eg:
    MDB
    @EJB(name="ejb/TransactionMgrAOBean", mappedName="ejb/TransactionMgrAOBean")
    ITransactionMgrAO tranAO;
        public void onMessage(Message message) {
         TextMessage textMessage = (TextMessage) message;
         boolean status = false;
      try {
       TransactionVO tranVO =  getTransactionVO();//Here building the object to be passed to session bean
       String status1  = tranAO.getVersion(tranVO);
      }catch(Exception e){
    AOBean
    @Stateless
    @Remote({ ITransactionMgrAO.class })
    @WebService
    public class TransactionMgrAOBean {
    public String getVersion(TransactionVO tranVO) throws Exception{
      try{
    //business logic 
      } catch(Exception e){
      throw e;
      return true;
    TransactionVO implements Serializable has also inner static classes that are not Serializable.
    EXCEPTION: At runtime we are getting exception saying that the inner classes are not serialized.
    REASON why we are invoking session bean from MDB? We found that if we invoke any service from AOBean the transaction management was successful. We are using sessionContext.setRollBackonly when an exception occurs. Tranasactions are not rolled back when any db exception occurs if we invoke business logic methods from Model layer of another NON-EJB package.
    Hope I have provided enough information!

    My concret problem is that I want to call an ejb session contained in an ejb project from a session bean in a different web project. When I include the code in my web session bean I get the error adjunted:
    - Code:
    @EJB
    private UserRemote userSessionBean;
    - Error:
    Exception Details: javax.naming.NameNotFoundException
    pac.UserRemote#pac.UserRemote not found
    Possible Source of Error:
    Class Name: com.sun.enterprise.naming.TransientContext
    File Name: TransientContext.java
    Method Name: doLookup
    Line Number: 216
    Any suggestion?

  • How to call java bean from jsp

    hi
    How to call a java bean from jsp page..
    Is any other way to call javabean from jsp page apart from this sample code...
    <jsp:useBean id="obj" class="com.devsphere.articles.calltag.TestBean"/>
    thnx in advance

    If you also use servlets, you can attach beans to the request or session and use them directly in your JSP's. So if you do:
    request.setAttribute("name", yourBean);and then forward to a JSP, you can reference the bean like:
    ${requestScope.name}

  • Calling (VB)activex object from JSP

    Hi,
    I am trying to call a ActiveX object from JSP using the ActiveXObject method in javascript. I have a dll filed named LPMSFunctions.dll which is registered and is being passed as an argument to the ActiveXObject method. Below is the code i am trying to execute..
    <html>
    <head>
    <title>Script Example</title>
    </head>
    <body>
    <br><br>
    <P align="center">
    <form action="" method="post">
    <script language="JavaScript">
    function comEventOccured()
    try{
    var myobject;
    myobject = new ActiveXObject("LPMSFunctions72.LPFunctions72");
    alert("Inside LPMSFunction72");
    alert(myobject.GetDocPath());
    catch(e)
    alert("Error");
    </script>
    </form>
    </body>
    </html>When i write the above code and save it as an html file it works fine..the activex object is created and the methods are called , but when i copy the same code to a file and save it as jsp file under webapps folder under tomcat it doesnt work and reports a javascript error with the error being:
    Automation server cant create the object at line :
    var SSOObj = new ActiveXObject("LPMSFunctions72.LPFunctions72");
    Please suggest how can I solve the problem. Your help would be sincerely appreciated.
    Thanks
    shravan

    You want to use the Variant to Data node, wiring in an ActiveX constant configured to the interface type you want.
    Brian Tyler
    http://detritus.blogs.com/lycangeek

  • Error Calling ODI Data Service from BPEL

    Hi all,
    I'm trying to call ODI data services from BPEL, but this error comes up:
    <messages>
    -<input>
    -<Invoke_1_addSrcCustomer_InputVariable_1>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="part1">
    <SrcCustomer xmlns="test/WSSrcCustomer/schema"/>
    </part>
    </Invoke_1_addSrcCustomer_InputVariable_1>
    </input>
    -<fault>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>[email protected]6 : Could not find binding output for operation addSrcCustomer
    </summary>
    </part>
    </bindingFault>
    </fault>
    </messages>
    A WSSrcCustomer WSDL has been successfully deployed and the addSrcCustomer operation is chosen. Also, I'm using the following input as XML flagment:
    <ns2:SrcCustomer xmlns:ns2="http://www.w3.org/2001/XMLSchema/" xmlns="test/WSSrcCustomer/schema/">
    <CUSTID>999</CUSTID>
    <TITLE>0</TITLE>
    <LAST_NAME>lastname</LAST_NAME>
    <FIRST_NAME>firstname</FIRST_NAME>
    <ADDRESS>myaddress</ADDRESS>
    <CITY_ID>23</CITY_ID>
    <PHONE>123456789</PHONE>
    <AGE>33</AGE>
    <SALES_PERS_ID>11</SALES_PERS_ID>
    </ns2:SrcCustomer>
    Regards

    Hello,
    Can you call the same WS from ODI (through a data server test)?
    I think you should post the WSDL file generated by the data service to the BPEL Forum.
    There must be something BPEL does not like in the WSDL.
    -FX

  • Create Form Beans from JSP/HTML forms

    In the Builder certification objectives, there is one called "Create Form Beans from JSP/HTML forms". How can I do that? How can I create a form beam starting from the JSP form or HTML form?

    Guys, no one from forum can answer this question?

  • Calling Beans from JSP page

    hi,
    I tried to my best to call java beans from JSP page but it generate error that "unable to load class....", please help me that in which directory jsp file and bean *.class file reside, currently my setting are as follows.
    Note: I am using tomcat server and my jsp and servlet files are running seccessfuly, there is any special change in classpath for java beans? if any please tell
    My jsp file is in tomcat-->webapps-->jsp--><my file>
    My bean (*.class) file-->webapps-->Root-->web-inf-->classes--><my file>
    Pleae help me for the above problem.
    Mubashar ([email protected])

    According to J2EE standards:
    The web appl directory structure should be:
    WebAppRootDirectory
    |
    |---html, jsp, images etc
    |
    |---WEB-INF---
    |---classes--
    |---lib
    |
    |
    1) Make sure WEB-INF is in capital letters
    2) Place all ur beans in classes dir or sub-directory in
    classes
    3) In Tomcat place WebAppRootDirectory in webapps
    directory
    [email protected]

  • How to call Java Beans from JSP (eg.put them in a WAR or package)

    Can anyone explain to me what are the steps and ways to call java beans from JSP?

    1st, put the javabean classes in the right place:
    the web-inf/classes/your_bean.class directory of corresponding web application
    2nd in your jsp page:
    <jsp:useBean id="obj_var_name" class="your_bean"/>
    <jsp:setProperty name="obj_var_name" property="smthg" value="smthg_calue"/>
    Micheal

  • Calling my Java class from JSP page

    Hello, I am trying to call my Java class from my JSP page passing parameters to it and getting back a collection of result sets. Can someone tell me what I might be doing wrong:
    JSP code to call Java class:
    <%
    String strEssUser = "test";
    String strProcessingMonth = "JUL";
    String strProcessingYear = "2002";
    strQueryList=new ListReturn(strEssUser.toString(), strProcessingMonth.toString(), strProcessingYear.toString());
    %>
    I get this error when I try to run this JSP page using tomcat:
    C:\Program Files\Apache Tomcat 4.0\work\Standalone\localhost\em\jsp\Test_0005fSummarySBU_0005fscreen$jsp.java:77: Class org.apache.jsp.ListReturn not found.
    strQueryList=new ListReturn(strEssUser.toString(), strProcessingMonth.toString(), strProcessingYear.toString());
    I'm not sure if this problem is the way I am calling the Java class, or if I have a problem in the Java code itself. Can anyone help?

    Ok, I get a very strange error now:
    org.apache.jasper.JasperException: Unable to compile class for JSPerror: An error has occurred in the compiler; please file a bug report (http://java.sun.com/cgi-bin/bugreport.cgi).
    What is this??? Anyone?

  • Calling custom OAF page from JSP page in Oracle apps

    Hi,
    I am working on a requirement to call a Custom OAF page from a JSP page in Oracle apps 11.5.10.
    I have registered the OAF page and defined a function for it. When we call this OAF page from JSP (without parameter), the page opens up
    URL: http://APPSURL:8020/OA_HTML/RF.jsp?function_id=27221&resp_id=50312&resp_appl_id=515&security_group_id=0&lang_code=US
    but as soon as I am trying to pass a parameter sr_id in the URL:
    http://APPSURL:8020/OA_HTML/RF.jsp?function_id=27221&resp_id=50312&resp_appl_id=515&security_group_id=0&lang_code=US&sr_id=106
    we are getting following error:
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed.
    Please let me know if someone has faced the same problem...
    Thanks!!!

    Hi,
    Before calling a OAF page..from external JSP page...u need to set certain mandatory parameter like transaction Id and context.
    Regards,
    Gyan

  • Calling a session bean from another bean

    Hi,
    Using weblogic server 6.1, I am trying to call a session bean, B, from a session bean A.
    After importing B's package, I have added the following code to A's implementation:
    try {
    Properties h = new Properties(); h.putContext.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    h.put(Context.PROVIDER_URL, "t3://localhost:7001" );
    Context ctx = new InitialContext(h);
    Object tempHome = ctx.lookup(JNDI Name of B);
    BHome home;
    home = (BHome)javax.rmi.PortableRemoteObject.narrow(tempHome, BHome.class);
    catch(Exception e){...}
    I can compile the code successfully but when I run it,I get an error saying:"java.lang.NoClassDefFoundError: B.BHome"
    Can someone please tell me where I am going wrong?
    Thanks in advance,
    Fauzia

    I haven't used that web server but I have had the same kind of problem with ours.
    My guess is that you are compiling this in an environment where the home class is in the classpath. When you run it, though, this class cannot be resolved. Usually we have this problem when the class that is trying to get the bean is unable to find the remote jar.

  • Calling abap rfc FM from jsp programming

    hi friends,
        I am having a requirement to call abap function module from jsp page. can any one help me please?
    thanks
    Medoyi C

    Hi Medoyi,
    Please follow the below steps
    1. Are you using NWDS or any other IDE? Create your Web Project.
    2. In any of the case download JCO3.0 jar files and add to these librarries to you IDE.
    3. Create a connection class in write a code here and you should have host, port and userid/password of the ECC system from where you are calling your RFC.
    4. After making a connection then write a code to pass import parameters and execute.
    5. After execution of RFC you will get export parameter, table or structure.
    6. Display this data now as a respose.
    Please reply back if any more information is required.
    Thanks,
    Hamendra

  • How to call java script function from JSP ?

    how to call java script function from JSP ?

    i have function created by java script lets say x and i want to call this function from jsp scriplet tag which is at the same page ..thanks

  • [Tomcat bug?] Calling response.sendError(404) from JSP

    Calling "response.sendError(404);" from JSP context causes Tomcat to mangle all non-latin characters.
    Any ideas why?
    How to recreate bug:
    http://www.kitoy.ru/int/bug1.zip
    There are 3 files in bug1.zip.
    index..jsp:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@page pageEncoding="utf-8"%>
    <%@page contentType="text/html; charset=utf-8"%>
    <%
        response.sendError(404);
    %>
    <html>
    </html>404.jsp:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@page pageEncoding="utf-8"%>
    <%@page contentType="text/html; charset=utf-8"%>
    <html>
    <h1>Hello in Russian: &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;!</h1>
    </html>and WEB-INF\web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app 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"
        version="2.4">
        <display-name>bug1</display-name>
        <description>bug1</description>
        <distributable/>
        <error-page>
            <error-code>404</error-code>
            <location>/404.jsp</location>
        </error-page>
    </web-app>Calling of index.jsp should cause 404 error with custom error page. The error page is utf-8 encoded and contains russian characters. That's by design.
    In fact, Tomcat shows ?????? instead Russian variant of "Hello".
    Tomcat/5.5.17 or Tomcat/5.0.28.- it does not matter.
    Is it Tomcat bug or I should not call response.sendError(404) from JSP?

    it's not a tomcat bug, it's rather a problem with
    your code.
    change index.jsp like the following then test
    it !
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@page pageEncoding="utf-8"%>
    <%@page contentType="text/html; charset=utf-8"%>
    <%
    esponse.sendRedirect("blablablablablabla.html");
    %>
    <html>
    </html>
    Thanks for the insight. But the issue here is with the response.sendError() method.

Maybe you are looking for

  • BIA and process chain

    Hi Gurus Would you please advise the steps I have to follow on BW side to make BIA starts working? Can I use process chain to include the functionality of BIA? Also as I know we have to create one Index per cube for BIA. Do we need to fill them manua

  • Can somebody recommend a cheap USB webcam that works on 2011 iMac running lion?

    I'm a drummer who sometimes posts videos on YouTube. Sometimes I want an overhead shot of the drums and it isn't practical or safe to hang my iMac 21.5" over my head to shoot the video with the built in camera haha! I tried an old microsoft lifecam a

  • Query not giving any result

    SQL> set long 2000 SQL> select * from v$version; select username from dba_users where username like '%KRO%'; BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi PL/SQL Release 10.2.0.4.0 - Production CORE 10.2.0.4.0 Production TNS

  • Run Batch OCR Without Changing File Modification Date

    I'm running Acrobat X Pro (as part of CS6) and would like to batch OCR all of the PDFs on my PC (probably over 1,000 files) without changing the "modify" date of the files (otherwise they will all change to the date of the OCR, which will make it mor

  • Cannot see photos on device

    I'm very new to blackberry, When I take a photo nothing shows in the camera pictures folder in media! Yet the number of photos I am able to take decreases! I do not have an sd card installed just using the phones memory. Thanks in advance Dave Solved