URL for apache plugin for linux with weblogic 6.1

Hi,
can anyone tell me, where i can find the apache plugin for linux weblogic 6.1
thanks in advance,
cheers chris

Could you give some detail for this issue? I have tried the plugin with IIS6 and it does works.

Similar Messages

  • Apache Plugin in linux for WLS6.0 sp1 and (?sp2?)

    This message is a little long,
    The following message is arranged in 4 parts where:
    1. Conclusion and Sugestions.
    2. Tests Environment
    3. Simple plugin environment
    4. Virtual Hosting with apache
    Any comment and help will be welcome
    Conclusion
    The plug-in has not been tested and documented and therefore does not
    work in the described environment. The plugin parameter needs to be :
    1. Syntaxly rewieved. The parameters not starting with
    WebLogic.... (like PathTrim, PathPrepend, ConnectTimeoutSecs,
    ConnectRetrySecs, Debug, DebugConfigInfo, StatPath, ErrorPage,
    HungServerRecoverSecs, Idempotent, CookieName,
    DefaultFileName, MaxPostSize, MatchExpression, FileCaching,
    SecureProxy, TrustedCAFile, RequireSSLHostMatch,
    SSLHostMatchOID) are confusing and couyld be bug/problem
    generators when adding other non BEA modules in apache. I
    would suggest to have all the parameter starting with a common
    root like WebLogic or Wls or something else deterministic
    2. Better documented. The module parameters in Apache need to
    get an action perimeter. For example the "LoadModule
    weblogic_module" and "AddModule mod_weblogic.c" need to be
    declared one time at the server level. But there no
    indication for the others plugin parameters if they are
    limited inside the sublocation where declared, i.e
    <VirtualHost>, <location> <file>.....
    3. Documented with configuration examples: The apache plugin is
    interlinked with what is declared in the WLS server. I would
    sugest to provide some examples on this matter. I.e how to
    relate the Apache virtual hosting with or without the virtual
    hosting in wls.
    Test Environment
    The tests described below has been done with the following system
    environment.
    Operating System:
    RedHat 7.0 + glibc updates + network uodates, kernel level 2.2.17-14
    RedHat 7.1 + updates, kernel 2.4.2-2
    Java Level:
    On the RedHat 7.0 system the default Java JVM provided in the BEA
    distribution
    On the RedHat 7.1 system the Sun JDK 1.3.1 for Linux
    Apache: 1.3.19
    DNS: one system called cordoba.paris.inetpc.com with 3 cnames added
    (w1cordoba, w2cordoba, w3cordoba)
    The Weblogic installtion is coming from a single reference system.
    This system runs under RedHat 6.2 + latest update levels. The WebLogic
    tree directory has been deployed in both systems and the JVM set in the
    proper manner. Despite the well known problem with the default webapp
    Wls 6.0 works fine and as expected. Default ports are used (7001).
    The apache environment works fine too. In a single apache environment
    and with the virtual hosting supporting the 3 cnames (w1cordoba,
    w2cordoba, w3cordoba)
    In both systems the behavior and and problems are equal.
    Simple plugin environment
    A single default web app runs under wls6.0. calling the wls60 thru the
    URI: "http://cordoba:7001" works fines and the Welcome.html default page
    is properly displayed. Similar tests have been done with a jsp page and
    works fine too.
    The httpd.conf file has been set has described in the documentation and
    as follow:
    LoadModule weblogic_module modules/mod_wl.so
    WebLogicHost cordoba
    WebLogicPort 7001
    Debug ON
    DebugConfigInfo ON
    <location /wls>
    SetHandler weblogic-handler
    PathTrin /wls
    </location>
    Problem 1: When requesting the page using the URI: "http://cordoba/wls"
    the answer from the couple apache/plugin is:
    -1- In the netscape location entry fileld we get in return:
    "http://cordoba/Welcome.html"
    -2- The response from apache is "NOT FOUND The requested URL
    /Welcome.html was not found on this server."
    -3- When requesting the page using the URI: "http://cordoba:7001" the
    return is properly rendered, and the Netscape Location entry field
    gets: "http://cordoba:7001/Welcome.html"
    -4- wlproxy.log contains:
    Sun Jun 3 16:34:19 2001
    ================New Request: [GET /wls HTTP/1.0] =================
    Sun Jun 3 16:34:19 2001 The request string is '/wls'
    Sun Jun 3 16:34:19 2001 INFO: SSL is not configured
    Sun Jun 3 16:34:19 2001 Now trying whatever is on the list;
    ci->canUseSrvrList = 1
    Sun Jun 3 16:34:19 2001 INFO: New NON-SSL URL
    Sun Jun 3 16:34:19 2001 general list: trying connect to 'cordoba'/7001
    Sun Jun 3 16:34:19 2001 Connected to cordoba:7001
    Sun Jun 3 16:34:19 2001 INFO: sysSend 343
    Sun Jun 3 16:34:19 2001 INFO: Reader::fill(): first=0 last=0
    toRead=4096
    Sun Jun 3 16:34:19 2001 parsed all headers OK
    Sun Jun 3 16:34:19 2001 INFO: Reader::fill(): first=0 last=0
    toRead=4096
    Sun Jun 3 16:34:19 2001 INFO: Reader::fill(): first=0 last=0
    toRead=4096
    Sun Jun 3 16:34:19 2001 r->status=302 returning 0
    Sun Jun 3 16:36:08 2001
    ================New Request: [GET /wls HTTP/1.0] =================
    Sun Jun 3 16:36:08 2001 The request string is '/wls'
    Sun Jun 3 16:36:08 2001 INFO: SSL is not configured
    Sun Jun 3 16:36:08 2001 Now trying whatever is on the list;
    ci->canUseSrvrList = 1
    Sun Jun 3 16:36:08 2001 INFO: New NON-SSL URL
    Sun Jun 3 16:36:08 2001 general list: trying connect to 'cordoba'/7001
    Sun Jun 3 16:36:08 2001 Connected to cordoba:7001
    Sun Jun 3 16:36:08 2001 INFO: sysSend 343
    Sun Jun 3 16:36:08 2001 INFO: Reader::fill(): first=0 last=0
    toRead=4096
    Sun Jun 3 16:36:08 2001 parsed all headers OK
    Sun Jun 3 16:36:08 2001 r->status=302 returning 0
    Virtual Hosting with Apache
    These tests aim to validate a production environment where an entry cell
    of apache servers will serve static pages and route dynamic requests to
    a set of WebLogic servers. From the Apache/Httpd point of view the
    dispatch is done first at a virtual host level and then for each virtual
    server, each different location will be served by one or multiple
    weblogic servers. A try with Apache virtual hosts in where a reroute by
    location or a full reroute has done the same results than stated in
    "Simple plugin environment".
    [att1.html]

    Hi
    I am trying to configure the following pattern:
    ->https->apache->SSL->weblogic
    using the apache plugin that you provided from the distribution.
    There is no way to let it work.
    the apache site trying to connect to weblogic is a virtual host, follows the config
    file.
    Checking the DEbugDebug config monitor it I discover that SecureProxy it is OFF
    istead of ON and checking the debug file I've got this message:
    INFO: ssl is not activated..
    It means that despite of SecureProxy set to ON, it is still working in clear.
    I have the same behaviour using 6.0, SP1, SP2 and 6.1
    (If there more documentation about it in 6.1, please let me know where!)
    Please, anyone can send me documentation about it or help me???
    # <-- Start XXXXX Virtual Host
    <VirtualHost XXXXXX>
    SSLEngine on
    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    SSLCertificateKeyFile XXXX
    SSLCertificateFile XXXXX
    <Location />
    AddHandler weblogic-handler .jsp
    </Location>
    <IfModule mod_weblogic.c>
    SecureProxy ON
    RequireSSLHostMatch false
    TrustedCAFile /ssl/certs/ca.pem
    Debug ALL
    DebugConfigInfo ON
    WebLogicHost XXXXX
    WebLogicPort XXXXX
    ErrorPage /pm/private/frame_044_error_500.htm
    MatchExpression *.jsp
    </IfModule>
    </VirtualHost>
    # <-- End XXXXX Virtual Host
    "Jong Lee" <[email protected]> wrote:
    >
    1. Syntaxly rewieved.
    Worth considering for the next major release.
    2. Better documented.
    Yes, 6.1 release is doing a much better job of documentation!
    The module parameters in Apache need to
    get an action perimeter. For example the "LoadModule
    weblogic_module" and "AddModule mod_weblogic.c" need to be
    declared one time at the server level. If apxs is used to update the module, end user should not need
    to worry about adding/changing these two lines.
    But there no
    indication for the others plugin parameters if they are
    limited inside the sublocation where declared, i.e
    <VirtualHost>, <location> <file>.....
    3. Documented with configuration examples: The apache plugin
    is
    interlinked with what is declared in the WLS server. I would
    sugest to provide some examples on this matter. I.e how to
    relate the Apache virtual hosting with or without the virtual
    hosting in wls.
    Again, better on 6.1 docs.
    Problem 1: When requesting the page using the URI: "http://cordoba/wls"
    the answer from the couple apache/plugin is:
    -1- In the netscape location entry fileld we get in return:
    "http://cordoba/Welcome.html"
    "DefaultFileName Welcome.html" should be used in your httpd.conf
    -2- The response from apache is "NOT FOUND The requested URL
    /Welcome.html was not found on this server."
    -3- When requesting the page using the URI: "http://cordoba:7001" the
    return is properly rendered, and the Netscape Location entry field
    gets: "http://cordoba:7001/Welcome.html"
    -4- wlproxy.log contains:on 6.1, if relative URI is used in sendRedirect(), PathTrim and
    PathPrepend should be taken care automatically. i.e:
    in httpd.conf:
    PathTrim /weblogic
    PathPrepend /abc
    in a jsp page:
    response.sendRedirect("HelloWorld.jsp");
    The plugin and wls will be smart enough to set Location header
    to the following:
    Location: http://apache_host:apache_port/weblogic/HelloWorld.jsp
    Then the plugin will trim the /weblogic and prepend /abc to it
    i.e:
    http://wls_host:wls_port/abc/HelloWorld.jsp
    Virtual Hosting with Apache
    These tests aim to validate a production environment where an entrycell
    of apache servers will serve static pages and route dynamic requests
    to
    a set of WebLogic servers. From the Apache/Httpd point of view the
    dispatch is done first at a virtual host level and then for each virtual
    server, each different location will be served by one or multiple
    weblogic servers. A try with Apache virtual hosts in where a reroute
    by
    location or a full reroute has done the same results than stated in
    "Simple plugin environment".Absolutely. in 6.1 you can specify different weblogic hosts per
    vhost. Even you can use MatchExresspion or <Location> to define
    different parameters per mime type and path:
    i.e:
    MatchExpression *.jsp WebLogicHost=www.bea.com|WebLogicPort=7001|DefaultFileName=/Welcome.html
    MatchExpression *.html WebLogicCluster=weblogic1:7001,weblogic2:7002|Debug=ALL
    <Location /weblogic>
    WebLogicHost thankyou.com
    </Location>
    Where Location takes the precedence.
    Anyway, 6.1 apache plugin should be a much better modules.
    We also support apache2.0(beta) in 6.1. Unfortunately,
    the apache2.0 binaries were unable to be included in the 6.1
    beta installer. There might be a separate down-load for that.
    Thank you for your great suggestions/comments.
    thanks
    Jong

  • Pls provide metalink URL for Jdeveloper10g with OAExtension

    Hi All,
    Today, I attended a demo of Oracle University on "Oracle Applications R12 Technology" . In the demo, it has been mentioned that Oracle web pages personalization/customization/extension is done using "JDeveloper10g with OA Extn" and the tool can be downloaded from Oracle Metalink.
    But I made a rigorous(i think so) search for downloading "JDeveloper10g with OA Extn" but unable to find it.
    Could anyone help me out by providing the metalink URLs for JDeveloper10g with OA Extn which works with R12 of Oracle E-Business Suite.
    Thanks a ton in advance.
    ~Sivakumar.M.R.

    Hi Siva,
    Refer this link to get correct version of OA Framework.
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416708.1
    If your new to OA Framework, then the following link might be helpful for you.
    http://prasanna-adf.blogspot.com/2008/11/new-to-oaf.html
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to integrate Oracle Enterprise Pack for Eclipse with Weblogic Portal

    Hi
    I am following this documentation http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14252/setup_dev_env.htm#i1013214
    to setup my development environment for developing portal applications, but I cannot set it up, my eclipse does not have PORTAL perspective.
    I have downloaded the Oracle Enterprise Pack for Eclipse 11gR1 (11.1.1.5) and the Oracle WebLogic Portal 10.3 as mentioned in the documentation.
    The Oracle Weblogic Portal 10.3 includes a workshop version of eclipse, but that is not based on a recent Eclipse, that is why I would like to use the Oracle Enterprise Pack for Eclipse 11gR1 (11.1.1.5).
    It is weird int he Oracle Portal 10.3 installation that I cannot install the Weblogic Portal without the Workshop.
    Could you help me in this? How can I integrate the Oracle Enterprise Pack for Eclipse with Weblogic Portal?
    Thank you.

    For WebLogic Portal tooling you have a couple of options. For WebLogic Portal 10.3 and older, Workshop for WebLogic will be your tooling environment.
    Starting in WebLogic Portal 10.3.2, which released this year, the development tools have migrated to Oracle Enterprise Pack for Eclipse. The WebLogic Portal 10.3.2 installer will install both the runtime and the IDE configured with additional WebLogic Portal Eclipse features (Portal Project Configuration, Perspecitives, Palettes, Deployment, etc).
    If you are interest in the latest version, you can download from the WebLogic Portal OTN page - http://www.oracle.com/technology/products/weblogic/portal/index.html

  • Hardware Acceleration for Linux with FireFox 4

    '''Is this just a myth?'''
    I am using Ubuntu 10.04 64-bit and FireFox 4 stable with a GT 240 and the latest nvidia binary driver. I have this set up as a HTPC through HDMI cable and have audio as well through the HDMI. It works wonderfully! I can watch x.264 and my intel celeron 2.8 GHz doesn't even get out of bed thanks to hardware acceleration.
    Now, that is NOT the case while on the web... It is a tall order to watch HD quality flash (although with the [http://demos.hacks.mozilla.org/openweb/HWACCEL/ mozilla hardware stress test] I get 45 FPS). It seems to be that hardware acceleration is still very much in its infancy in the linux environment with firefox 4.
    After searching through many threads I have come to find some useless information.
    ''MOZ_ACCELERATED=1 MOZ_GLX_IGNORE_BLACKLIST=1 firefox'' - does nothing
    ''layers.acceleration.force-enabled=true'' - does nothing
    There seems to be an issue with firefox not recognising the installed graphics card. On Windows machines, the about:support page will report all the graphic card information in the Graphics section in addition to '''GPU Accelerated Windows 0/1''' or '''1/1'''. This seems to NOT be the case in linux. Why? Why doesn't firefox discover the installed graphics card?
    Now, if I have missed a memo or been a total newb in this attempt to take advantage of Accelerated Hardware in FireFox 4 for linux '''PLEASE ENLIGHTEN ME''' as to what I need to do. If I have done all the things needed to achieve hardware acceleration and it is just not possible, than the good 'ol folks at mozilla should be a little more transparent when they proudly proclaim that they have released a hardware accelerated browser.
    If anyone can shed some light on this predicament please post. If anyone has hit the same wall as I have please post... rant... w/e...

    MulTirow Bookmarks Toolbar For FireFox 4 Here >> http://userstyles.org/styles/29428
    STEP 1: INSTALL ADDON >> https://addons.mozilla.org/addon/2108?src=external-installbox
    STEP 2: GOTO >> http://userstyles.org/styles/29428 + CLICK "INSTALL WITH STYLISH"
    STEP 3: RESTART FIREFOX 4

  • Re-Packaged 9IASR2 for Linux with Patches release date?

    Anyone have a date when Oracle are going to re-release the linux distribution for 9iasR2 with all the patches.
    It took me 3-4 weeks to get everything working on Linux. I also installed the Win2K version which was very smooth. I plan to re-install on Linux but onto two boxes, one for the infrastructure server and one for the
    app server because of the memory and processing requirements. I don't want to go through the pain of that linux installation again!!!!. I have several projects on hold for this, so a timescale would be very useful.

    Wait until it becomes available on OTN, and then place the order.
    HTH,
    Ashesh Parekh
    Oracle9iAS Product Management Hi Ashesh,
    Have we got any update on the release date. My project deadline is at the end of the month. If the linux repackaged version is going to be later than that I will have to install on Mircosoft Win2k!
    Regards
    Orlando

  • Old jmf for linux with mp3

    sun still hasn't reenabled the web page for the download of jmf for linux because of an MP3 issue.
    I can't test my application because of this!
    Can some non-Sun employee PLEEEASE email me a copy of the OLD jmf for Linux that plays MP3? Or tell me where I can get it???? I will only going use it internally for testing until the licensing issue gets straightened out, and, anyway, this is for a medical transcription app, NOT a mass-market broadcast pirated music over the web app
    PLEASE, I need some help.

    Hi If u have received the old copy pls sedn it to me also.
    My Id id [email protected]

  • Which edition of DB2 Connect neccessary for connection with WebLogic 6.1

    Hi!
    Who can tell me, which editions of DB2 Connect work together with WebLogic
    6.1?
    - the hardware-related Personal Edition
    - the Enterprise Edition run on an extra server, which works as a gateway
    between DB2 and its clients.
    - the CAE-Client (Client Application Enabler)
    We would prefer the Personal Edition - if possible - does anyone has
    experiences? IBM can not give us this neccessary information.
    Thanks
    Marita

    Hi Marita,
    WebLogic will work with any JDBC 2.0 compatible driver.
    Generally, a gateway would add some overhead. You could
    setup a WebLogic connection pool using the simplest way
    and see if it satisfy your needs.
    Regards,
    Slava Imeshev
    "Marita León Ohl" <[email protected]> wrote in message
    news:[email protected]..
    Hi!
    Who can tell me, which editions of DB2 Connect work together with WebLogic
    6.1?
    - the hardware-related Personal Edition
    - the Enterprise Edition run on an extra server, which works as a gateway
    between DB2 and its clients.
    - the CAE-Client (Client Application Enabler)
    We would prefer the Personal Edition - if possible - does anyone has
    experiences? IBM can not give us this neccessary information.
    Thanks
    Marita

  • Apache2.2 Plugin configuration issue with Weblogic 9.2

    Hi All,
    We are trying to configure apache plugin for weblogic 9.2 (Apache Proxying for Weblogic) in Solaris Spark. When we are testing the httpd.conf configuration using apachectl configtest we are getting following error.
    httpd: Syntax error on line 80 of /data/httpserv/apache-2.2.10/conf/httpd.conf: Cannot load /data/httpserv/apache-2.2.10/modules/mod_wl_22.so into server: ld.so.1: httpd: fatal: /data/httpserv/apache-2.2.10/modules/mod_wl_22.so: wrong ELF class: ELFCLASS32
    We were using the mod_wl_22.so file provided for Solaris/Spark in the link mentioned below.
    http://download.oracle.com/otn/bea/weblogic/server103/server103_apacheplugins.zip
    Apache 2.2.10 installation that we are using is a 64-bit version. It seems mod_wl_22.so provided in the above link for solaris/spark is a 32-bit version. Is it possible to get a 64bit version of this library?
    Anybody has worked on same/similar kind of issues? Is there any workaround, for this?
    Input/thoughts from anyone is highly appreciated

    Hello, I'm not an expert at confugring Apache and WebLogic servers. Hopefully someone else who does know what they are doing will reply to your question.
    I found your question because I am also working on an Apache / WebLogic install for an Ariba installation (in Windows 7).
    However I did support a configuration of WebLogic on Solaris with Apache. I remember that the guy who did the Apache install mentioned that Apache needed to be compiled correctly - below is what he sent:
    Apache server compilation options:
    ./configure prefix=/usr/local/apache_2.0.63 enable-mods-shared=all enable-ssl=shared enable-ssl with-ssl=/usr/local/ssl enable-proxy enable-proxy-connect enable-proxy-http --with-mpm=worker
    I am still looking into the differences between the plugins (mod 22 so vs mod 20 so). Navigating the Oracle download options can be bewildering. I found the link to download a full zip file of plugins (below).
    Oracle WebLogic Server Web Server Plugins 1.1
    http://www.oracle.com/technetwork/middleware/ias/downloads/wls-plugins-096117.html
    I clicked on "all versions."
    Does the WLSPlugin1.1-64bitApache2.2-solaris-sparc.zip contain what you need?
    Great luck to you!
    -Tom Tobey

  • HP Application LifeCycle Management - URL for use with another Project Management Tool

    I'm trying to find a way to get a ALM Requirement URL that will work with other applications.  The URL from the COPY URL option (when right-clicking on the requirement) works for e-mails but I can't seem to get it to work for another project management application (Daptiv).  We would like to insert the QC Requirement link to another application where the user can access the requirements directly when clicking on the QC hyperlink.
    We have HP Application Lifecycle Management Software Version 11.00 Enterprise Edition.
    Any help is greatly appreciated.
    Thanks.

    As Abhishek mentioned we dont need a calc manger or EPMA to migrate classic planning applications. You just need to log into shared services, expand file system and take a file system export, paste the export to the destination environment, now use it as a source and perform an import in the shared services of destination server. It worth having a look at:
    http://blogs.oracle.com/HyperionPlanning/entry/lifecycle_management_from_scratch
    Cheers...!!

  • Compiling command line utilities for Linux with static libc

    Hi,
    The following command used to compile and link BerkeleyDB with both static libdb and static libc:
    make clean
    env LDFLAGS=-static ../dist/configure --disable-shared
    make
    Now the command only statically links libdb and not libc.
    [root@fedora8 ~]# ldd /usr/local/BerkeleyDB.5.3/bin/db_dump
    linux-gate.so.1 => (0x00110000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00c15000)
    libc.so.6 => /lib/libc.so.6 (0x00a88000)
    /lib/ld-linux.so.2 (0x00a69000)
    [root@fedora8 ~]#
    It appears that the link of the command line utilities has now been moved into "make install".
    Can anyone suggest how to also force a static link of libc?

    The command line utils are in /opt/novell/ncl/bin. There are man pages for
    them to describe how they work. If you run "ncl_man" it will list all the
    NCL man pages.
    >>> On 9/1/2006 at 8:42 AM, in message
    <[email protected]> , Joseph
    Marton<[email protected]> wrote:
    > Are there any command-line utilities for the 1.2 client? I'm thinking
    > what if my X gets hosed and I want to access my server. It'd be nice to
    > be able to still login and map drives. Granted there's always
    > samba/CIFS,
    > but if I have a working Novell Client installation and my X just fails
    > for
    > some reason it'd be nice to still utilize the Novell Client.
    >
    > Joe

  • Network emulator for Linux with a good gui?

    Hi all,
    At work I use NEWT (Network Emulator Toolkit for Windows) http://blog.mrpol.nl/2010/01/14/network … r-toolkit/ in conjunction with a packet capture tool. I would like to see if I can use Linux instead; I will use Wireshark for packet capturing/analysing, but I need an equivalent GUI tool to replace NEWT. What NEWT does for me: block ports, ip ranges, throttle bandwidth, etc.
    From searching I found netem, but I can't find an actively developed gui for it. Does anyone know what I can use?
    Thanks.

    wrm wrote:EDIT: Take a look at https://wiki.archlinux.org/index.php/Fi … _frontends
    Thanks! I should've thought of looking at the Firewalls wiki page; it didn't cross my mind that there would network shaping tools there. Looks like I should be covered with any luck!
    I think Shorewall/Vuurmuur could replace NEWT, and then I'd use Wireshark on the side for the packet analysing. I see Shorewall has a webmin config tool, which would be great for others to learn.

  • Oracle Not Avaliable on 8.1.6 for Linux with JDBC Thin Connection

    HI All,
    While I m trying to connect the Oracle 8.1.6 server with the JDBC Thin driver I m getting Error
    ORA - 01034 Oracle not Available.
    I m using jdk 1.2.2 and in the Classpath I have given the path for classes12.zip.
    I have tried using classes111.zip file though I m getting same Error Message.
    Anybody can help me out.
    Thanx,
    Chirag oza
    null

    did you have your oracle database running?
    01034, 00000, "ORACLE not available"
    // *Cause: Oracle was not started up. Possible causes include the following:
    // - The SGA requires more space than was allocated for it.
    // - The operating-system variable pointing to the instance is
    // improperly defined.
    // *Action: Refer to accompanying messages for possible causes and correct
    // the problem mentioned in the other messages.
    // If Oracle has been initialized, then on some operating systems,
    // verify that Oracle was linked correctly. See the platform
    // specific Oracle documentation.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by chirag oza ([email protected]):
    HI All,
    While I m trying to connect the Oracle 8.1.6 server with the JDBC Thin driver I m getting Error
    ORA - 01034 Oracle not Available.
    I m using jdk 1.2.2 and in the Classpath I have given the path for classes12.zip.
    I have tried using classes111.zip file though I m getting same Error Message.
    Anybody can help me out.
    Thanx,
    Chirag oza
    <HR></BLOCKQUOTE>
    null

  • Can I use Labview for linux with a student license?

    I recently aquired a copy of Labview, student edition. The package only includes the Mac and Windows versions. Would it be possible for me to obtain/use the linux version under this license? How?

    Hi, thanks for using the National Instruments' Forums,
    I would recommend you to contact your technical representative in order to give you detailed information about the Linux version. From what country are you? I can help you contacting you and your technical representative.
    Thanks again for using the Forum
    NorSa
    AE LATAM
    NorSa
    NI Applications Engineer Latin America
    Para Soporte entra aquí

  • CC for Linux with Sun Studio 12 gets Signal 11 parsing gtk.h

    I just install SunStudio 12 on a Fedora 7 Linux box, and it appears it can not compile
    even the simplest gtk application written in C++.
    /opt/sun/sunstudio12/bin/CC -c -g -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include tstgtk.cc
    >> Signal 11:
    while processing /usr/include/gtk-1.2/gtk/gtk.h at line 1.
    tstgtk.cc only contains the one line
    #include <gtk/gtk.h>
    The same command works if I replace the CC with lowercase suncc or with g++.
    /opt/sun/sunstudio12/bin/sunCC -V
    sunCC: Sun C++ 5.9 Linux_i386 2007/05/03
    uname -a
    Linux galactica-304 2.6.21-1.3194.fc7 #1 SMP Wed May 23 22:35:01 EDT 2007 i686 i686 i386 GNU/Linux

    This is probably different problem since the one mentioned above is in compiler's front end, which shouldn't depend on target architecture option, which from what I know affects back end only.
    Can you post source code of hello.cc here so that we can reproduce it?
    Thanks!

Maybe you are looking for