TomCat SQLJ JSP

I have small test JSP to use SQLJ. Using JDeveloper works fine with embedded OC4J. But when deployed to TomCat 5 fails with the below error. I copied translator.jar and runtime12.jar from C:\oracle\ora92\sqlj\lib to C:\Tomcat\common\lib but still fails. Any ideas greatly appretiated!
Error:
org.apache.jasper.JasperException: /sqlj1.jsp(7,0) Page directive: invalid language attribute
My page directive that caused error:
page language="sqlj"
import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracle"

behzadku, i never worked with Tomcat 3.0 (have you considered updating?), but i have worked with Tomcat 3.2.3 and i'm currently using 4.0.1. Reloading always worked fine for JavaServer Pages. As dhchau mentioned, what could happen is that your browser cache the pages. Try your browsers reload button and make sure that you copy your new pages to the right destination.
It's a different thing for classes and libs. You have to configure your context container to make Tomcat reload them automatically.
HTH, Markus

Similar Messages

  • Tomcat servlet/JSP container default files on 10gAS(10.1.2.0.2)

    Hi Friends,
    I am using Oracle Application Server 10g (10.1.2.0.2) on windows
    I have the Vulnerability: Apache Tomcat servlet/JSP container default files.
    and the fix is Review the files and delete those that are not needed.
    i would like to know the location of the files to review and delete.Please suggest?
    Regards,
    DB

    Apache/Tomcat is not related to OAS, where did you get this info? OAS is based in a Orion Web Server and Apache HTTP Server, not Tomcat.
    For this kind of problems there are the CPU you may want to check in Metalink for them.
    Can you clarify also what default files?
    Greetings.

  • Need help with Tomcat and JSP

    Hi
    I'm a complete beginner with JSP, I have experience with Java, Dreamweaver and HTML, but I'm having alot difficulty understanding JSP.
    I tried doing out some of the tutorial examples but they don't seem to come out right on the browser.
    For Example the Code for Date
    <HTML>
    <BODY>
    <%
    // This is a scriptlet. Notice that the "date"
    // variable we declare here is available in the
    // embedded expression later on.
    System.out.println( "Evaluating date now" );
    java.util.Date date = new java.util.Date();
    %>
    Hello! The time is now <%= date %>
    </BODY>
    </HTML>
    Comes out as
    <% // This is a scriptlet. Notice that the "date" // variable we declare here is available in the // embedded expression later on. System.out.println( "Evaluating date now" ); java.util.Date date = new java.util.Date(); %> Hello! The time is now <%= date %>
    I know this probably really sounds like a stupid question but what could be the problem?

    Those it have to saved on the desktop, or in the Tomcat webapps folder or what?It has to be in a web application under tomcat. The easiest one to get up and running with basic jsp is the webapps/ROOT directory which is where the main index page is.
    [url http://www.coreservlets.com/Apache-Tomcat-Tutorial/]This one is a good basic guide to installing/getting it running.
    Also the tomcat documentation itself is reasonable good. Of specific relevance to you would be [url http://tomcat.apache.org/tomcat-5.5-doc/appdev/index.html]Application developers guide which explains the basic layout/structure of a web application.

  • SQLJ+JSP

    hello sir
    i am using CMP EJB with SQLJ but my problem is when i use this code
    i am using this code in jsp page for login purpose
    to check login and password in login table
    #sql public context DefaultContext;
    SafeCon sa=new SafeCon();
    ctxx =sa.init();
    #sql [ctxx] {
    select distinct * from login where acc0=:uname and acc1=:upassword
    then it will give the illegal charcter error on # line
    and malformed error so can u pls tell me how to solve it
    i am using jdeveloper
    thanks alot

    I will answer myself, so people that has the same problem can see this:
    Make a jsp page (callingprogram.jsp) that calls the following file: EXECUTESQLJ.jsp (the file name could be whatever):
    -- CALLINGPROGRAM.JSP --
    <%@ page contentType="text/html;charset=windows-1252"%>
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
    <TITLE>
    jsp to execute a pl/sql (sqlj)
    </TITLE>
    </HEAD>
    <BODY>
    Ejecutar un PL/SQL es cuestion de colocar el codigo en JAVA respectivo:
    <FORM method="post" action="executesqlj.jsp" onreset="alert('LA FORMA ES REINICIADA')">
    Presione el boton --><INPUT type="submit" value="Ejecutar">
    <BR>
    Para Reiniciar valores presione ---> <INPUT type="reset" value="Reiniciar"></TD>
    </FORM>
    </BODY>
    </HTML>
    Then, the file EXECUTESQLJ.JSP should has a look like this:
    <%@ page language="sqlj"
    contentType="text/html;charset=windows-1252"
    import="oracle.jbo.*,
    java.sql.SQLException,sqlj.runtime.ref.DefaultContext,
    sqlj.runtime.ConnectionContext,java.sql.Connection,
    oracle.sqlj.runtime.Oracle,mypackage1.java2" %>
    <-- mypackage1.java2 is the wrapper sqlj that the JDEV has created with the option GENERATE JAVA... -->
    <HTML>
    <HEAD>
    <TITLE>
    Executing sqlj....
    </TITLE>
    </HEAD>
    <BODY>
    <% // Codificacion de Java para llamar el procedimiento.
    Oracle.connect(new java2().getClass(), "connect.properties");
    <% /* remember creating the file connect.properties in your package directory
    The file has to be like this:
    sqlj.url=jdbc:oracle:thin:@servidor:1521:ORCL
    # User name and password here (edit to use different user/password)
    sqlj.user=scott
    sqlj.password=tiger
    */ %>
    java2 execsql = new java2();
    execsql.testjava();
    %>
    <jsp:forward page="callingprogram.jsp" />
    </BODY>
    </HTML>
    Hope this could help the jdevs guys!.

  • Directory structure in Tomcat for JSP

    I am new to JSP/Tomcat
    I have the following jsp page, classtest.jsp stored in %tomcat%webapps/myproject
    <html>
    <head>
    </head>
    <body>
    <%@ page import="com.clanda.mypack.*" %>
    <%
    Sayhi myhi = new Sayhi();
    int x = myhi.doSpeak();
    out.println(x);
    %>
    </body>
    </html>and the class file defining Sayhi is in %tomcat%webapps/myproject/WEB-INF/classes/com/clanda/mypack/Sayhi.class
    package mypack;
    public class Sayhi {
         public int doSpeak() {
              return 123;
    }I get the following Tomcat/Jasper error "Sayhi cannot be resolved to a type". I have run out of ideas? Can some one please put me right.
    Many thanks
    Bob

    You have defined your Sayhi class to be in the mypack package but you have put it under com/clanda/mypack/.
    Recompile your Sayhi class in the correct package:
    package com.clanda.mypack;Then replace the Sayhi .class file under %tomcat%webapps/myproject/WEB-INF/classes/com/clanda/mypack/

  • Write file into sever--tomcat and jsp

    i have some .jsp file and run on tomcat 3.2.4, it works well nomally.
    in my programming i want to write some file or make some dir in sever. but i once to do that , the xxx.jsp will not be found in the sever. 404 error message will be throwen.
    by the way, i make all the .jsp into war and put .war into tomcat-home/webapps/.
    and if i change the port number 8080 into 8004, i can write something into 8004 but no 8080..
    any ideas

    Firstly, when you write the file out you need to find the web context base directory and extend the file reference from there.
    In your jsp you need code like this...
    String baseDir = this.getServletContext().getRealPath("/");
    File webRootDirectory = new File(baseDir);
    // Assuming the target directory exists, otherwise create it....
    File targetFile = new File(webRootDirectory, "mynew.jsp");
    // Open a stream and write to your hearts content into it, after you close it it will be available to be requestedApplication Servers can and often do disallow the writing of files etc via a security policy file so you often have to check that and adjust the security policy accordingly.

  • Tomcat 5 & JSP page buffer

    Hi all,
    I'm new to JSP and am having a problem with the page buffer. I have a page which uses a for loop to print out the contents of a row from a SQL table. The JSP stops outputting html at different points in the page, depending on the data and the page stops way before the closing body and html or even table tags later in the page. I've tried changing the page buffer directive to 10kb, but I get a cryptic exception error. Is there some setting in Tomcat that is screwing me up? Please help!
    Thanks!
    -Carlo

    I figured out what was wrong but I have no idea why this works. My code is below. I added a space to this line of code: out.write(result.getString(i)+" "); Without anything behind the result.getSring(i), the loop would arbitrarily end and the page would be output with the rest of the HTML missing. Any ideas on why this is?
    Thanks!
    <%
    while (result.next()) {
    for (int i=1; i<=columns; i++) {                                   %>
                                                 <tr>
         <td bordercolor="#999999" bgcolor="#FFFFFF" class="maintextsmpurp" ><strong>          
    <%out.write(rsmd.getColumnLabel(i));%>
    </strong></td>
         <td bordercolor="#999999">
    <%out.write(result.getString(i)+" ");%>
    </td>
         <td width="1%" bordercolor="#FFFFFF"> </td>
    </tr>
         <% } }%>

  • SQLJ JSP and SERVLETS which Environment?

    Hello,
    I am attempting to run the samples on Chapter 5 of the
    following documents with partial success.
    http://technet.oracle.com/docs/products/oracle8i/doc_library/817_
    doc/java.817/a83726/oraext2.htm
    http://download-west.oracle.com/otndoc/oracle9i/901_doc/java.901/
    a90208/oraext.htm#1015820
    1. Do I need the Apache+Jserv environment to run SQLJ and JSP?
    2. What do I need to do run SQLJ on oc4j if possible?
    3. I dont know how to load(?) and/or run this .sqljsp file.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>
    I named above file as test2.sqljsp then I tried these procedures:
    a) $ ojspc test2.sqljsp --these created all the files
    b) $ loadjava -u -v scott/tiger _test2.class -resolve
    this generated:
    initialization complete
    loading : _test2
    creating : _test2
    resolver :
    resolving: _test2
    errors : _test2
    ORA-29521: referenced name test2$_jsp_StaticText could not
    be found
    ORA-29521: referenced name test2SJProfileKeys could not be
    found loadjava: 2 errors
    c) listed the directory and both these files are there but it
    cannot resolve or find it?
    d) I recall reading something about publishjsp command but I have
    to establish a session shell with OSE? this part is very
    confusing and am not sure what to do here.
    e) not sure if i need to publish the loaded class (create a
    procedure? so it can be known to the rest of plsql?)
    A step by step procedure is very much appreciated. fyi.. I
    have Oracle 8.1.7, + oc4j, I can run sqlj from command line
    and class files generated I can run. I can also run JSP and
    servlets on the oc4j accessing the database. It is this SQLJ
    that throws me off balance. If you include Jdeveloper steps
    ro run SQLJ thats also welcome.
    Thanks in advance for kind responses posted.

    In many Model-View-Controller web applications implemented using J2EE, servlets are as controllers to direct the flow between the model and view. While servlets can output HTML code directly, it is much better to use JSPs for the most part. JSPs contain HTML and possibly Java scriptlets. The J2EE container will typically compile JSPs into servlets. While you could use a JSP as a controller, there are drawbacks to that approach. To minimize the amount of Java code in your JSPs, you can either use the tags provided by the JSP spec or use tag libraries written by someone else or yourself. See the JSTL for one such example.
    Also see:
    http://wiki.java.net/bin/preview/Javapedia/MVC
    http://wiki.java.net/bin/view/Javapedia/JavaServerPages

  • Creating links to text files with Tomcat and JSP

    I am trying to create links in a JSP page that bring up text files. Currently, the links point to a file format. When the links are clicked, however, the text files are not displayed in the web browser. When an "http:" format is used, the links point to terminal files that are not being written dynamically (and therefore are useless to me). So in short, I'm looking for a way to get these links to (1) point to text files on the network, and (2) get them to display in a new browser window. Any help or guidance will be greatly appreciated.
    Thanks.
    TGD

    You cannot expect Tomcat or any J2EE Server to give access to the Network files.
    You need to design a different way to give access to the Users.
    What you can do is write a proxy (HttpServlet) which can pass a request parameter as the file name. The Servlet can read the file and then paint it in the Client Browser Window.
    Hope this helps.
    Thanks and regards,
    Pazhanikanthan. P

  • Tomcat run jsp occur error

    Hi!
    After I configure /tomcat/conf/server.xml to point jsp and source code path for tomcat server, so I can run jsp in IE with "http://localhost:8080/ebis/jsp". But when I click login path to run login screen there occur error as below:
    Error: 500
    Location: /ebis/jsp/Login/index.jsp
    Internal Servlet Error:
    javax.servlet.ServletException
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)
         at jsp.Login._0002fjsp_0002fLogin_0002findex_0002ejspindex_jsp_0._jspService(_0002fjsp_0002fLogin_0002findex_0002ejspindex_jsp_0.java:517)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspCountedServlet.service(JspServlet.java:130)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:282)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:812)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:758)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:484)
    Root cause:
    java.lang.ArrayIndexOutOfBoundsException
         at HK.com.hit.ebis.sys.SQLConnectionManager.getConnection(SQLConnectionManager.java:105)
         at HK.com.hit.ebis.sys.SQLConnectionManager.getConnection(SQLConnectionManager.java:97)
         at HK.com.hit.ebis.entity.UserDetails.getVerify(UserDetails.java:366)
         at jsp.Login._0002fjsp_0002fLogin_0002findex_0002ejspindex_jsp_0._jspService(_0002fjsp_0002fLogin_0002findex_0002ejspindex_jsp_0.java:281)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspCountedServlet.service(JspServlet.java:130)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:282)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:812)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:758)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:484)
    My web.xml configuration is below:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
    <servlet>
    <servlet-name>
    R00005Servlet
    </servlet-name>
    <servlet-class>
    HK.com.hit.ebis.servlet.R00005Servlet
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    R00005Servlet
    </servlet-name>
    <url-pattern>
    /R00005Servlet
    </url-pattern>
    </servlet-mapping>
    <!-- Default login configuration uses BASIC authentication -->
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Example Basic Authentication Area</realm-name>
    </login-config>
    <!-- If you want to experiment with form-based logins, comment
    out the <login-config> element above and replace it with
    this one. Note that we are currently using a nonstandard
    authentication method, because the code to support form
    based login is incomplete and only lightly tested. -->
    <!--
    <login-config>
    <auth-method>EXPERIMENTAL_FORM</auth-method>
    <realm-name>Example Form-Based Authentication Area</realm-name>
    <form-login-config>
    <form-login-page>/jsp/security/login/login.jsp</form-login-page>
    <form-error-page>/jsp/security/login/error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    -->
    </web-app>
    Who know the reason, please tell me.
    Regards,
    dsjflsdjf

    put <security-constraint> tag also in your web.xml defining the <web-resource-collection>, <web-resource-name>, <url-pattern> and the
    <role-name>manager</role-name> inside <auth-constraint>, This role-name is important and you have to add this role in your tomcat-users.xml also. See sample web.xml in ..\webapps\manager\WEB-INF
    Dont know if this is the reason why ur problem is coming though,
    Regards,
    Padmanava

  • How to set Tomcat's JSP compilation package

    Is it possible to configure what root package name Tomcat uses when creating .java files from JSPs? I've searched Google, this forum, and the Tomcat JSP documentation (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jasper-howto.html) and cannot find any indication that it is. I found the description of all the JSP compiler servlet options, both in web.xml and on the Jakarta site, but it doesn't list any option for this. I know it's possible with Ant's JSPC task, so it's tempting to think the same can be done with Jasper, but maybe not.

    You're running Jasper by running "jspc.bat" (or "jspc.sh") from Tomcat's bin directory, yes?
    If so, it's
    jspc.bar -p <package> ...
    Usage: jspc <options> [--] <jsp files>
    where jsp files is any number of:
        <file>         A file to be parsed as a jsp page
        -webapp <dir>  A directory containing a web-app, all jsp pages
                       will recursivly be parsed
    where options include:
        -q          Quite mode (same as -v0)
        -v[#]       Verbose mode (optional number is level, default is 2)
        -d <dir>    Output Directory
        -dd <dir>   Literal Output Directory.  (package dirs will not be made)
        -l          Outputs the name of the JSP page upon failure
        -s          Outputs the name of the JSP page upon success
        -p <name>   Name of target package
        -c <name>   Name of target class name
                    (only applies to first JSP page)
        -mapped     Generate separate write() calls for each HTML line in the JSP
        -die[#]     Generate an error return code (#) on fatal errors.
                    If the number is absent or unparsable it defaults to 1.
        -uribase <dir>  The uri directory compilations shoule be relative to
                        (Default is "/")
        -uriroot <dir>  The root directory that uri files should be resolved
                        against, (Default is the directory jspc is invoked from)
        -webinc <file>  Creates partial servlet mapings for the -webapp option
        -webxml <file>  Creates a complete web.xml when using the -webapp option.
        -ieplugin <clsid>  Java Plugin classid for Internet Explorer
        -sax2 <driverclassname>  Driver class name for the SAX 2.0 parser to be used

  • Jdevelopper and Integrated Tomcat and JSP/jscript DEBUG search information

    Hi,
    Where Could i found some informations on installing an integrated Tomcat INTO JDEVELLOPER for Debuging JSP and JSCRIPT PAGES ???
    Regards
    Philippe

    JDeveloper comes with a built-in J2EE container (OC4J) that will let you debug your J2EE apps.
    You can then use one click deploy to deploy your application on Tomcat from inside JDeveloper.
    And you can do remote debugging in JDeveloper to debug the application as it runs in the remote Tomcat instance.
    More information is in the online help.

  • Tomcat webapp jsp pages are blanc

    Hi,
    I'm using tomcat 5.5.17 and it's working fine. When I deploy my webapp to,I can start Tomcat , but when I request a jsp page, no matter which one it is, it returns a blanc page.
    Can someone help me?
    Thanks.
    Regards,
    Michiel.

    Hi,
    My Tomcat is configured well. Other webapps run just fine.
    Within my war file that Ideploy to this Tomcat installation there are several jar files included as a reference to them.Because at first I included as well the javax.servlet.jar and the javax.servlet.jsp.jar which Tomcat uses as well, I thought that there might bea conflictas I describedin my first post. But I removed them and there is no change (I stopped Tomcat before).
    Thanks.
    Michiel.

  • Using OCI driver with Tomcat for JSP?Servlets

    We have a need to switch to OCI drivers instead of JDBC thin driver. Our tomcat is running on Sun and Linix platform. Does anyone have real world experience in terms of configuring the OCI driver and connection pooling? Please help to provide some configuration tips.

    You should repost this in the JDBC forum here on OTN so that you can get some better expertise in this area.
    The URL is http://forums.oracle.com/forums/forum.jsp?forum=99
    Hope this helps,
    Rob

  • Restart tomcat from JSP----recall for jsp guru's

    hi thr
    I have buid a web based portal which give administrator power to do changes but to make these changes i need to restart tomcat server but my users are not It guys they found it very difficult to it.Is there anyway that i can restart server programatically.from JSP page using Java beans.Any idea will be helpful.
    Thanks in advance

    thanks guys i will go through that link but is there any code sample or a logic which can give idea how this works.
    Just like is we go to JRUN admin. we can start or restart server from front end in jsp.

Maybe you are looking for

  • Need help returning to default application icons

    ok, i began to change the icons on my iBook tonight and then decided i wanted the original ones back, when to my dismay i realized i didnt know where to look. Where are they?

  • Issues using 11.1.1.7.0 demo material on Windows 64 bit env

    I use ODI 10g - so downloaded 11gR1 version 11.1.1.7.0 and worked through demo to find out more about 11g functionality.  I installed 11gR1 on Windows 7.   I have found an issue with the SRC_SALES_PERSON datastore in the "Parameters - FILE" folder un

  • I havent had a signal for 12 hours

    My Iphone 4s has totally lost its signal and has been like that for 12 hours. I have tried switching it off and on, cleaned the sim card. and have also contacted my network provider to which they say its the phone and not the sim. Any ideas???

  • Can't Connect to SMP 3.0 server from Client

    Hello All , I am trying to connect SMP 3.0 server but i am getting error like Requesting Public Key from Server Communications error (14) Connection failed Ending transmission and i also checked with url as per my knowledge its  working fine because

  • Since i upgraded to 3.6 my kkkeyboardbbehavcvior is crazyyyyyyyyyyyy

    since the upgrade a couple of weekks ago my keyboard had been intermiitently nuts (having to plug it in over and over)) and it's evennnnnnn worse siooooooonce yesterday's upgrade. 10.4.11