Bmp-pictures in servlet with HTTP-server

hey,
We are 2 belgium students who are making a training at France.
We have to make a picture server.
Our problem is that we don't have a clue how to display the bmp-pictures who are saved in a Access database in the browser.
The code that we are now using gives characters and not the picture (logical but how to solve ?) :
case Types.Varbinary :
case Types.Binary :
case Types.Longvarbinary :
byte[] binary = rs.getBytes(col);
out.println("<th>" + new String(binary, 0) + "</th>");
break;
Thanks !

Well - you'll have to tell the client it's a picture, for a start!
Generally I think you'll have to output <img src="imageservlet?param_identifies_image" /> in your page, and have another servlet that waits for the client to request the image data before reading it from the db and sending it out (with the appropriate MIME type, of course).
What I'm saying is, don't inline the images in the page itself.

Similar Messages

  • Socket communication with HTTP server : how to send a form variable ?

    Hi everyone,
    I'm trying to program a Socket application that calls a CGI programmed in ASP and sends a variable with some content via the POST HTTP method.
    My problem is that I'm unable to retrieve my variable content in the CGI. I don't know what I'm doing wrong when sending my variable. Here are the main steps of my application
    [Client side]
    - Create an URL
    - Open a connection
    - Send header info with variable name and content via POST method
    - Read server response
    [Server side]
    - Request the variable
    - Store its content in a file
    Here's the code of my class :
    import java.net.*;
    import java.io.*;
    public class SocketTest{
         public static void main(String args[]){
                 //create the URL
              URL url = null;
              String strURL = "http://192.168.1.11/htmleditor/cgi.asp";
              try{
                   url = new URL(strURL);
              catch(MalformedURLException exc){
                   System.out.println("Invalid URL : " + strURL);
                    //create a socket
              Socket socket = null;
              try{
                   int port = url.getPort();
                   if (port < 0){
                        port = 80;
                   socket = new Socket(url.getHost(), port);
              catch(Exception exc){
                   exc.printStackTrace();
              OutputStream out = null;
              InputStream in = null;
              try{
                   //configure request
                   String data = "htm_content=toto";
                   String request =      "POST "+ url + " HTTP/1.0\r\n" +
                                         "Accept: */*\r\n" +
                                         "Content-length: " + String.valueOf(data.length()) + "\r\n" +
                                         "Host: JAVA_HOST\r\n" +
                                         "User-Agent: Generic\r\n\r\n" +
                                         "htm_content=toto";
                   //send request
                   out = socket.getOutputStream();
                   out.write(request.getBytes());
                   out.flush();
                   //read server response
                   in = socket.getInputStream();
                   int bufferSize = 1024;
                   byte responseBytes[] = new byte[bufferSize];
                   while ((bufferSize = in.read(responseBytes)) > 0){
                        System.out.print(new String(responseBytes, 0,bufferSize));
              catch(IOException exc){
                   System.out.println(exc);
              //Close streams and sockets
              try{
                   in.close();
              catch(IOException exc){
                   exc.printStackTrace();
              try{
                   out.close();
              catch(IOException exc){
                   exc.printStackTrace();
              try{
                   socket.close();
              catch(IOException exc){
                   exc.printStackTrace();
    }Here's the code of my ASP CGI page (called cgi.asp) :
    //CGI.ASP - Begin
    <%
         Option Explicit
         Dim objFso, objFile, strHtmContent, strFileName
         On Error Resume Next
         Set objFso  = Nothing
         Set objFile = Nothing
         Set objFso  = Server.CreateObject("Scripting.FileSystemObject")
         strFileName = Server.MapPath("htm_content.htm")
         Set objFile = objFso.CreateTextFile(strFileName, True)
         strHtmContent = Request("htm_content")
            If len(strHtmContent) > 0 Then
           objFile.Write strHTMContent
            Else
              objFile.Write "NO CONTENT RECEIVED"
            End If
    %>
    <html>
    <head>
    <script language="javascript">
      function closeAll()
        window.close();
        return 0;
    </script>
    <body onLoad="javascript:closeAll();">
    </body>
    </html>
    //CGI.ASP - ENDWhen I execute my SocketTest app I get this output:
    F:\JavaDev\htmleditor\docs>java SocketTest
    HTTP/1.1 200 OK
    Server: Microsoft-IIS/5.0
    Date: Fri, 12 Jul 2002 15:31:56 GMT
    Connection: Keep-Alive
    Content-Length: 192
    Content-Type: text/html
    Set-Cookie: ASPSESSIONIDQQGGGKMU=MMPPMLEDGDEMCCJDBGOKMNDC; path=/
    Cache-control: private
    <html>
    <head>
    <script language="javascript">
    function fermerTout()
    window.close();
    return 0;
    </script>
    <body onLoad="javascript:fermerTout();">
    </body>
    </html>
    The file "htm_content.htm" is created but it has this content :
    NO CONTENT RECEIVED
    This means the server was unable to retrieve the content of the variable called "htm_content"
    REM : the variable is called like this 'cause I intend to use it to send HTML content
    Any idea of what I'm doing wrong ?
    Thanxs in advance for any help,
    Diego TERCERO

    For the POST request you'll only need (with HTTP 1.0)
         String request =      "POST "+ url + " HTTP/1.0\n" +
              "Content-type: application/x-www-form-urlencoded\n" +
              "Content-Length: " + String.valueOf(data.length()) + "\n" +
              "\n" +
              data;
    Note the Content-type header.
    Fred (Donne les duke�)

  • ApEx install with HTTP server on separate boxes

    I want to configure ApEx 3.1 that is installed in an Oracle 10.2 database on server1 (linux) to work with an OracleAS 10.2 HTTP server installed on server2 (also linux). What extra steps do I need to do? I understand I need to place the images directory from the ApEx installation directory on server1 to AS_ORACLE_HOME/Apache directory on server2 and change the connect string in the dads.conf file to point to the server1. Is that correct?

    Hello,
    Yes that's correct. It's well described in the Oracle Apex Installation Guide and documentation:
    http://download.oracle.com/docs/cd/E10513_01/doc/install.310/e10496/toc.htm
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • What's wrong with Http server of SunONE AS 7?

    I try to output something of database to a PDF file using jasperreports-0.5.2.jar and jsp file likes:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@**:1521:**","**","**");
    File reportFile = new File(application.getRealPath("test/iteminfo.jasper"));
    //&#21521;&#25253;&#34920;&#20013;&#23450;&#20041;&#30340;&#21442;&#25968;&#36171;&#20540;
    Map parameters = new HashMap();
    Integer i=new Integer(8);
    parameters.put("pjId", i);
    byte[] bytes =
    JasperRunManager.runReportToPdf(
    reportFile.getPath(),
    parameters,
    conn
    The all relation jar have been included in CLASSPATH.
    It work right if it's deployed in iWS6. But when I deployed it in docroot of SunONE Appliction server 7 U3 , it failed and said:
    javax.servlet.ServletException: Error loading expression class : Test2
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
         at jasper.test_jsp._jspService(_test_jsp.java:119)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    ----- Root Cause -----
    java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:270)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
    It seems something wrong with java security (Test2 is a middle file compiled by jasper and it's work right in command line.).
    Who know why? Thanks.

    Hi,
    I added those two lines to my Sun Application Server 8.2 and it would not start...
    Looking at the server.log I found:
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at com.sun.jdo.spi.persistence.support.sqlstore.ejb.PersistenceManagerServiceImpl.class$(PersistenceManagerServiceImpl.java:35)
         at com.sun.jdo.spi.persistence.support.sqlstore.ejb.PersistenceManagerServiceImpl.<clinit>(PersistenceManagerServiceImpl.java:35)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at com.sun.enterprise.server.ApplicationServer.instantiateRuntimeServices(ApplicationServer.java:267)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:208)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:284)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: java.security.AccessControlException: access denied (java.util.PropertyPermission com.sun.jdo.api.persistence.model.multipleClassLoaders read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:269)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
         at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1276)
         at com.sun.enterprise.J2EESecurityManager.checkPropertyAccess(J2EESecurityManager.java:104)
         at java.lang.System.getProperty(System.java:573)
         at com.sun.jdo.spi.persistence.support.sqlstore.ejb.TransactionHelperImpl.<clinit>(TransactionHelperImpl.java:48)
         ... 10 more
    java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:3635 accept,resolve)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:269)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
         at java.lang.SecurityManager.checkAccept(SecurityManager.java:1149)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.checkAcceptPermission(TCPTransport.java:560)
         at sun.rmi.transport.tcp.TCPTransport.checkAcceptPermission(TCPTransport.java:208)
         at sun.rmi.transport.Transport$1.run(Transport.java:147)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:534)
    I know you were suggesting it for version 7, but I have the same problem and wanted to give it a try... bad luck...
    Does anyone could alaborate on the second method proposed above?
    Regards,
    Eli.

  • Sneak Preview ABAP 2004s: Problem with HTTP-Server

    Hi..
    I have just installed the sneak preview.
    Everything works well.
    But there is a problem with the webdynpro
    for abap. When i try to start the example
    i become a message: "Windows can not find
    ://:/sap/bc/webdynpro/sap/wdt_quiz ....... "
    This error is from the HTTP options.
    In transaction SMMS over extert functiuns->http->display
    the parameter  http_status_code is -1.
    Can anyone help me what i can do?

    when you go into transaction SMICM->go to ->services you should atleast see one entry for HTTP
    it will be something like below.
    No. Protocol           Service Name/Port    Host Name            Keep Alive Acti External Bind                                                                               
    1  HTTP               1081                 xxxx.domain.com        30                       
    i dont think that for this reason , you have to go for a reinstall, i am sure some config is missing.
    Regards
    Raja

  • Servlet when http server doesn't exist

    Hi,
    I've question is it possible to create sevlet but on the server I don;t have any httpserv. and how to create it hwo to use it
    feedbacks are welcome
    BR
    ossi

    i'm wondering what happen when somebody type in
    console on the server to run my app[servlet] then
    it's shall work, isn't ? It doesn't work that way. You can't type in anything on the server console.
    it's demanded to install apache or tomcat on the
    server to run servlets ??No.

  • Standalone servlet engine without HTTP server

    Hello
    Is it possible to somehow make a standalone program that can parse jsp pages and work with servlets.
    What I'm imagining is something like this:
    1. My application wants to open a jsp page.
    2. My application sends the jsp to the servlet/jsp engine (Catalina?)
    3. Catalina parses the jsp.
    4. Catalina sends the jsp back to my application
    5. My application displays the page in a briwser.
    This way I could work without a HTTP server.
    Maybe the engine is not called Cataline?
    Thanks in advance

    You mean you want to test and develop your servlets/jsps without >servlet container (HTTP/server)? No I do not wish to develop servlets/jsps without a servlet container, but I wish to develop it without an HTTP Server.
    This way one application could parser/compile jsp/servlets and display them in an embedded browser.
    This is meant to be used in a 1 tier application.
    So the only tier existing needs to be both browser and application server.
    I mean to make an application where it is very easy to change the GUI, that is how it is in JSP/servlets. But I don't want the 2/3 tier model, rather I want a standalone application, where the GUI is made in JSP/servlets.
    Best regards
    Klaus

  • Problme in http server configuration with different database version

    I have two instances of oracle databases on two different machines.
    1. Oracle 9i R 2 with default http server
    2. Oracle 10 g with http server of Oracle 10 g AS.
    Now the problem is that when i want to cross configure the http servers that is to configure http server of 9i R 2 data base with the 10g data base or vice versa. It give the following error.
    Can not run. Capacity probem.................
    Plz tell me that is there any pronle in these configuration. Is it possible to configure 9i http server with 10 g data base and vice versa If yes then why I am getting errors???

    The entries of the log file are as under:
    Tue Aug 07 05:00:29 2007] [error] [client 10.8.7.33] [ecid: 1186444829:10.8.7.33:1968:7060:109,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:05:29 2007] [error] [client 10.8.7.33] [ecid: 1186445129:10.8.7.33:1968:7016:114,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:10:29 2007] [error] [client 10.8.7.33] [ecid: 1186445429:10.8.7.33:1968:7528:90,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:15:29 2007] [error] [client 10.8.7.33] [ecid: 1186445729:10.8.7.33:1968:5872:128,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:20:29 2007] [error] [client 10.8.7.33] [ecid: 1186446029:10.8.7.33:1968:2468:95,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:25:29 2007] [error] [client 10.8.7.33] [ecid: 1186446329:10.8.7.33:1968:7236:136,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:30:29 2007] [error] [client 10.8.7.33] [ecid: 1186446629:10.8.7.33:1968:536:116,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:35:29 2007] [error] [client 10.8.7.33] [ecid: 1186446929:10.8.7.33:1968:3556:108,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:40:29 2007] [error] [client 10.8.7.33] [ecid: 1186447229:10.8.7.33:1968:6920:132,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:45:29 2007] [error] [client 10.8.7.33] [ecid: 1186447529:10.8.7.33:1968:7536:119,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:50:29 2007] [error] [client 10.8.7.33] [ecid: 1186447829:10.8.7.33:1968:5108:76,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 05:55:29 2007] [error] [client 10.8.7.33] [ecid: 1186448129:10.8.7.33:1968:668:121,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:00:29 2007] [error] [client 10.8.7.33] [ecid: 1186448429:10.8.7.33:1968:6640:129,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:05:29 2007] [error] [client 10.8.7.33] [ecid: 1186448729:10.8.7.33:1968:7324:123,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:10:29 2007] [error] [client 10.8.7.33] [ecid: 1186449029:10.8.7.33:1968:2168:81,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:15:29 2007] [error] [client 10.8.7.33] [ecid: 1186449329:10.8.7.33:1968:2320:166,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:20:29 2007] [error] [client 10.8.7.33] [ecid: 1186449629:10.8.7.33:1968:7320:114,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:25:29 2007] [error] [client 10.8.7.33] [ecid: 1186449929:10.8.7.33:1968:7528:96,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:30:29 2007] [error] [client 10.8.7.33] [ecid: 1186450229:10.8.7.33:1968:7580:124,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p
    [Tue Aug 07 06:35:29 2007] [error] [client 10.8.7.33] [ecid: 1186450529:10.8.7.33:1968:668:124,0] File does not exist: c:/oraas/apache/apache/htdocs/pls/orasso/htp.p

  • How to upload large file with http via post

    Hi guys,
    Does anybody know how to upload large file (>100 MB) use applet to servlet with http via post method? Thanks in advance.
    Regards,
    Mark.

    Hi SuckRatE
    Thanks for your reply. Could you give me some client side code to upload a large file. I use URL to connect to server. It throws out of memory exception. The part of client code is below:
    // connect to the servlet
    URL theServlet = new URL(servletLocation);
    URLConnection servletConnection = theServlet.openConnection();
    // inform the connection that we will send output and accept input
    servletConnection.setDoInput(true);
    servletConnection.setDoOutput(true);
    // Don't used a cached version of URL connection.
    servletConnection.setUseCaches (false);
    servletConnection.setDefaultUseCaches(false);
    // Specify the content type that we will send text data
    servletConnection.setRequestProperty("Content-Type",
    +"application/octet-stream");
    // send the user string to the servlet.
    OutputStream outStream = servletConnection.getOutputStream();
    FileInputStream filein = new FileInputStream(largeFile);
    //BufferedReader in = new BufferedReader(new InputStreamReader
    +(servletConnection.getInputStream()));
    //System.out.println("tempCurrent = "+in.readLine());
    byte abyte[] = new byte[2048];
    int cnt = 0;
    while((cnt = filein.read(abyte)) > 0)
    outStream.write(abyte, 0, cnt);
    filein.close();
    outStream.flush();
    outStream.close();
    Regards,
    Mark.

  • Essbase 11.1.2.1 without http server

    Hi ,
    Ive been trying to install Essbase 11.1.2.1 standalone mode. And my doubt is, is it mandatory to go with http server. Cause under normal circumstances starting the opmn ohs instance starts apache.exe process in my server which we dont want to be running. I came across some docs and one of john's post where i found the below workaround.
    "To configure the Shared Services Registry without installing Foundation Services Web applications:
    1.Start EPM System Configurator from the command line, including the –forceRegistry option
    From a Windows console, change to EPM_ORACLE_HOME/common/config/version_number, and then enter configtool.bat —forceRegistry.
    On UNIX, change to EPM_ORACLE_HOME/common/config/version_number and then type ./configtool.sh —forceRegistry."
    will this method ensure that we can run without http server thereby eliminating the apache.exe process from server?
    thanks,

    OPMN is part of the OHS installation in 11.1.2.1 but that doesn't mean OHS will be running for the essbase deployment.
    If you deploy OHS then another OPMN service will be created that runs OHS.
    Essbase can be started from command line or the OPMN windows service e.g. opmn_EPM_<instancename>
    Cheers
    John
    http://john-goodw

  • Can LabVIEW work with https (not http)?

    I have trouble to use LabVIEW 6i to GET response from HTTPS server. It works with HTTP server smoothly. (I changed the port 80 to 443.) Are there any package can work with HTTPS? BTW, I also have LabVIEW 7 and will use that if 7 has the solution.

    landlord wrote:
    > I have trouble to use LabVIEW 6i to GET response from HTTPS server. It
    > works with HTTP server smoothly. (I changed the port 80 to 443.) Are
    > there any package can work with HTTPS? BTW, I also have LabVIEW 7 and
    > will use that if 7 has the solution.
    HTTPS means that the data is encapsulated in some sort of secure
    protocol layer such as SSL. You do not want to implement SSL in LabVIEW
    I think.
    In order to establish a meaningful connection with an HTTPS server you
    need to establish a secure context with authentication through
    certificates, crypto algorithmes and such. For this you have specific
    libraries like OpenSSL and such and you could call them as an external
    library. But you can not plug them into the LabVIEW TCP/IP functions to
    let
    them transparently handle your TCP/IP communication.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Missing HTTP Server on 11g Installation

    Hi,
    Just successfully installed 11g Enterprise. Which, as I understand it, comes bundled nowadays with APEX and the Oracle HTTP server.
    But in my efforts to set up APEX and the HTTP server, I'm noticing a distinct lack of HTTP server! None of the files or folders that are supposed to present are there, but APEX is.
    I've followed the documentation to the letter and its all gone well up to the part where I have to edit the dads.conf file, whereupon I've noticed that file doesnt exist, and neither does the entire directory structure leading to it:
    "ORACLE_BASE\ORACLE_HTTPSERVER_HOME\ohs\modplsql\conf\dads.conf"
    I cant see any obvious directory in the oracle base that could be the http server home directory.
    Am I being dumb or blind, or am I genuinely missing the HTTP server and relevant directories and files?
    Help much appreciated!

    Use the EPG. In database 10g, the HTTP server was on the companion CD. In database 11g, HTTP server is not included(however you can download it if you really want to from the middleware stack or I guess from Apache). In database 11g, the deployment of APEX with HTTP server powered by Apache is deprecated in favour of the Embdded PLSQL Gateway (the modplsql bit from a HTTP server insde the database). The install guide includes both methods to give you a choice. Just because HTTP server is no longer included as part of the database media does not mean that you can not use it.

  • Some Smaller Problems concerning HTTP-Server and iSQL*PLUS

    Hi!
    System: WIN2K, ORA 9.0.0.1
    1. Problem: With HTTP-Server launched by ORACLE at System Start
    can not connect to DB via iSQL*Plus, message: ORA-12638 (german
    message:"Abruf des Berechtigungsnachweis misslungen") Credential
    retrieval failed. Does no longer occur when shutting down
    service and relaunching Apache manually. Why?
    2. HTTP Server dies instantly when accidentially sending /*
    somewhere in SQL-Statement or alone via iSQL*Plus (in SQL*Plus
    Window /* starts DOC-Mode without chance to end DOC-mode with #)
    Can anyone help? Thank you!
    TIP: Manipulating Database via iSQL*Plus on a Eudora-Browser
    with IR Cellular impresses every Boss! :-)

    Hello CJ
    1st of all: Thank you for your answer!
    What privilege iSQL*Plus connection are you trying make?Tried as normal user and as sysdba. Both works well with Apache
    in Console, both doesn4t work with Apache as a Service started
    (even if there is a 2nd Apache started in Console window)
    Can you connect as a normal user
    if you specify a full DB connection string? By full connection
    string I mean the "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS...)))"
    etc. syntax commonly seen in tnsnames.ora. No! Error "SP2-0306 Invalid Option" occurs.
    that the problem also occurs in the old GUI (non-web version)
    version of SQL*Plus?Right! Typing DOC means entering (now unsupported) DOC Mode
    (DOC> Prompt) return to SQL> with #. Typing /* gets you into DOC-
    Mode but you can4t leave with #. (SQL*Plus userguide and
    reference Part F Obsolete Commands)
    In iSQL*Plus (web based version) typing /* caused apache to die
    (on console!! as service as I mentioned: no connection ).
    Somehow problem no longer occurs. (Miracle?)
    3. Your Palm efforts sound neat! Can you share with the forum
    how usable it is? Are there any configuration tricks
    you found?No tricks needed, I just started a connection to a local
    Provider via IR and Nokia Cellular. Connected to DB via
    iSQL*Plus using Eudora-Browser, logged in as sysdba and shutdown
    DB and started it again. Looked at some v$-views, killed a
    session or two had a good time and impressed everyone. Decide
    for yourself if this could be useful. Might be helpful for
    remote troubleshooting during holidays so don4t tell your boss
    about it.
    (Did anyone try this on Windows CE? Like to know!)
    Dominic

  • Difference between HTTP Server port and HTTP Server listen port

    Hi,
    What's the difference between the following?
    Oracle HTTP Server port = 7780
    Oracle HTTP Server listen port = 7781
    They are the ports used in my 9ias 9.0.3 instance.
    Please advise.
    Thank you.

    Hi,
    The server port, 7780, is port where HTTP server response and listen ports are other ports tha HTTP Server can listen. In IAS, the default configuration, the server port is response for Web Cache and Web Cache connect with HTTP Server in listen port.
    Marcio Mesti

  • Web Site Hosting in Oracle HTTP Server

    Hi All,
    We have an application based on Oracle UCM. We are accessing that application using the url http://site_name/GMKP/index.htm . I have done virtual hosing (name based) with HTTP Server to host multiple web sites. One requirement is we need to access our application using url http://site_name/gmkp/index.htm . How can we do that? Please let me know a solution for this. Do we have to write some rewrite rule for this?
    Thanks,
    Manikandan
    Edited by: Manikandan on Nov 9, 2010 2:22 AM

    Look into mod_rewrite with a .htaccess file. You turn it on in httpd.conf.
    There is a pretty nice instruction at http://www.addedbytes.com/for-beginners/url-rewriting-for-beginners/

Maybe you are looking for

  • Vista 64: XiFi Extreme Gamer: Mic not work

    I can't get a microphone to work in BF242 with Vista 64 and my Extreme Gamer. I plug the mic into the 3-way jack, select "mic" in the Creative console; but when I get into the sound setup in the game all I can hear during the test is a pulsing noise.

  • When online I keep getting error messages which i think relate to java script.

    When using firefox, if I try opening a new web page / clicking on any links etc. I often get the following error messages pop up with a '!' in a yellow triangle: Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function Exc in ev handl: Error: B

  • Clock on Ultra 2 Enterprise

    The clock on my Ultra 2 does not keep accurate time - sometime no time at all - when powered down. What module do I need to replace? Where can I get one? ...relatively inexpensively... What happens to my host ID when I replace said module? Thx

  • Tax code V0 does not exist for jurisdiction code IN00 Message no. FF718

    Hi, i have configured as per suggestion in message as well as assign Jurisidiction code in taxcode in FTXP, but when i try to create PO with tax code V0 and jurisdiction code IN00 then we are facing error "Tax code V0 does not exist for jurisdiction

  • Build Q - minimizing size of applet

    hello, I'm writing a charting applet with JFreeChart, which is awesome but large. I've tried both including jfreechart.jar in the run-time libraries, and pulling out the .class files & putting them in my source folder, in the hope that Creator would