Does Weblogic 10 supports HTTP/1.0..?

Hi,
My application contains an executable client. This client when invoked calls a servlet in the server. This application is working fine in weblogic 6.1 sp3 now. Iam trying to migrate this application to weblogic 10. However, when I invoke the executable client, its not reaching the servlet. Then I found the following logged in the access logs.
"152.67.221.214 - - [06/Sep/2007:22:47:09 -0700] "POST /invoke/wm.server/connect HTTP/1.0" 401 1518"
Note: I dont have the source code of the executable client..
My doubts:
Does weblogic supports HTTP/1.0...?
how to make this work without having the control over the client..?
Can we do something in server to make this work..?
Its evident from the access log, that the request is unauthorized...how to avoid with without touching the client..?
FYI, Its working fine in weblogic 6.1 sp3. Below is the log recorded in weblogic 6.1 sp3 access log.
152.67.221.214 - - [06/Sep/2007:01:29:50 -0800] "POST http://appstg01:7031/invoke/wm.server/connect HTTP/1.0" 200 22
How to make this work in weblogic 10. I can modify only the servlet and not the executable client.
Thanks in advance.
--vinodh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

I understand that HTTP version has nothing to do with 401 code. Please let me know is there any way that we can avoid this without touching the client. Because the cleint is a executable to which we dont have access. We still have command over Weblogic server and servlet.
          Thnks.

Similar Messages

  • Does Weblogic Express support JSPs

    Does Weblogic Express support JSPs?
              

    Yep!!
              Kumar
              Bryan Boyer wrote:
              >
              > Does Weblogic Express support JSPs?
              

  • Does weblogic 12c support beehive controls

    Hi ,
    we are migrating our weblogic server from 10.3 to 12C , i just import existing project into eclipse(Oracle enterprise pack for eclipse) came with weblogic 12C , it is showing errors on project for shared libraries like beehive controls , weblogic controls ,
    Please let us know does WLS 12C support beehive controls ? do we have any solution for this
    Regards
    Srikanth

    Apache Beehive is not supported on Weblogic 12c.
    Apache Beehive has been deprecated as of WebLogic Server 10.3.
    Oracle recommends that you migrate your Beehive applications and infrastructure to other frameworks such as Oracle's ADF or Java Server Faces at your earliest convenience.
    Please check the below Doc and Page No. 16.
    http://docs.oracle.com/cd/E12839_01/web.1111/e13852.pdf
    Hope this answers your question!!
    Thanks,
    Vijaya
    Edited by: Vijaya_Gopal on May 1, 2013 8:01 PM

  • Does Siebel adapter support HTTPS?

    I am looking through a tutorial on installing and configuring Siebel adapter. It says that the adapter supports HTTP, FTP, and MQSeries. Does it support HTTP/S as well?
    If so, can you point me to documentation for implementing HTTP/S w/ Siebel adapter.
    Thanks,
    Chris

    I don't believe Siebel adapter supports HTTP/S. I researched, but came up with nothing.

  • Does weblogic server supports JSP tag pooling

              We use lot of Custom Tags in our app, we want improve the performance of JSP pages.
              Does Weblogic JSP engine supports JSP Tag Pooling similar to what JASPER (Tomcat
              JSP Engine) supports.
              If not, is there any way to plug-in my own Tag Pooling classes into JSP Engine.
              Thanks
              Ramesh
              

    This type of questions are appropriate for the Forms discussion forum.
    raghu

  • Does Flex HttpService support https with client authentication

    Hi,
    We have a set of backend services available over https with client auth (cert based). We need to use mxml HttpService to access these backend services. Does HttpService support ssl with client auth?
    Another question is, for Https does flex share the browser keystore and certstore or uses its own?
    Thanks,
    Debashis

    Yes , a flex HTTPService can access services on https://.  But if I remember correctly , to use an https:// service , the swf has to be served on an https.  Example ,
    Served from https:// ... --> Can access https:// ...
    Served from https:// ... --> Can acess https:// ...
    Served from https:// ... --> CANNOT access https:// ...
    Served from https:// ... --> CANNOT access https:// ...
    Since Flex has the browser do the connecting , the browser handles the keystore stuff , not Flex. I think.

  • Does IOS firewall support HTTPS websense filtering

    I have been looking for information on filtering HTTPS traffic using the iOS firewall (zone-based firewall) but cannot find any information. I also recieve the message that https is not supported on my router when I try to configure it.

    Hi,
    The following Q&A should answer most of your questions about websense support, including supported platforms and version numbers:
    http://www.cisco.com/en/US/products/ps6643/products_qanda_item0900aecd804abb06.shtml
    HTH
    Andrew.

  • Does FMS 3 support https protocol?

    Hi, all!
    I have a problem with using https protocol with NetConnection
    (also with NetServices, XML or WebService). I want to connect to
    AMFPHP from Flash Media Server 3 through secure https. All works
    fine through http protocol. Also AMFPHP works fine when I do
    connection and call some method from Flash Client (source in
    ActionScript2). But with https NetConnection.Connect.Rejected is
    returning. Also, RTMPS connection to another FMS works OK. What is
    the problem?
    Thank you!
    p.s. sorry for my english ;)

    I think it support it but has to be after windown 95..

  • Does Weblogic Jndi support naming.event

    Hi gurus,
    our app needs to be notified in case an object (already bound) has changed. or rebound into the jndi tree..
    i tried using javax.naming.event.*
    and the call to
    EventContext = (EventContext)(new InitialContext(env)).lookup("");
    gives me a ClassCastException...
    java.lang.ClassCastException: weblogic.jndi.toolkit.WLContextStub
    Any pointers..
    I plan to use NamespaceChangeListener and ObjectChangeListener to get notified. didnt find any material in weblogic docs...
    thanks in Advance
    Nagesh

    As I know, WL does not implement directory events machinery. You should use
    another mechanism to notify your app about JNDI changes. For example, you
    can use any LDAP directory service to bind your objects to. In this case,
    directory events should work.
    kesha
    "Nagesh" <[email protected]> wrote in message
    news:39edfc4d$[email protected]..
    >
    Hi gurus,
    our app needs to be notified in case an object (already bound) haschanged. or rebound into the jndi tree..
    i tried using javax.naming.event.*
    and the call to
    EventContext = (EventContext)(new InitialContext(env)).lookup("");
    gives me a ClassCastException...
    java.lang.ClassCastException: weblogic.jndi.toolkit.WLContextStub
    Any pointers..
    I plan to use NamespaceChangeListener and ObjectChangeListener to getnotified. didnt find any material in weblogic docs...
    thanks in Advance
    Nagesh

  • Does weblogic 704 support solaris on x86?

    This is urgent and thanks in advance!

    Hello, Pratap. Yesterday the location at which the WebLogic Portal engineering team is located (Colorado, USA) was hit by the biggest blizzard of the winter and the entire metropolitan area shut down. Imagine a direct hit from a typhoon but with snow instead of rain. I was stranded iin traffic for 8 hours yesterday. That is probably why nobody from the product team has answered.
    WebLogic Portal is the best framework out there for building a Web 2.0 portal. It is a lot harder (and more valuable, IMO) to build a product that is a framework as opposed to a packaged app. WLP blows everything else out of the water when it comes to enabling you to build anything you want. Nothing else comes close to its flexibility, maturity/stability, and scalability. WebLogic Portal is not an application. I'm sure that there are going to be plenty of widgets available OOTB now that WebLogic Portal is part of a much bigger picture with the Oracle WebCenter Suite, so that will probably help with some of the expectations that you have of a portal product, but I'll let someone else speak to that.

  • Does Weblogic Express support JSP ?

    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas

    For this type of stuff you should talk to your sales-person.
    We just make it, not sell it, so we dont understand the difference
    either. :)
    Cheers
    Mark G.
    In article <[email protected]>, [email protected] says...
    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas
    ==================================================
    NewsGroup Rant
    ==================================================
    Rant 1.
    The less info you provide about your problem means
    the less we can help you. Try to look at the
    problem from an external perspective and provide
    all the data necessary to put your problem in
    perspective.

  • Does Weblogic server 9.2 provide support for CRL checking

    Does Weblogic server 9.2 provide support for CRL checking?

    No, but you can create a custom CertPath provider for your own implementation.
    Mike
    Weblogic/J2EE Security Blog: http://monduke.com

  • Does Weblogic Server 5.1 supports RedHat Linux 6.2?

    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]

    FYI.
    I am running RH 6.2 and Weblogic 5.10 with no problems.
    w/Apache 1.3.12
    Only using WL for EJBs and jdbc pool at this time. So your milage may vary.
    Michael Girdley wrote:
    No, not yet. Version 6.0 will.
    The platform support page for WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Samuel Yung" <[email protected]> wrote in message
    news:[email protected]..
    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]
    /\/\i|<e
    Mike Kincer
    Solutions Developer/Engineer
    Atlas Commerce "ebusiness evolved"
    Office phone: +1-607-741-9988
    mailto:[email protected] [http://www.atlascommerce.com]

  • Does Weblogic Server 5.1 supports RedHat Linux 7?

    Does Weblogic Server 5.1 supports RedHat Linux 7?
    Thanx in advance.

    FYI.
    I am running RH 6.2 and Weblogic 5.10 with no problems.
    w/Apache 1.3.12
    Only using WL for EJBs and jdbc pool at this time. So your milage may vary.
    Michael Girdley wrote:
    No, not yet. Version 6.0 will.
    The platform support page for WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Samuel Yung" <[email protected]> wrote in message
    news:[email protected]..
    Hello All,
    Does Weblogic Server 5.1 supports RedHat Linux 6.2?
    Best Regards,
    Samuel Yung
    [email protected]
    /\/\i|<e
    Mike Kincer
    Solutions Developer/Engineer
    Atlas Commerce "ebusiness evolved"
    Office phone: +1-607-741-9988
    mailto:[email protected] [http://www.atlascommerce.com]

  • Does WebLogic 6.x support Solaris for Intel x86 platform?

    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    Levi

    levi wrote:
    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    See http://edocs.bea.com/wls/platforms/index.html - as far as I
    can tell, it is not supported.
    regards,
    Per Jessen

Maybe you are looking for

  • Text Variable With Replacement Path : supported in Webi 4.0 or Not.??

    Hello to All WebI Gurus, We are on BO 4.0 We are building WebI report on top of Bex query using the BICS connection from IDT. Our BW query is having some Text Variable with processing type "Replacement Path". Also its having fiscal year period in fil

  • HP Laser Jet 1320

    My printer just started making a noise when it is printing. Any ideas?

  • Video converter

    Hello, every body.. I am proudly using _G4Ibook,OS 10.3.9 Panther,Ilife'5_ and I know that I cannot update software anymore..even security updates are no longer for me. So, here is what I would love to have your valuable opinion on: I use vixy.net to

  • Reg script

    Hi Experts, i added one field to from, i written one subroutine pool program for that field .but in that program w_egbel value are not getting. The first select statement is not working .if it all i  changed the data at runtime iam getting the output

  • How do i get my playlist from my windows media player to my creative

    can anyone tell me how to get the playlist I created in my windows media player to sync into my creative zen ?