OAS problem

How to configure OAS 4.0.8.1 to receive connections with the IP address instead of the domain name ?
Example : http://10.71.205.25:8888/
When I try somethig like this an error message appears :
The request did not specify a valid virtual host.
Any ideas ?
Thanks
null

Try to add the IP address into the listener configuration for this port to OAS 4.0.8.1
QUOTE]Originally posted by Rogerio S. Boaventura ([email protected]):
How to configure OAS 4.0.8.1 to receive connections with the IP address instead of the domain name ?
Example : http://10.71.205.25:8888/
When I try somethig like this an error message appears :
The request did not specify a valid virtual host.
Any ideas ?
Thanks
null

Similar Messages

  • OAS - Problem starting Apache

    Hi. I have this problem.
    When I start opmn ($ opmnctl startall), the httpd server don't start. I can see httpd process
    $ ps -ef |grep http
    oracle 4226 4172 0 09:52:07 ? 0:01 /u01/app/oracle/product/10.1.3.1/OracleAS_1/Apache/Apache/bin/httpd -d /u01/app
    but opmnctl have an error:
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=wbd01bi:6200
    0 of 1 processes started.
    ias-instance id=J2EEOBI.wbd01bi
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=598157923,pid=4226)
    time out while waiting for a managed process to start
    Log:
    /u01/app/oracle/product/10.1.3.1/OracleAS_1/opmn/logs//HTTP_Server~1.log
    When I check status of opmnctl i have this:
    HTTP_Server | HTTP_Server | 4226 | Stop
    and httpd.pid have 4226. The HTTP_Server~1.log have
    /u01/app/oracle/product/10.1.3.1/OracleAS_1/Apache/Apache/bin/apachectl stop: httpd (pid 4226) not running
    Any help?? The OAS version is 10.1.3.3
    Thanks.
    Jordi.

    Hi Roberto.
    The HTTP_Server~1.log file only have:
    10/04/30 11:07:37 Start process
    /u01/app/oracle/product/10.1.3.1/OracleAS_1/Apache/Apache/bin/apachectl startssl: execing httpd
    10/04/30 11:09:39 Stop process
    /u01/app/oracle/product/10.1.3.1/OracleAS_1/Apache/Apache/bin/apachectl stop: httpd stopped
    The error_log no have any data.
    Thanks.
    Greetings.
    Jordi

  • [Jeveloper + EJB client - EJB on OAS] Problem connecting

    I having problems getting a simple client from within JDeveloper 3.0(Code snippet - OAS/EJB Client) talking to a simple EJB on OAS 4.0.8.
    I have deployed OK (red flag against status?) but when I run the client using port - 5512(ORB port)I get the message below
    Anybody any ideas?
    Creating an initial context
    Looking for the EJB published as 'MyOASApp/MyEJB'
    Naming exception occurred!
    Cause: This may be an unknown URL, or some classes required by the EJB are missing from your classpath, or your OAS host is short of resources
    Suggestion: Check the components of the URL, and make sure your project includes a library containing the EJB .jar files generated by the deployment utility.
    [Root exception is java.net.UnknownServiceException: no content-type]javax.naming.NamingException: Failure to access http://hfxcap4:5512/ows-bin/rmproxy.ior; listener inaccessible or configured wrongly
    at oracle.oas.jndi.oas.SiteResolver.getIOR(Compiled Code)
    at oracle.oas.jndi.oas.SiteResolver.resolveListenerURL(Compiled Code)
    at oracle.oas.jndi.oas.SiteResolver.resolveSiteContact(Compiled Code)
    at oracle.oas.jndi.oas.SiteResolver.resolveSiteContact(Compiled Code)
    at oracle.oas.jndi.oas.SiteResolver.resolveSiteObject(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.resolve(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.WrapperContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at javax.naming.InitialContext.lookup(Compiled Code)
    at package1.MyOASAppClient.main(Compiled Code)
    **************

    HI, I have the same problem that you had, maybe did you manage through ?? Thanks for all the help you could bring me.
    Nico
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by pFrooney:
    Back Again ...
    I have tried all ao the above
    now using this code below but it fails on the lookup with the error message below:
    ..created library with client stub, using 1.1.8, moved OASRuntime to top of included libraries
    Any suggestions
    String oasUrl = "oas://hfxcap4:80";
    String oasEJB = "MyOASApp/MyEJB" ;
    // Setup the environment
    Hashtable environment = new Hashtable();
    // Turn JNDI on to OAS
    environment.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "oracle.oas.naming.jndi.RemoteInitCtxFactory");
    // Lookup the URL
    conv_package.MyEJBHome homeInterface = null;
    try {
    System.out.println("Creating an initial context");
    // Get initial JNDI context
    Context site = (Context) ((new InitialContext(environment)).lookup(oasUrl));
    org.omg.CORBA.COMM_FAILURE:
    at oracle.oas.orb.CORBA.Request._invoke(Compiled Code)
    at oracle.oas.orb.CORBA.Delegate._invoke(Compiled Code)
    at org.omg.CORBA.portable.ObjectImpl._invoke(Compiled Code)
    at oracle.oas.orb.CORBA.Delegate.is_a(Compiled Code)
    at org.omg.CORBA.portable.ObjectImpl._is_a(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.resolve(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.WrapperContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at javax.naming.InitialContext.lookup(Compiled Code)
    at CClient_package.MyOASAppClient.main(Compiled Code)<HR></BLOCKQUOTE>
    null

  • WAP through OAS problems??

    I'm trying to build the most basic of wml pages so I can start testing. I'm using OAS. When I use the phone.com emulator to pull the results up I always get the error
    HTML or Plain text.
    Can't compile this....
    I even borrowed yahoo's intro page to test the results. So for example, I get the error listed above if I use the phone.com browser.
    My output is as follows if I use a browser
    <?xml version="1.0"?>
    <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"><wml><template><do type="prev" name="Prev" label="Prev" ><prev></prev></do></template><card id="c1" title="Yahoo! Worldwide" ><p align="center"><img src="/images/yahooicon.wbmp" alt="Yahoo!"/></p><p>Y! USA
    Y! UK &; Ireland
    Y! Deutschland
    Y! France
    Y! Sverige
    Y! Espa&#241;a
    Y! Italia
    Y! Danmark
    Y! Norge
    Y! China
    Y! Taiwan
    Y! Hong Kong
    Y! Singapore
    Y! Australia
    Y! Mexico
    Y! Argentina
    Y! Brazil
    Other countries coming soon!
    </p></card></wml>
    This may be a problem with the phone.com browser, but it works fine if I actually go to the yahoo site or other wap enabled sites. Anyone run into this?
    Kurt

    Following up on my previous question.
    Looking at the DOS window accompanying my phone emulator, I see that
    Content-Type: text/html Content follows:
    And then my wml output.
    End Content-Type: text/html.
    It looks like I need to play with the mime types of my OAS settings. I'll experiment with it, but if anyone has any immediate solutions, please let me know.
    Thanks.
    K

  • Session Expired Problem on OAS

    Hi,
    I often got the error message "Session Expired" displayed on my HTML page that serves Java Servlet output after some time.
    I attempted to look through my Servlet source codes but it has no problem. In fact, it runs perfectly well on JavaWebServer2.0.
    This seems to be a OAS problem. I'm using Oracle Application Server 4.0.8.1. I attempted changing the Servlet Cartridge's "Max session idle time" and observe the behaviour. It appears that when "Session Expired" problem happened, my servlet class never get called. OAS simply display a "Session Expired" message on the web page.
    How can I avoid this? How can ask OAS to call my servlet's doGet() to create a new session when it expired?
    Anyone knows how?
    null

    Hi,
    OAS has a limitation of 300 seconds. This value cannot be changed. See the release notes.
    One possible way to get around this is to use the Oracle Supplied Session class and use the time feature in that.
    This a big limitation and I am not sure why Oracle designed the product this way.
    null

  • Session Expired Problem

    Hi,
    I often got the error message "Session Expired" displayed on my HTML page that serves Java Servlet output.
    I attempted to look through my Servlet source codes but it has no problem. In fact, it runs perfectly well on JavaWebServer2.0.
    This seems to be a OAS problem. I'm using Oracle Application Server 4.0.8.1. Sorry to post it here as I couldn't find a OAS topic.
    Anyone knows why?
    null

    Hi,
    OAS has a limitation of 300 seconds. This value cannot be changed. See the release notes.
    One possible way to get around this is to use the Oracle Supplied Session class and use the time feature in that.
    This a big limitation and I am not sure why Oracle designed the product this way.
    null

  • Redeploying an EJB onto OAS 4.0.8.2 from JDev 3.1 - problem

    My previous message should have had in the topic, OAS 4.0.8.2 instead of OAS 4.0.8.3.
    So, I'll explain my problem again:
    I'm trying to redeploy an EJB onto the OAS, and I get the following error:
    java.io.FileNotFoundException: D:\OraHome1\ows\4.0\..\apps\ejb\ChartBean\_client.jar (The requested operation cannot be performed on a file with a user mapped section open)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:102)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:62)
    at sun.tools.jar.Main.run(Main.java:96)
    at sun.tools.jar.Main.main(Main.java:760)
    at java.lang.reflect.Method.invoke(Native Method)
    at oracle.oas.tools.util.JarGenerator.createJar(Compiled Code)
    at oracle.oas.tools.util.CreateJars.main(Compiled Code)
    Creation of client jar for D:\\OraHome1\\ows\\upload\\1219ChartBeanSource.jar failed!
    I tried to go delete the client.jar file from the OAS machine, and it won't let me saying it is a sharing violation (File is in use). I deleted the EJB from the OAS, stopped the OAS, and still I cannot delete the client.jar file.
    First, why couldn't I redeploy, and second, how do I delete the _client.jar file?
    Thanks!
    null

    Hi clytle,
    I have problem about EJB,maybe you can
    help me.I use JDeveloper 3.0 to developer EJB
    and deploy it to OAS 4.0.8.1 successful. But
    the error message(show at below) always occur
    when I run the EJB client program eyerytime.
    I have no idea about this.Could you have any
    suggestion or solution about this? Have anyone else can help me?
    james 2000/6/30
    The error message :
    Root exception is org.omg.CORBA.NO_IMPLEMENT: minor code: 0 completed: No]javax.naming.ServiceUnavailableException
    java.lang.Object oracle.oas.jndi.oas.SecCosNamingContext.resolve(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanInitialContext.resolve(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanInitialContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.WrapperContext.lookup(javax.naming.Name)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(java.lang.String)
    java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
    void SimpleEJB.SimpleEJBClient.main(java.lang.String[])
    null

  • Redeploying an EJB onto OAS 4.0.8.3 from JDev 3.1 - problem

    I'm trying to redeploy an EJB onto the OAS, and I get the following error:
    java.io.FileNotFoundException: D:\OraHome1\ows\4.0\..\apps\ejb\ChartBean\_client.jar (The requested operation cannot be performed on a file with a user mapped section open)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:102)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:62)
    at sun.tools.jar.Main.run(Main.java:96)
    at sun.tools.jar.Main.main(Main.java:760)
    at java.lang.reflect.Method.invoke(Native Method)
    at oracle.oas.tools.util.JarGenerator.createJar(Compiled Code)
    at oracle.oas.tools.util.CreateJars.main(Compiled Code)
    Creation of client jar for D:\\OraHome1\\ows\\upload\\1219ChartBeanSource.jar failed!
    I tried to go delete the client.jar file from the OAS machine, and it won't let me saying it is a sharing violation (File is in use). I deleted the EJB from the OAS, stopped the OAS, and still I cannot delete the client.jar file.
    First, why couldn't I redeploy, and second, how do I delete the _client.jar file?
    Thanks!
    null

    Hi clytle,
    I have problem about EJB,maybe you can
    help me.I use JDeveloper 3.0 to developer EJB
    and deploy it to OAS 4.0.8.1 successful. But
    the error message(show at below) always occur
    when I run the EJB client program eyerytime.
    I have no idea about this.Could you have any
    suggestion or solution about this? Have anyone else can help me?
    james 2000/6/30
    The error message :
    Root exception is org.omg.CORBA.NO_IMPLEMENT: minor code: 0 completed: No]javax.naming.ServiceUnavailableException
    java.lang.Object oracle.oas.jndi.oas.SecCosNamingContext.resolve(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanInitialContext.resolve(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.BeanInitialContext.lookup(javax.naming.Name, java.util.Hashtable)
    java.lang.Object oracle.oas.jndi.oas.WrapperContext.lookup(javax.naming.Name)
    java.lang.Object oracle.oas.jndi.oas.BeanContext.lookup(java.lang.String)
    java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
    void SimpleEJB.SimpleEJBClient.main(java.lang.String[])
    null

  • Problems with the ADF runtime installer 10.1.3.3 on OAS 10.1.3

    hi, all,
    I have successfully installed an oracle application server on a linux machine and in order for ADF BC application to run on it i have to install the adf runtime libraries.
    What i did is the following:
    -I shut down the opmn of the server
    -I installed the libraries using the jdev utility
    -when i try to start the server again the OC4J process does not start and gives the following error.
    07/11/22 11:44:09 Start process
    07/11/22 11:44:15 Error initializing server: Shared library "apache.commons.logging" could not be found.
    07/11/22 11:44:15 Fatal error: server exiting
    Any help on this issue? I am not about to install the ADF runtime through the JDeveloper as the OAS is on a linux machine and I am developing on a PC.
    Regards,
    Thomas.

    Run Time Libraries Cause problem on oracle application server

  • Compilation problem in OAS 4.X

    When i do the following i get this error.
    This is one of the examples in OSA 4.X.
    It may be a classpth problem in NT.Can any body help me.
    d:\...\myStack>javac ServerStack.java
    ServerStack.java:16: Package oracle.oas.ejb.* not found in import.
    import oracle.oas.ejb.*;
    ^
    1 error
    ***********

    I have
    NT 4.0 with SP5 and IE5.0 and OAS 4.0.7.1 and
    JD1.1 ( it is OK).
    I have a very simple application and I have created one JWeb application and a cartridge.
    I have set the virtual path also correctly.
    Where should I hav the .jar file?
    In the Virtual path or in the Env Variables - ClassPath?
    Pl provide step by step help.
    Thanks.
    null

  • Problems setting up WNA with OAS 10.1.2.0.2 and Windows 2008

    Hi,
    I am trying to set up WNA with an OAS 10.1.2.0.2 in a RHEL 4 platform. I have been able to configure Synchronization and Windows External Authentication following these steps:
    http://download.oracle.com/docs/cd/B14099_19/idmanage.1012/b14085/odip_actdir003.htm#i1010999
    I have also tried to configure WNA without success with those steps.
    The scenario is here:
    * OAS 10.1.2.0.2 infra in a RHEL 4
    * Windows 2008 SP1 (only i use AD from it)
    * Windows XP (client) that should be able to log in without problems when WNA is configured
    How can make it work? I haven´t find any useful documentation
    Thanks,
    Max

    Check these out:
    http://www.freeoraclehelp.com/2011/09/oid-integration-with-ms-active.html
    http://www.freeoraclehelp.com/2011/09/enable-ssl-for-oid-instance-of-oracle.html
    http://www.freeoraclehelp.com/2011/09/oracle-password-filter-to-sync.html

  • OAS 4.0.8.2 and NLS problem

    Hi,
    I migrated from OAS 4.0.8.1 to ...2.
    When I setup the net80 configuration using Easynet config I get the following error from the testing of the connection:
    ORA-12705: Invalid or unknown NLS parameter value specified.
    It just worked fine with the earlier version of OAS.
    Anyone...pls...

    Problem solved.
    I deleted OAS 4.0.8.2.0 and installed Web-to-go. Then I installed OAS 4.0.8.2.0.

  • OAS 4.0.8.1/Redhat 6.2? WRKSF problem

    Hi, I've installed OAS 4.0.8.1 on Redhat 6.2 but when I start the processes up the WRKSF goes down after a few seconds, I've seen a previous posting on this subject had a workaround proposed by Dennis Irwin which seemed to work for many people, unfortunately it didn't for me, I've spoken to Oracle about this problem but all they say is OAS 4.0.8.1 isn't supported for the 2.2.14 kernel in Redhat 6.2, 4.0.8.2 will be but they can't say when it will be released, until then OAS is basically useless for me, has anyone any suggestions?. Thanks, Geoff
    null

    According to ORACLE representatives, OAS 4.0.8 isn't their major priority : since Oracle iAS will be available in few days, and many less CPY and memory hungry as OAS, can't you wait a bit longer ?
    An other point is that oas 4.0.8.2 will probably be one on their last release of this product ...
    Take a look at the oracle iAS white paper, the product will be more reliable and standard : essentialy based on Apache 1.3.12, mod_java, mod_pl and JServ 1.1, and Oracle 8i Cache...
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Geoff Surgenor:
    Hi, I've installed OAS 4.0.8.1 on Redhat 6.2 but when I start the processes up the WRKSF goes down after a few seconds, I've seen a previous posting on this subject had a workaround proposed by Dennis Irwin which seemed to work for many people, unfortunately it didn't for me, I've spoken to Oracle about this problem but all they say is OAS 4.0.8.1 isn't supported for the 2.2.14 kernel in Redhat 6.2, 4.0.8.2 will be but they can't say when it will be released, until then OAS is basically useless for me, has anyone any suggestions?. Thanks, Geoff<HR></BLOCKQUOTE>
    null

  • Oas 4.0.8.1 Startup Problem

    Hello,
    I'm trying to install Oas 4.0.8.1
    On a fresh NT 4.0 SP5 40bit IE 5.0O install. During startup I get the following error:
    OWS-08849: Waited 60 secs. Didn't receive initialization complete message.
    OWS-08820: Unable to start wrksf process 'wrksf'.
    Initialization Failure- Exiting OAS...
    I can get it to start up on fresh NT with SP3. But when I install SP5 the error appears. I have also tried SP6a. Has anyone had this problem? Does anyone have any suggestions?
    Thank's in advance!
    null

    Hi,
    If anyone knows causes and or fixes to this can they post solution with the title of
    FIX WRKSF TIMEOUT please. There seems to a few of us out here who would much appreciate it.
    bye for now
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by godfreym:
    Did anybody get a resolution to this problem ?
    I'm getting the following as well !!!!!oassrv: Starting wrb service 0
    ConfigProvider Server accepting requests...
    oassrv: Starting wrb service 1
    Log Server is accepting requests now...
    oassrv: Starting wrb service 2
    Web Request Broker (Version: RM 4.0.8 Windows_NT 4 00 10/20/99 21:57:40):
    Accepting requests.
    oassrv: Starting wrb service 3
    The WRB Authentication Host Server is now running.
    oassrv: Starting wrb service 4
    The WRB Authentication Engine is now running.
    oassrv: Starting wrb service 5
    Web Request Resource Manager Proxy is accepting requests.
    oassrv: Starting wrb service 6
    Initializing wrbmon ..........
    oassrv is accepting requests
    OWS-08821: oassrv process 'oassrv' is started up at pid 422.
    OWS-08849: Waited 60 secs. Didn't receive initialization complete message.
    OWS-08820: Unable to start wrksf process 'wrksf'.
    Initialization Failure- Exiting OAS...
    Execute STOP of all the OAS Processes from the OAS Manager
    <HR></BLOCKQUOTE>
    null

  • OAS 4.0.8 http listener problems

    I am running OAS 4.0.8 on NT w/ SP5. I followed the instructions for install in the latest (Jan 2000) release notes. The problem I am having is with the listeners. The admin and www default listeners start up fine, but if I create a new listener, it will not start up. The error message tells me to check the NT Event log but there is nothing there. Also there is no svwww.err file available to check because it never starts!
    I am completely lost on this one. Any help is appreciated.
    Thanks

    Try to use root for startup. Remember that port bellow 1024 is protected for root only.
    SA

Maybe you are looking for

  • How to integrate Oracle Portal running on Oracle Application Server 10.1.2

    I have an Oracle Portal running on a Oracle Application Server 10.1.2. Portal is responsible ( along with OID ) for the users authentication and authorization. There is a new JEE application that was developed recently, which the Portal users must ha

  • Can I access Infoset variable from Crystal Reports

    Hi, In order to connect Crystal Reports 2008 to the SAP environment I have the Integration kit. I have learnt that Crystal also offers InfoSet driver to connect to SAP. If I need to access SAP BI- Infoset variables inside Crystal Reports is it possib

  • PDF into Aperture or Keynote

    i am trying to import pdf images into keynote or aperture. these are single page pdf's that i dragged out of a multi-page pdf in Preview. the original pdf was created in AutoCad. these are coming up as either washed out or as having black backgrounds

  • Material Classification Data extraction fron ECC

    Hello Experts, We are trying to extract material classification data from ECC 6.0 to MDM 7.1 using mdmgx T-Code. We are using the standard SAP list of tables which is uploaded in MDMGX. On performing 'Start Extraction' it gives us the following error

  • Feature request: text notes for catalog and photos

    I would like to have ability to add plain text notes - to whole catalog, to separate directories and to a single photo. When I'm sitting with a client and walking throung photos, he often says something like: «Let's pick this photo but change color t