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.

Similar Messages

  • I configure the JServ , but Oracle HTTP Server doesn't work agian

    my Oracle HTTP Server doesn't work after i've configured the JServ by Oracle Enterprise Manager.
    when i run flowing command :
    D:\oraias\dcm\bin>dcmctl getstate -v
    and Error message : "ADMN-100999 Base Exception:
    java.lang.ClassCastException:java.lang.Boolean" has shown.
    and i navigate Enterprise Manager web site these Error Message showing:
    "Your browser or operating system is not a supported client configuration for this version of Enterprise Manager. Using Enterprise Manager with your current client configuration may result in incorrect display of data or incorrect updates to configuration settings. See the release notes for information on supported client configurations. Root Cause: java.lang.Boolean. java.lang.Boolean"
    how can i do? please help me.
    THX

    The key message -
    mod_plsql: /pls/htmldb/htmldb_login HTTP-503 ORA-12541
    Looking up that error gives -
    [jes@spdb1 ~]$ oerr ora 12541
    12541, 00000, "TNS:no listener"
    // *Cause: The connection request could not be completed because the listener
    // is not running.
    // *Action: Ensure that the supplied destination address matches one of
    // the addresses used by the listener - compare the TNSNAMES.ORA entry with
    // the appropriate LISTENER.ORA file (or TNSNAV.ORA if the connection is to
    // go by way of an Interchange). Start the listener on the remote machine.So it looks like the listener isn't running for your database to me (i.e. "lsnrctl start")

  • HTTP Server Doesn't Start after install

    I just completed an install of the 10.1.3.1 Oracle App Server. It indicated that the install was successful. I can see in the log the BPEL Manager deploying in the default domain, but I do not see any reference to the HTTP server. Also, when I do a *./opmnctl startall* there is no HTTP_Server~1.log created.
    Is there a step I need to complete to enable the Apache server to start? I must be missing something - the Apache folder is there in the install folder.
    The *./opmnctl status* reports:
    Processes in Instance: AS02.ssg-st-bpel-build0-dev.vzbi.com
    ---------------------------------+--------------------+---------+---------
    ias-component                    | process-type       |     pid | status
    ---------------------------------+--------------------+---------+---------
    OC4JGroup:default_group          | OC4J:home          |   18970 | Alive
    ASG                              | ASG                |     N/A | DownI found the following in the installActions log:
    Install type for "Oracle HTTP Server 10.1.3.0.0 " is "Typical".
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.bc4j 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.bc4j.oem 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.soap.srv 2.2.0.0.2a.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.apache.ejb 9.0.1.0.1.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.apache.ojsp 10.1.2.0.0.
         Conflict while setting install type of "Oracle Process Management Notification 10.1.3.1.0 "  to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)".
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.dcm 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.sysman.emd 10.0.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.java.j2ee.iascfg 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.logloader 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0  could be found. Missing component oracle.webdb.monitor 10.1.2.0.0.
    What am I missing?  Is there a package I need to install before installing the App Server?
    Edited by: BCurtis on Sep 24, 2010 3:22 PM
    Edited by: BCurtis on Sep 24, 2010 3:25 PM

    I now know I'm missing the <ias-component id="HTTP_Server"> in the opmn.xml file. The following is from an older install of a few years ago.
             <ias-component id="HTTP_Server">
                <process-type id="HTTP_Server" module-id="OHS">
                   <module-data>
                      <category id="start-parameters">
                         <data id="start-mode" value="ssl-enabled"/>
                      </category>
                   </module-data>
                   <process-set id="HTTP_Server" numprocs="1"/>
                </process-type>
             </ias-component>This explains why the startall doesn't start the HTTP Server, but why would the install not include the HTTP Server in the configuration?

  • How to deal with deadlock on wwv_flow_data table when http server times out

    There are some threads about a deadlock on the wwv_flow_data table. None of them contain a real explanation for this behaviour. In my case I will try to explain what I think is happening. Maybe it helps somebody who is hitting the same matter.
    In my case with APEX 3.2.1 I am navigating from one page to another. Doing this APEX will lock the table wwv_flow_data. As soon as the other page is shown the lock will be released. But now this other page contains a bad performing query (standaard report region). After 5 minutes the http server (modplsql) will time out and present the message "No response from the application server" on the screen. In the meanwhile the query is still running on the database server and the lock stays on the wwv_flow_data table.
    Normal user behaviour will be that the user will use the back button to return to the previous page and tries it again to navigate to the other page or
    the user will try to refresh the page with the bad performing query.
    And voila now you will have a deadlock on the wwv_flow_data table since a second session is trying to do the same thing while the first hasn't finished yet.
    How to deal with it?
    First of all. Have a good look at the bad performing query. Maybe you can improve it that it will succeed before the http server will timeout.
    In my case the 11gr1 optimizer couldn't handle a subquery factoring clause in the best way. After changing it back to a classical inline query the problem was solved.
    Secondly you could increase the timeout parameter of the http server. Although this not the best way.
    Maybe it would better if APEX in a next version would release the lock on the table wwv_flow_date earlier or do a rollback just before the moment that the http server is timing out.
    regards,
    Mathieu Meeuwissen

    Hello Shmoove,
    I saw your reply here and you probably understand the problems the HTTP 100 response may cause.
    I am trying to send image that was taken by getSnapshot. The problem is that the server respond with this HTTP 100 message.
    I suspect that the reason that my server doesn't recognize the file that I'm sending from J2me is that the "server to client" response to the 100 message comes after the second message of (see what the TCPIP viewer shows down here):
    POST /up01/up02.aspx HTTP/1.1
    Content-Type: multipart/form-data; boundary=xxxxyyyyzzz
    Connection: Keep-Alive
    Content-length: 6294
    User-Agent: UNTRUSTED/1.0
    Host: szekely.dnsalias.com:80
    Transfer-Encoding: chunked
    400: Client to Server (126 bytes)
    78
    --xxxxyyyyzzz
    Content-Disposition: form-data; name="pic"; filename="david.jpg"
    Content-Type: application/octet-stream
    400: Connected to Server
    400: Server to Client (112 bytes)
    HTTP/1.1 100 Continue
    Server: Microsoft-IIS/5.1
    Date: Wed, 23 Mar 2005 00:47:02 GMT
    X-Powered-By: ASP.NET
    Any help will be appreciated,
    David

  • How can you download premier pro when the icon doesn't exist in cloud?[was:pr]

    how can you download premier pro when the iucon doesent exist in cloud???

    In order to download the software, your computer must meet the system requirements to run the software.
    http://helpx.adobe.com/x-productkb/policy-pricing/system-requirements-premiere-pro.htmlhttp://www.adobe.com/products/premiere/tech-specs.html
    The usual reason for not being able to download is that Premiere Pro (and other video apps such as After Effects) are 64 bit only so they require a 64 bit computer and a 64 bit operating system.
    If you're running a 32 bit computer and operating system then you will not see the Premiere Pro icon since the software will not run on your computer.

  • HTTP server doesn't seem to respond

    Hi
    I kept a x.html file in public_html directory of my myserver directory inside weblogic
    directory. I wanted that file to be served when I would say http://localhost:7001/x.html.
    I set the httpd.document.root=public_html/ . What else do I need to do so that weblogic
    web server provides me with the html file?
    Thanks in advance.
    [email protected]

    Scimmia wrote:Seems pretty straight forward, delete the partially downloaded file.
    It seems pretty straight forward but when I look for the "plexmediaserver-0.9.12.3.1173-937aac3.x86_64.rpm" file it tells me that it's in a folder that I don't have permission to access even as su.
    sudo ls -R / | grep plexmediaserver-0.9.12.3.1173-937aac3.x86_64.rpm
    ls: cannot open directory /run/user/1000/gvfs: Permission denied
    -rw-r--r-- 1 preginald users 10002432 Jun 5 18:49 plexmediaserver-0.9.12.3.1173-937aac3.x86_64.rpm.part
    This is the permission for the 'gvfs' directory
    d????????? ? ? ? ? ? gvfs/
    Does anyone know how to find/delete this partially downloaded file?

  • Delete From Server doesn't exist

    Hello.
    I've just bought an Ipod Touch, firmware is 2.2.1.
    I've set up a Gmail account with it and if I delete a message from it, it also deletes from the server. I don't want to do that...
    I've searched a bit and it seems to have a Delete from Server -> Never option, but I wasn't able to find it.
    I took a pic from the menu where it's supposed to appear and you can see it here:
    http://img233.imageshack.us/img233/5435/itouch.png
    Thank you very much,
    Gabriel.

    I could be mistaken, but it looks to me like you have your iPod email set to connect to Gmail as IMAP. If your email account is set up as IMAP, the mail is only and always on the server, so when you delete the email, it's by the nature of how IMAP works deleting it from the server. Only if you have your email set up as a POP account, so that mail is actually downloaded to your iPhone (not just being read from the server), do you get the option to set whether you also want the email deleted from the server.

  • 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.

  • How Can I Remove a Secondary Site When The Server no Longer Exists?

    This organisation deployed a new SCCM site and then decommissioned the server before successfully removing either the site or the server/roles.
    I tried to force the removal of the site which failed:
    C:\Program Files\Microsoft Configuration Manager\bin\X64\00000409>preinst.exe /delsite xxx
    Microsoft System Center 2012 Configuration Manager v5.00 (Build 7804)
    Copyright (C) 2011 Microsoft Corp.
    Cannot find site [xxx] in the site control data in the database. Checking in ServerData in the database.
    Failed to execute SQL query.
    The secondary site is showing in the console as 'deleting'.
    Can anyone advise the best way to proceed?
    Thanks.

    I had the same issue and this is what they sent me... I used it and it worked for me.
    1.       Please follow these steps to manually delete the
    Secondary Site from the Secondary site server
    2.       We also used the PREINST tool to remove the pending jobs.
    3.       On the ConfigMgr primary site (parent) computer, click Start, and then click Run.
    4.       Type cmd in the Open box, and then click OK.
    5.       At the command prompt, type cd\, and then press the ENTER key.
    6.       Type cd sms\bin\i386\00000409, and then press the ENTER key.
    7.       To remove any pending or active jobs to a site, type Preinst /DELJOB SiteCode , and then press the ENTER key.
    8.       We deleted the Secondary Site from the console of parent  site.
    9.       We removed the Sender Addresses from the Configuration Manager console, as explained below.
    10.   Click Start, point to All Programs, point to Systems Management Server, and then click ConfigMgr Administrator Console.
    11.   Locate the Site Settings\Addresses subtree.
    12.   Right-click the address for the failed secondary site, and then click Delete.
    13.   Then we cleaned the registry, by taking the backup of the HKLM Node
    ·         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS
    ·         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NAL
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Executive
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Site_Component_Manager
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Bootstrap
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CLISVC
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Discovery_Data_Manager
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Lan_Sender
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Scheduler
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Site_Backup
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Software_Metering_Processor
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SMS_Status_Manager
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_CLISVC
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_BOOTSTRAP
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_EXECUTIVE
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_HARDWARE_INVENTORY_AGENT_SERVICE
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_KEY_CREATION_SERVICE
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_SERVER_BOOTSTRAP_servername
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_SMS_SITE_COMPONENT_MANAGER
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SMS Client
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SMS Performance Data Provider
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SMS Provider
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SMS Remote Control
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SMS Server
    ·         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\SmsClient
    Thanks Lavelle, however your instructions are clearly for SCCM 2007:
    11.   Locate the Site Settings\Addresses subtree. 
    12.   Right-click the address for the failed secondary site,
    and then click Delete. 
    Can you confirm you have run these steps on your own SCCM 2012 site?

  • Exporting a movie with time code when time code doesn't exist

    Title says it all. I need to export a 150 frame movie from CG rendered frames that contain no time code so that I can find which frames to re-render

    I do not wish to create a time code effect. I need to generate an actual time code that will display in an exported movie.
    The latter is achieved with the former.
    But I would ask, why can't you just watch the timeline?  Why export at all?  I mean, 150 frame movie is only 5 seconds long.

  • 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

  • HTTP SERVER need help.

    I have a http server problem.
    my platform win2k adv server
    w or w/o iis
    w or w/o active directory
    I installed the oracle 902 but the http quite ?????
    I shut down the iis services the http server doesn't take over. in oracle817 the http index page will just pop up.
    but in 9i it doesn't.
    some other thing i noticed is during the installation sometime the agent service right before the starting http services or just after the scott database creating done. it sometime when through sometime doesn't.
    any help?
    I basically just want to install apache and use apache to launch my form or other html page.

    Thank you so much ejp, I have been reading books for the past week trying to figure this out, had no luck.
    I'm just not sure about a couple of things, if you could clearify it for me.
    At the moment, I am doing the processes in the following order
    read request - main method
    send reply - HTTPclass
    close connection - HTTPclass
    I think you are telling me to change when I close the connection, ie the HTTPclass should remain in a while loop for a while (unless the keep-alive is not set).. I did try that, but everytime a new request would come in, the main method would make a new HTTPclass object and service it, rather then the old one servicing it.
    I dont quite understand this part
    while (read request != EOF)what does end of file have to do with it??
    sorry, these are probably easy questions, i'm just really confused
    Thanks again,
    Hakim

  • Reading from http server

    Hi guys and girls,
    I've got a simple problem: i'm busy programming a browser (for now it's a simple text based browser) and everything works fine, the connection works and it gets all http headers and the html file. But once and a while my program doesn't terminate properly and i think it's got something to do with the following loop:
    /* Read the first line returned by the server */
    String fromServer = input.readLine();
    while (fromServer != null){
    System.out.print(fromServer+"\r\n");
    /* Read the next line untill that line is blank*/
    fromServer = input.readLine();
    Sometimes this works, sometimes it doesnt (mind you: the http headers are received before this loop, so that's not the problem). This loop should get the html file at the specified url: at some locations it just keeps running and it doesn't exit, so this loop isn't exited because right after it i close my connections and perform a System.exit().
    Does anyone have any idea what my problem is? The loop should stop when the server doesn't send anymore lines from the html file: it shows the html closing tag everytime so that is the last line from the html file, yet it fails to exit the loop. The weird thing is: sometimes it works properly, sometimes it doesn't., and when it doesn't it doesn't show input anymore so all html text is sent by the server.
    Are there other ways to make the program exit the loop when all the lines from the html file are sent?
    The input stream i use is a buffered inputstream reader:
    input = new BufferedReader(new InputStreamReader(c.getInputStream()));
    Hope you understand the problem :)

    1. You didn't show what kind of connection u get. For example HttpConnection may be looped due
    to response redirection.
    2. I think the best practice for the case is to read bytes from the stream but not lines, for instance:
    int c = 0;
    while( (c=in.read())>=0 ){
    .... do something
    }

  • No Oracle HTTP server service

    Hi,
    I have installed the Oracle Databse XE, I try to start Htmldb and I receive a message that it doesn't find the page. I tried with http://127.0.0.1:8080/htmldb, http://127.0.0.1:8087/htmldb and http://127.0.0.1:7777/htmldb, also replacing 127.0.0.1 by localhost.
    I found that the Oracle Http Service doesn't exist.
    So how can I start or create the Oracle HTTP service?
    Thanks

    The HTTP service is built into the XE database listener, not a separate process like Apache. Do a 'lsnrctl status' from a command prompt and see if your listener is running and what port it is listening on.

  • Oracle HTTP Server as web tier for OBIEE - Best Practices?

    Hi All,
    A bit of a cross-topic issue - IHAC which wants to add a web tier (in a form of additional DMZ server with Oracle HTTP Server installed) to existing OBIEE installation.
    Are there any best practices regarding all the security aspects - installations, ports, SSL, certificates, keystores etc. ?
    Thank you in advance,
    Roman

    Am not using weblogic, I'm doing standalone setup
    Standalone:
    FMW 11g Web-Tier products are configured without a domain and administered from the command line. In this case, be sure to UN-check the selection for “Associate to WebLogic Domain” during the installation prompts and uncheck the web cache.. Only OHS is installed.
    Is it possible to install sun jdk 64 bit on AIX 7.1 machine.. ?

Maybe you are looking for

  • BADI for purchase order item confirmation?

    Hi all, In Purchase Order change mode (ME22N), we want to calculate the delivery date based on the confirmation date that was entered in the PO item detail, confirmation tab (instead of based on the PO creation date). Please help by specifing Which B

  • Extract Sales order doc  - performance issue

    Dear all, I need to extract SO# and SO line item. The only filtering key that i have right now is:     Sold-to party number -> from SO header By looking at it, I CAN NOT select whole VBAK then scan VBPA order by order. Hence I explore the possibility

  • Genuine Toshiba upgrade tells me not genuine

    From time to time Windows tells me on startup that my copy may not be genuine and requires activation. I click through to activate and it does it in a split second. Genuine Toshiba Upgrade DVD sent to me from Toshiba. Upgraded from Vista. Satellite L

  • Does handoff work if you are using your mac as a hotspot (via ethernet) for your iPhone?

    I have an iPhone 6 running the latest iOS and a MacBook Air 2012 with Yosemite. Once I head back to school, its back to using an ethernet connection for my Air (with an adapter of course) and using this ethernet connection as a hotspot for my phone.

  • Tick Mark in Checkbox - Adobe Form

    Hello All, Please can anybody suggest me how to change the 'X' symbol in checkbox to tickmark in Adobe form. Thanks a lot in advance! Regds, Sushmitha