Apache 20 on Windows working with WLS 6.1 ????

Did anyone ever get this to work?
Thanks
Brian

More or less, but you need Apache 2.0.16 (alpha). Apache2 on Windows is
expected to be supported from WLS 6.1 SP3 onwards I understand.
:E
Brian wrote in message <3c3e14c2$[email protected]>...
>
Did anyone ever get this to work?
Thanks
Brian

Similar Messages

  • Any recomdations for B2B integration product to work with WLS?

    Hi, any recomdations for B2B integration product to work with WLS?
    Thanks
    Wasiq Hasan
    [email protected]

    Yes:
    http://www.beasys.com/press/releases/2000/0607_collaborate_eap.html
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    "Globalink" <[email protected]> wrote in message
    news:3978d8f8$[email protected]..
    Hi, any recomdations for B2B integration product to work with WLS?
    Thanks
    Wasiq Hasan
    [email protected]

  • Apache Plugin is not working with Cluster Entry in httpd.conf

    Hi Guys,
    We have a very particular issue that is happening here in our production environments. Before explaining the issue to you, I will just give a brief of our architecture.
    We are using Weblogic Portal Platform SP4.
    Our current Production Domain Consists of 1 Admin Server and 2 Managed Servers. The managed servers are in a cluster.
    We have two Linux boxes on which the weblogic servers are running. These two machines have IPs: x.x.x.58 and x.x.x.59. Now, the Admin Server and managed Server 1 are started on the machine x.x.x.58 and managed server 2 is started on the machine x.x.x.59. Both the managedServers listen on port 8007.
    This entire setup mentioned in the above paragraph is at a location A (lets say).
    Now, the requests are proxied to the managed server cluster using BEA's Apache plugin residing on Apache. Apache is running on two Linux boxes that are present at a location B.
    Location B is connected to Location A by a dedicated WAN Link.
    Now, before the two Apache servers there is a physical Load Balancer that balances the requests between the two Apache boxes.
    This means that whenever there is a request from the Internet to the weblogic cluster, the load balancer first sends it to either of the Apache servers and then the BEA Apache plugin on that Apache forwards the request via the 2 mbps WAN link to the weblogic cluster.
    Now following is the description of the issue we are facing. We donot know whether the issue is with the plugin or with weblogic server.
    In order that the plugin load balances the requests between the servers in the cluster and for failover, the following entry was put in httpd.conf on both the Apache Servers.
    WebLogicCluster y.y.y.11:8007,y.y.y.13:8007
    Note: Because of the WAN link there is natting used. This implies y.y.y.11 is natted to x.x.x.58 and y.y.y.13 is natted to x.x.x.59.
    Here in lies the issue. When we use this plugin entry the following issue occurs.
    1.     First we go to the home page and login.
    2.     The user is then redirected to a Portal Desktop fitting those credentials.
    3.     Now on this Portal Desktop, invariably whenever we click any of the desktop's links, an HTTP 403 is thrown. This error is thrown because on the desktop there are entitlements so that it cannot be accessed without a user logging in with credentials. But this error indicates that the server is losing the session and entitlement details.
    Why does this happen?
    As a result, we cannot use that plugin entry. The current entry we have is
    WebLogicHost y.y.y.11
    WebLogicPort 8007
    As you can see, here we are only redirecting to one managed server. This entry is not what we want, obviously because if that server fails, the plugin wont know which other server to pass the request on to. Also in this case there is no load balancing.
    Our issues our,
    1. How to resolve this plugin entry issue. How can we use the cluster entry without encountering this HTTP 403 Error?
    3. Consider the following sequence of steps.
    - Request for the home page is served by Apache Server 1
    - User logins in, the login request is sent by the Load Balancer to Apache Server 1 and plugin on Apache Server 1 sends it to the cluster via WAN l ink. Then the internal mechanism works with creating the session id and primary server and secondary server and logs the user in and sends the response via Apache Server 1.
    - Now, the user clicks a link on the desktop. The request now goes to the load balancer and it sends it to Apache Server 2.
    The question is now does the plugin on Apache server 2 correctly understand and send the request to the primary server of that session.
    Pls help me as to giving me some direction in resolving this issue

    From your Xorg.0.log:
    (II) fglrx(0): DRIScreenInit done
    (II) fglrx(0): Kernel Module Version Information:
    (II) fglrx(0): Name: fglrx
    (II) fglrx(0): Version: 8.49.7
    (II) fglrx(0): Date: May 12 2008
    (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    (WW) fglrx(0): Kernel Module version does *not* match driver.
    (EE) fglrx(0): incompatible kernel module detected - HW accelerated OpenGL will not work
    You have to quit X, then rmmod and modprobe the kernel module - you're still using the old one.  (a reboot would technically fix it too)
    # rmmod fglrx
    # modprobe fglrx
    # dmesg | tail
    The dmesg output should say you've successfully loaded the 8.501 driver.

  • Statement.cancel() no longer works with WLS 8.1?

    Has anyone else had a problem with the cancel() method in oracle.jdbc.OracleCallableStatement
    on WLS 8.1 not doing a very good job of killing the thread in Oracle? We were
    using cancel() with weblogic.jdbc.pool.CallableStatement on WLS 6.1 and it does
    a very good job of killing the query on the Oracle side. But almost all of this
    package has been removed and we've been told we need to use the Oracle vendor
    package to get our stuff to work on 8.1. I decompiled both classes and they each
    have very different implementations of the cancel() method.
    I think I've managed to convert all of our DB access classes to the Oracle vendor
    package successfully, with the exception of this issue. We use cancel() let users
    cancel large queries and to cancel an existing query if a user tries to run a
    new one. Since we implemented it we've had a huge performance boost from the lack
    of runaway queries in the DB. It would be a real pain if we can't find a way to
    get the Oracle version to work. Any help or tales of similar experiences would
    be greatly appreciated.
    thx a lot,
    Matt Savino

    I did a search on Oracle MetaLink. I didn't see any Oracle-confirmed
    bugs related to cancel. I did see one user in the JDBC forum that
    was having a problem with a remote (not on the local machine)
    cancel. At this point, this case will need to be worked through
    support - they will need to generate a reproducer and assuming they
    do, file a tar with Oracle.
    "Stephen Felts" <[email protected]> wrote in message
    news:[email protected]...
    Regarding the wrappers - now I remember discussing this with you in thebeta newsgroup about a month ago.
    The goal was to make it transparent that everything was changed to bepassthrough in 8.1.
    The good news is that you can now use the vendor interface directly andget their extensions
    directly. That means that the wrapper for Oracle will be different fromthe wrapper for DB2.
    Further, any new excentions in the interface will become visible to theapplication.
    >
    The bad news is that this only works when the vendor has a definedinterface; it doesn't work
    if only a class is defined.
    This is a problem for some of the Oracle data type classes that don't havedefined interfaces
    and the reason why weblogic.vendor.oracle interfaces still need to be usedfor these classes.
    That also applies to BEA classes and weblogic.jdbc.pool only had classesdefined, not interfaces.
    >
    We should have documented change.
    Regarding the real problem of cancel(), the WLS JDBC code is not doinganything here
    except passing the cancel call through to the thin driver. My guess isthat this is
    a problem in the thin driver. I haven't had a chance to research this onthe Oracle site yet.
    >
    >
    "Matt Savino" <[email protected]> wrote in message
    news:[email protected]...
    >>
    Thanks a ton for your quick reply on this. On recommendation from yoursupport
    team (case 426562) here is the primary line that we had to change:
    [old] weblogic.jdbc.pool.CallableStatement cStat
    =(weblogic.jdbc.pool.CallableStatement)connection.prepareCall(call);
    >>
    [new] - oracle.jdbc.OracleCallableStatement cStat
    =(oracle.jdbc.OracleCallableStatement)connection.prepareCall(call);
    >>
    (FYI - We need this to take adavantage of some of the advanced Oraclefeatures
    like returning multiple ResultSets. We'd like to avoid using the OCIclient if
    possible, assuming that would even solve this.)
    Further down in the code, here is the cancel() method:
    public void cancelCall() {
    try {
    if (cStat != null) cStat.cancel();
    releaseConnection();
    catch (Exception e){ e.printStackTrace(); }
    In both cases the cancel() call throws no error, but only on the oldversion do
    we actually see the thread die promptly in Oracle.
    Thanks again for your help on this,
    Matt
    "Stephen Felts" <[email protected]> wrote:
    In versions prior to WLS 8.1, each Oracle extension had to be
    individually,
    explicitly wrapped
    (and not all extensions were supported).
    In WLS 8.1, it is a clean passthrough directly of all Oracle interfaces
    using a dynamic proxy so that
    all Oracle extensions show through. The only additional work that WLS
    is doing to to
    ensure that transactions are managed correctly (which shouldn't have
    an impact here).
    Note that in versions prior to WLS 8.1, you were using classes12.zip
    for the client and now you are using ojdbc14.jar. There are
    some big differences in this client implementation.
    Maybe you should try testing this standalone without WLS in the picture
    to see
    if this is a driver problem. WLS doesn't have the code that isresponsible
    for killing the thread in Oracle.
    I'm not sure I understand what code you are changing. The goal was to
    preseve the interfaces
    provided in releases prior to 8.1. Code you show me an old code line
    and what you are
    changing it to? Thanks.
    "Matt Savino" <[email protected]> wrote in message
    news:[email protected]...
    >>>>
    Has anyone else had a problem with the cancel() method inoracle.jdbc.OracleCallableStatement
    on WLS 8.1 not doing a very good job of killing the thread in Oracle?We were
    using cancel() with weblogic.jdbc.pool.CallableStatement on WLS 6.1and it does
    a very good job of killing the query on the Oracle side. But almostall of this
    package has been removed and we've been told we need to use the
    Oracle
    vendor
    package to get our stuff to work on 8.1. I decompiled both classesand they each
    have very different implementations of the cancel() method.
    I think I've managed to convert all of our DB access classes to theOracle vendor
    package successfully, with the exception of this issue. We use
    cancel()
    let users
    cancel large queries and to cancel an existing query if a user triesto run a
    new one. Since we implemented it we've had a huge performance boostfrom the lack
    of runaway queries in the DB. It would be a real pain if we can't
    find
    a way to
    get the Oracle version to work. Any help or tales of similar
    experiences
    would
    be greatly appreciated.
    thx a lot,
    Matt Savino

  • Oracle wallet(oraclepki.jar) is not working with WLS 10.3.1

    An external application is storing a password in oracle wallet i.e cwallet.sso and ewallet.p12 files using OracleWallet technology (oraclepki.jar).
    I have an web application which uses this password stored in the wallet for internal use, this application works fine if we deploy it in OC4J, but if Install the same application in WLS 10.3.1 application is not able to get the password for wallet.
    Oracle wallet require only oraclepki.jar file and this jar file is bundled in the ear file.
    Can someone guide me so that we can use Oracle wallet with WLS.

    Hi
    For me no error is showing. But the whitespace is not getting removed. But this is working fine in Tomcat6.1.
    Any help is appreciated.
    regards
    jossy.

  • What version of Windows works with Mavericks?

    I have a Mac Book Pro Retina.  Operating system is 10.9.2  This is my first Apple.  Some of my needed software only works with Windows.  Which version of windows is needed?

    if you have a retina MBP, you should run the 64bit versions of either 7 or 8/8.1. it isn't tied to mavericks, it is tied to your specific machine
    http://support.apple.com/kb/ht5634

  • Does Creative Suite cs6 Master Collection V6 Windows work with Windows 8 OS

    I would like to purchase the Creative suite cs6 master collection V6 for windows, will this software work with windows 8 operating system.  In system requirements it only state's windows 7 but I have heard that some software will still work with windows 8 also.  Does anyone know if it will work with windows 8? I would like to confirm this before I order, as it is rather an expensive program.

    Here is an Adobe page that gives info on this Windows 8.1 compatibility FAQs | CC, CS6, Acrobat

  • OEPE Release 11gR1 (11.1.1.4.0)  doesn't work with WLS 10.3.4

    Hello All,
    The OSB Release 11gR1 (11.1.1.4.0) doesn't install with WLS 10.0, and it seems to be installed sucessfully with WLS 10.3.4.
    Now, when trying to create a server in OEPE Release 11gR1, it complains as it requires WLS 10.0 binary!!
    Big confusion when you try to use these new versions.
    Any hint, direction?
    Regards,
    Ragae

    The OSB Release 11gR1 (11.1.1.4.0) doesn't install with WLS 10.0, and it seems to be installed sucessfully with WLS 10.3.4.Yes, it is because WLS 10.0 is 10g release and Weblogic 10.3.4 is 11g R1 release. Morever, OSB 11.1.1.4 (OSB 11g R1 PS3) is compatible with Weblogic 11g R1 PS3 (10.3.4) only.
    Now, when trying to create a server in OEPE Release 11gR1, it complains as it requires WLS 10.0 binary!!OEPE supports the following versions of Oracle WebLogic Server:
    11g Release 1 Patch Set 3
    11g Release 1 Patch Set 2
    11g Release 1 Patch Set 1
    11g Release 1
    10g Release 3
    10.0
    9.2
    Note that there is limited support for versions 9.1, 9.0, and 8.1.
    While creating a server in OEPE choose appropriate server version in "Server Type" option.
    Regards,
    Anuj

  • Will my Nokia Lumia 520 Windows work with Linux Ub...

    I've tried connecting it to my Linux Ubuntu and it says an error syaing something like "could not lock the device."
    Are there any ways I can get my Nokia to work with it?
    Thanks. 

    You need to have Media Transfer Protocol installed. No idea if that is currently available for Linux but check the link below:
    http://en.wikipedia.org/wiki/Media_Transfer_Protocol
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Does Oracle 8.0.5 work with WLS 7.0

    We are having problems with WLS 7.0, Oracle 8.0.5 and CMP.
    Do anybody know a link or anything to help?
    Or do we have to upgrade the database to 8.1.7 (at least)?
    Regards
    Glenn Petersen

    Hi Glenn
    What is the problem you are seeing? any specific exceptions?
    sree
    "Glenn Petersen" <[email protected]> wrote in message
    news:[email protected]..
    >
    We are having problems with WLS 7.0, Oracle 8.0.5 and CMP.
    Do anybody know a link or anything to help?
    Or do we have to upgrade the database to 8.1.7 (at least)?
    Regards
    Glenn Petersen

  • Servlet reloading not working with WLS 5.1 sp8

              I downloaded and installed WLS 5.1's sp8 to fix the "java.net.SocketException: Connection aborted by peer: socket write error"
              problem. Although that problem is fixed, I have found that, however, the servlet (automatic) reloading does not
              work anymore. If I remove the sp8 from my Java system classpath and WL classpath (i.e. not using sp8), then
              the servler reloading works fine.
              Does anybody experience similar problem or have I forgot to do something?
              WLS properties/env vars setting:
              - weblogic.httpd.servlet.reloadCheckSecs=0
              - WEBLOGIC_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8.jar;...
              - JAVA_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8boot.jar;...
              Thanks in advance for any help.
              

              I've experienced the same problem with both sp6 and sp8. In both cases I performed several test, including
              - varied the value of weblogic.httpd.servlet.reloadCheckSecs
              - changes to the package depth the servlet belonged to
              - changes to the string length of the package names the servlet belonged to
              At best, the servlet would reload sometimes. I've moved back to sp5 and the problem has subsided.
              Note: I did not try registering the servlet to see how that would effect the dynamic reloading.
              Hope this helps
              - Dave
              "Michel Dinh" <[email protected]> wrote:
              >
              >I downloaded and installed WLS 5.1's sp8 to fix the "java.net.SocketException: Connection aborted by peer: socket write error"
              >problem. Although that problem is fixed, I have found that, however, the servlet (automatic) reloading does not
              >work anymore. If I remove the sp8 from my Java system classpath and WL classpath (i.e. not using sp8), then
              >the servler reloading works fine.
              >
              >
              >Does anybody experience similar problem or have I forgot to do something?
              >
              >WLS properties/env vars setting:
              >
              >- weblogic.httpd.servlet.reloadCheckSecs=0
              >- WEBLOGIC_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8.jar;...
              >- JAVA_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8boot.jar;...
              >
              >Thanks in advance for any help.
              

  • How does the Develop Applications on windows working with Oracle on Linux

    Hi list
    I'd built a machine.
    OS: RedHat 9.0
    Database: Oracle 9iR2
    Every service works fine for me (dbstart|dbshut|dbca|oemapp xxx)
    But Now my girl friend needs to use Windows
    XP, so I can't use this machine with a monitor.
    And I would like to use TOAD or DBQwikedit to connect the
    Oracle Database Server. But they always failed by the error messages such as `DLL_UNAVAILABLE'. I was not familiar with Windows XP or 2000.
    Thanks in advanced!
    --Armani Liao

    Hi Armani,
    maybe u need to re-install the program.
    btw how did you solve the linking error of ins_oemagent.mk on the installation of the oracle 9i R2 on RH 9?
    -andi

  • Adobe flash does not work on bootcamp windows 2002 xp. down loaded to windows. works with Mac. No program folder for such. shows up in "add delete programs" (in setting) but without a file size. I have a MacBook Pro purchased new in June 2010.

    Using bootcamp (windows 2002 xp) I down loaded adobe flash player from the windows platform. told me it installed successfully. however does not work in windows, does works in mac. in xp there is no created program folder for such or created short cut. In the control panel (xp) in add/delete programs it is listed but wihout any file size or frequency used. I've deleted & reinstalled numerous times. Mac OS is 10.6.8. Windows is 32 bit. Can't find a thing that discusses this. THANKS!

    I just now posted it Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913

  • Bootcamp only saying "install windows 7" , also not working with install disks

    i want to install windows 8.1
    as u can see bootcamp only says "install windows 7"
    i think that i can't do a usb drive install without deleting everything off the only usb stick i have, right?
    so i have an install disc instead, like u used to be able to do
    should it be working with a disc?
    i have a copy of windows 7 as well, so i even tried to install 7 off a disc and this is the message i get when i have either the 8.1 or 7 disc in the drive and i click "continue"
    i also figured it would give me the option of how space to allocate before it asked for the install disk

    For Macs with built-in Optical drive, you need the Windows installer on a DVD. What year/model is the Mac? (The option to create USB Installer is missing which is also a clue).
    The Windows DVD is identified as 'legitimate'. From Boot Camp 5.1: Frequently asked questions - Apple Support
    Which versions of Windows work with Boot Camp 5.1?
    Boot Camp 5.1 supports 64-bit, non-Enterprise versions of Windows 7, Windows 8.0, and Windows 8.1. This version of Boot Camp doesn't support Windows XP, Windows Vista, or any 32-bit version of Windows. Depending on your Mac, you may be able to use an earlier version of Boot Camp to work with other versions of Windows. For details, see the Boot Camp system requirements for Microsoft Windows.
    Also, from BC Info.plist...
    <key>Win7OnlyModels</key>
        <array>
            <string>MacBook7,1</string>
            <string>MacBookAir3,2</string>
            <string>MacBookPro5,5</string>
            <string>MacPro2,1</string>
            <string>Macmini4,1</string>
            <string>iMac10,1</string>
        </array>

  • Configuring IIS to work with Tomcat - I can't find a good help document

    Hello All,
    I am relatively new with Java and I am just now trying to learn Tomcat and servlet technologies. I can get the servlets working on my personal computer, yet I cannot get it configured for the server. From all the forum posts and web sites I have researched, it is my understanding that there is a configuration process that needs to be done to allow IIS to request the Tomcat servlet. However, maybe I'm just plain dumb, but I can't understand all the how-to's that I have found.
    I am assuming I DLed the appropiate .dll file and I placed it in Tomcat's bin folder.
    But then I have to create a properties file? I have no clue how to do this.
    I am still messing with the instructions, etc., but if anyone has any suggestions, or maybe a link to a dummie-fied How-to page, that would be extrememly helpful.
    I am currently running IIS on a win2k server.
    Thanks guys.
    (btw, for people who are having trouble setting the environment variable, with win2k, I was trying to do it with DOS, and it did not work. However, using the control panel > system > I was able to do it and the setting "stuck")

    No, you don't need Apache to make Tomcat work with ISS.
    There's a Wrox book entitled "Professional Apache Tomcat" that has a chapter on how to mate Tomcat with IIS. It gives step-by-step instructions that I've followed successfully a number of times.
    There are a few Tomcat books on the market now. I'd be surprised if they didn't address this. Go to Borders and pick one up. - MOD

Maybe you are looking for

  • Windows 8.1 workstation issues

    Hi I have a new Windows 8.1 workstation connecting to OES 2 SP1 servers using Novell Client 2 SP3 for Windows 8 (IR5). A couple of questions: 1. It appears that the client masks local administrator accounts at login. How are people dealing with singl

  • Reverse Calculation in Pricing

    Dear All, I have following scenario to be configured in sd pricing procedure. MRP  :                 145 - (this will be entered bu user or condition record) Trade Disc.(20% on MRP):   29     Promo disc (3% on MRP) :    4.35 Price after  Disc. : 111.

  • How to use type cast change string to number(dbl)?can it work?

    how to use type cast change string to number(dbl)?can it work?

  • UDF - formatted search help using query

    I've created a UDF for 'activities' called U_BP_Link - it has a formatted search query which simply displays all data in the OCRD business partner database.  I wanted to also fill in a UDF which would display the 'description' of the BP that was sele

  • Remote Panel server monitoring and control by multiple users

    Hi . . . ..               I just did what is in below attached image. . . . Now I have to control as well as monitor the VI file which is in server PC. But If I supposed to use below steps(please refer image), the clients can be control the VI sepera