JDK 1.4.2 NTLM Support?   Problems with IIS

Has anyone got the NTLM support in java 1.4.2 to work with MS Internet Information Server (IIS)? I can get the Apache group's httpclient to work, but using the java 1.4.2 authenticator stuff always gives me a status code 500 from the server.

Did you ever get HttpClient from Apache to work with NTLM? Our company has't standardized on 1.4.2 yet, so I'm stuck getting it to work with 1.4.1.
Any help would be greatly appreciated.
If this is a repeat post, I apologize
Dave

Similar Messages

  • Petition for Technical Support (Problems with BlueSoleil on BT6967 ver 1.43)

    I downloaded BT software BlueSoleil v2.0 from http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=326&kind=8
    After installation, it doesn't load and asking for Licence Problem with my BT-6967 that's I think is not model v1.43, have also tried my original CD and same problem
    this is a serious problem with BlueSoleil Drivers on BT 6967, because my dad buy one last BT 6967 ver1.43 with Tranceveing Key driver version 1.3.4.9 (shows on cd) and I tried upgrade my driver version 1.3.4 on my old BT 6967 with this 1.3.4.9 bluesoleil drivers and doesn't works!!!! I don't understand when both are same model MS-6967 why!!! don't works with the last drivers!!!! perhaps only for ver1.43??? because in the main window of BlueSoleil show a message "This version demo has expire" !!!!! what is the reason !!! blueSoleil only works with his 1.3.4.9 MS 6967 Tranceveing Key !!!??? and what's up with a normal MS 6967 1.3.4, technical support could help me??!!! please!!! i need a BlueSoleil software open to all versions on BT-6967
    Please SOLUTION!!!!!! License Problem: BT-6967, XP SP2 BlueSoleil BT Driver
    Im so bored with this problem.. i need solution.. please!! MSI how is posible BlueSoleil can't work only Demo version if I downloaded by his page

    Thanks for your interest..  i saw FAQ's pages about bluetooth connectivity and I already made contact with MSI Support, but i don't get any answer .. then I don't know what to do  with this driver conflict on models BT-6967 running BlueSoleil 
    anny sugggest?¿

  • Problems with IIS and Weblogic 6.0 Redirecting thru IIS

    Hi
    I have just installed Welblogic 6.0 and I am having problems with the configuration
    of the ISAPI Plugin.
    I created the iisproxy.ini file and then copied that into wlserver6.0/bin directory
    and copied the iisproxy.dll file into the inetpub/wwroot directory for iis to
    see
    Now when I type in my url, I get the default index.jsp page that bea supplied
    but when I try to go to the Admin tool, existing portals created or new portals
    added, I get the following error
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Can any one help, here is my iisproxy.ini file
    below
    #This file contains initialization name/value pairs
    #for the IIS/weblogic plug-in
    WebLogicHost=localhost
    WebLogicPort=7501
    WlFowardPath=/weblogic
    SecureProxy=OFF
    PathTrim=/weblogic
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Bola

    Seems 6.0 has more than a few proxy problems. We are running IPlanet and have
    had no success in running the 6.0 proxy.
    FYI. We have started using the 5.1 proxy in 6.0 successfully; you might give
    it a try. Not sure we want to put this in production in this condition however.
    Matt Raible wrote:
    Has anyone been successfully able to get the IIS Proxy working with WLS 6.0
    on Win2K? I've been trying for days, working with a support engineer at BEA
    and everything, but no luck.
    Thanks,
    Matt

  • Problems with IIS proxy to cluster

              We are using WebLogic 6.1 with two managed servers in a cluster. Our IIS server
              is running IIS 4 and is set up to proxy to the cluster by IP addresses. When
              one server goes down(as in a hardware failure or shut down), the other server's
              queue loads up with unprocessed requests causing our web application to "freeze".
              No errors are logged anywhere. The only way to free up the WL server (and stop
              the queue from growing) is to reboot both the application server (to clear the
              queu)AND the IIS web server(to stop the requests). Is there a known problem with
              the WL IIS plug-in DLL that could cause these errant requests? or.. Does this
              point to a specific error on our IIS server? or.. Is there a bad setting somewhere
              that can be changed to prevent this? Please Advise!
              

    Hello,
    From this it looks like you may be able to use PathPrepend to jimmy your URLs:
    PathPrepend : String that the plug-in prepends to the beginning of the original URL, after PathTrim is trimmed and before the request is forwarded to WebLogic Server.
    I would suggest it may be a good idea to have a seperate webserver for your production domain. In most places I have worked in every platform is configuered with its own resources e.g staging server has its own webserver and db. This affords the people that use those envrionments greater isolation.

  • Problem with IIS- WebLogic bridge

    Hi!
    We have configured the IIS-WebLogic bridge for WebLogic 6.0 (SP1), with IIS
    4.0 on two separate machines. This works on URLs which directly refer to
    pages lying on the same machine as WebLogic, but some links which refer to
    WebLogic properties file and then determines the page to be displayed (e.g.
    include files). These work when the exact URL (including the IP Address and
    port no. of the WebLogic Server) is pasted in the browser address window,
    but fail when the proxied hyperlink is clicked from another page, or the
    proxied URL is pasted in the address window.
    Can anyone help. This is slightly urgent.
    thanks and regards,
    Prajesh
    Prajesh K. Verma
    Eclaton eBDU India Pvt. Ltd.
    Huis van Eclaton
    25, Lavelle Road
    Bangalore 560 001
    Tel: +91 80 2996569
    Email: [email protected]
    http://www.eclaton.com

    It looks like you have the sendRedirect() problem.
    We will convert the relative uri into Absolute URL in the sendRedirect().
    the logic looks something like:
    if (url is an absolute url) { //i.e: http://host:port/dummy.jsp
    response.setHeader("Location", url);
    sendError("302");
    } else if (url is an absolute uri) { //i.e: /dummy.jsp
    //prepend protocol, host and port info
    } else if (url is a relative uri) { //i.e: dummy.jsp
    //cacluate the context path based on the current request
    //i.e: you are request http://iis:7001/include/index.jsp
    PathTrim=/weblogic is set in the iisproxy.ini
    //so the Location header looks like:
    //http://iis:7001/weblogic/include/dummy.jsp
    As you can see you may need to specify the redirected uri
    to fall into the rules of "proxy by path" or "proxy by mime type" if you want
    the iis to proxy the request properly.
    "Prajesh K. Verma" <[email protected]> wrote:
    Hi!
    We have configured the IIS-WebLogic bridge for WebLogic 6.0 (SP1), with
    IIS
    4.0 on two separate machines. This works on URLs which directly refer
    to
    pages lying on the same machine as WebLogic, but some links which refer
    to
    WebLogic properties file and then determines the page to be displayed
    (e.g.
    include files). These work when the exact URL (including the IP Address
    and
    port no. of the WebLogic Server) is pasted in the browser address window,
    but fail when the proxied hyperlink is clicked from another page, or
    the
    proxied URL is pasted in the address window.
    Can anyone help. This is slightly urgent.
    thanks and regards,
    Prajesh
    Prajesh K. Verma
    Eclaton eBDU India Pvt. Ltd.
    Huis van Eclaton
    25, Lavelle Road
    Bangalore 560 001
    Tel: +91 80 2996569
    Email: [email protected]
    http://www.eclaton.com

  • Authentication and Authorization Problems with IIS 6 and Jrun 4

    Hello all,
    I am using IIS 6 with JRun 4 as my app server, and I am having problems trying to get authentication and role authorization with Windows Integrated Authentication to work. I have set up IIS 6 to pass-through the authentication credentials to Jrun, without using an anonymous user. What I have done is written a small test servlet that displays the username of the logged in user, and then tries to check if a user is in a test role that I set up in my database. I have specified that a roles table is to be used by specifying a JDBCLoginModule in Jrun's auth.config file. The code for the servlet is below:
    package testauthenticationapp;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class SecureTestServlet extends HttpServlet {
       private static final String CONTENT_TYPE =
          "text/html; charset=windows-1252";
       public void init(ServletConfig config) throws ServletException {
          super.init(config);
       public void doGet(HttpServletRequest request,
                         HttpServletResponse response) throws ServletException,
                                                              IOException {
          response.setContentType(CONTENT_TYPE);
          PrintWriter out = response.getWriter();
          out.println("<h3>REMOTE USER: " + request.getRemoteUser() + "</h3>");
          if (request.getUserPrincipal() != null){
             out.println("<h3>" +request.getUserPrincipal().getName() + "</h3>");
          } else{
             out.println("<h3>User Principal is null</h3>");
          if (request.isUserInRole("Test_Role")){
             out.println("<h3>User is in Test_Role</h3>");
          } else {
             out.println("<h3>User is NOT in Test_Role</h3>");
          out.close();
    1.  What I am seeing is that when request.getRemoteUser() is called, the username information is what I expect it to be. It is of the form <Domain>\<Username>. When I try to redisplay the username using the request object's Principal object, the call to request.getUserPrincipal() returns null. This is a little confusing to me since I thought that essentially getRemoteUser() was a short cut for calling getUserPrincipal().getName(), and if I get something for getRemoteUser, getUserPrinicipal should return something as well. I guess they work differently at some level. Has anyone ever encountered this before?
    2. When I call request.isUserInRole("Test_Role"), it returns false. I've checked the role name being called for typos in both my database and in the code, and that does not seem to be the case. I think the setup in auth.config is properly configured because I have created many other applications using declaritive FORM based authentication, and the role information was retrieved fine from the database. I would think that when I use request.isUserInRole in my servlet code it would use the same role information, but I could be wrong since this is a different type of authentication. Do you think that the reason request.isUserInRole() is returning  false could be tied to the fact that request.getUserPrincipal() is returning null (even though getRemoteUser() is returning a valid username)? How does request.isUserInRole() get its user information, by using getUserPrincipal().getName() or getRemoteUser()?
    Any help that is provided is appreciated. Thanks in advance.

    Try This...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • POST problems with IIS Plugin

    I am using the latest version of the IIS plugin for Weblogic (build: Apr 14 2002
    17:53:13)
    It seems that the ISAPI Filter (iisforward.dll) does not forward all http POSTs
    - however it does seem to work fine for http GET's.
    We have configured the plugin (you will see the attached debug dump) to forward
    all calls on "/weblogic". If we perform http GET's on such a URL (using IE) everything
    works fine - and the call is routed to Weblogic.
    When we make a SOAP call using our C++ client, (a http POST) through the IIS plugin
    we get a 405 error. If we artificially add the ".wlforward" extension on the context
    URL (in our C++ client ) then it is forwarded correctly to weblogic by the Application
    Extension (iisproxy.dll) - so the problem lies with the ISAPI filter. Also, if
    we remove the ISAPI filter from IIS, we get the same 405 error - which confirms
    that the ISAPI filter is not catching the POST's.
    More puzzling, however, is that the SOAP requests from our Java SOAP client (using
    WLS SOAP) works fine.
    The problem must have something to do with the difference in structure of the
    POSTS.
    Normally, I would attach the logs/config in a zip file - but that seems broken
    at the moment. Instead they are all pasted in below.....
    -Nick
    Successful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    Host: localhost:8080
    Connection: Keep-Alive
    Content-Length: 1965
    Content-Type: text/xml; charset=utf-8
    SOAPAction: ""
    Authorization: Basic c3lzdGVtOnBhc3N3b3Jk
    UNSuccessful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    SOAPAction: ""
    Content-Type: text/xml
    Connection: close
    Content-Length: 1670
    IIS 405 Response:
    HTTP/1.1 405 Method not allowed
    Server: Microsoft-IIS/5.0
    Date: Thu, 25 Jul 2002 14:28:52 GMT
    Allow: OPTIONS, TRACE, GET, HEAD
    Content-Length: 3126
    Content-Type: text/html
    IIS Plugin Config:
    Properties loaded from path: 'D:\Inetpub\WeblogicPlugin\iisproxy.ini'
    Query String: '__WebLogicBridgeConfig'
    General Server List:
    Host: 'localhost' Port: 7001 Status: OK
    ConnectRetrySecs: '2'
    ConnectTimeoutSecs: '10'
    CookieName: 'JSESSIONID'
    Debug: '12'
    DebugConfigInfo: 'ON'
    DefaultFileName: ''
    DynamicServerList: 'ON'
    ErrorPage: ''
    FileCaching: 'ON'
    HungServerRecoverSecs: '300'
    Idempotent: 'OFF'
    KeepAliveEnabled: 'ON'
    KeepAliveSecs: '30'
    PathPrepend: ''
    PathTrim: '/weblogic'
    MaxSkips: '10'
    MaxPostSize: '-1'
    SecureProxy: 'OFF'
    WLLogFile: 'D:\Inetpub\WeblogicPlugin\iisPlugin.log'
    WLProxySSL: 'OFF'
    Runtime statistics:
    requests: 1
    successful requests: 1
    Exception objects created: 0
    Exception Objects deleted: 0
    URL Objects created: 1
    URL Objects deleted: 1
    connections recycled: 0
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 0
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 0
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 0
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Build date/time: Apr 14 2002 17:53:13

    Doh. :< I hope you can get someone here from the BEA guys/gals to help out.
    I'm outside of my league at this point. Sorry about that. Good luck.
    "Nick Minutello" <[email protected]> wrote
    in message news:[email protected]...
    >
    >
    Thanks.
    Sadly, my IIS configuration is correct. The plugin seems to work fine if Ijust
    use my browser (http GET) for either forward-by-extension (*.jsp) orforward-by-path
    (/weblogic/*).
    However, there seems to be a problem when I use SOAP (http POST). For somereason,
    when I use my C++ SOAP client (using WASP), then the ISAPI filter (the onethat
    generates the .wlforward on the URL) doesnt modify the URL - hence the403...
    If I use my java client.... everything is fine. Comparing the two httppackets,
    I dont see anything obviously wrong - but something is making the WLSplugin choke.
    >
    Cheers,
    Nick
    "PHenry" <[RemoveBeforeSending][email protected]> wrote:
    Howdy. I had a similar problem. I'm not a BEA support person, but maybe
    I
    might be able to help. If not, at least someone's listening. :>
    Did you add the .jsp AND the .wlforward in the path redirection under
    your
    web app in IIS? I read the instructions thoroughly (or so I thought),
    and I
    wasn't able to get the POST to work. :< But as I reread the
    instructions,
    I
    had put in the .jsp (is it under Home Directory, Configuration I think?),
    and I put in the ISAPI dll, but I didn't put in the .wlforward (in with
    the
    ..jsp). Once I did that, and restarted the box, all was good! :>
    That might help. And if not, at least one of the BEA people have one
    less
    thing to try. Good luck.
    "Nick Minutello" <[email protected]>
    wrote
    in message news:[email protected]...
    I am using the latest version of the IIS plugin for Weblogic (build:Apr
    14 2002
    17:53:13)
    It seems that the ISAPI Filter (iisforward.dll) does not forward allhttp
    POSTs
    - however it does seem to work fine for http GET's.
    We have configured the plugin (you will see the attached debug dump)to
    forward
    all calls on "/weblogic". If we perform http GET's on such a URL (usingIE) everything
    works fine - and the call is routed to Weblogic.
    When we make a SOAP call using our C++ client, (a http POST) throughthe
    IIS plugin
    we get a 405 error. If we artificially add the ".wlforward" extensionon
    the context
    URL (in our C++ client ) then it is forwarded correctly to weblogicby the
    Application
    Extension (iisproxy.dll) - so the problem lies with the ISAPI filter.Also, if
    we remove the ISAPI filter from IIS, we get the same 405 error -which
    confirms
    that the ISAPI filter is not catching the POST's.
    More puzzling, however, is that the SOAP requests from our Java SOAPclient (using
    WLS SOAP) works fine.
    The problem must have something to do with the difference in structureof
    the
    POSTS.
    Normally, I would attach the logs/config in a zip file - but that seemsbroken
    at the moment. Instead they are all pasted in below.....
    -Nick
    Successful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    Host: localhost:8080
    Connection: Keep-Alive
    Content-Length: 1965
    Content-Type: text/xml; charset=utf-8
    SOAPAction: ""
    Authorization: Basic c3lzdGVtOnBhc3N3b3Jk
    UNSuccessful POST http header:
    POST /weblogic/webservice/BondInstrumentService HTTP/1.0
    SOAPAction: ""
    Content-Type: text/xml
    Connection: close
    Content-Length: 1670
    IIS 405 Response:
    HTTP/1.1 405 Method not allowed
    Server: Microsoft-IIS/5.0
    Date: Thu, 25 Jul 2002 14:28:52 GMT
    Allow: OPTIONS, TRACE, GET, HEAD
    Content-Length: 3126
    Content-Type: text/html
    IIS Plugin Config:
    Properties loaded from path: 'D:\Inetpub\WeblogicPlugin\iisproxy.ini'
    Query String: '__WebLogicBridgeConfig'
    General Server List:
    Host: 'localhost' Port: 7001 Status: OK
    ConnectRetrySecs: '2'
    ConnectTimeoutSecs: '10'
    CookieName: 'JSESSIONID'
    Debug: '12'
    DebugConfigInfo: 'ON'
    DefaultFileName: ''
    DynamicServerList: 'ON'
    ErrorPage: ''
    FileCaching: 'ON'
    HungServerRecoverSecs: '300'
    Idempotent: 'OFF'
    KeepAliveEnabled: 'ON'
    KeepAliveSecs: '30'
    PathPrepend: ''
    PathTrim: '/weblogic'
    MaxSkips: '10'
    MaxPostSize: '-1'
    SecureProxy: 'OFF'
    WLLogFile: 'D:\Inetpub\WeblogicPlugin\iisPlugin.log'
    WLProxySSL: 'OFF'
    Runtime statistics:
    requests: 1
    successful requests: 1
    Exception objects created: 0
    Exception Objects deleted: 0
    URL Objects created: 1
    URL Objects deleted: 1
    connections recycled: 0
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 0
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 0
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 0
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Build date/time: Apr 14 2002 17:53:13

  • Oracle Bam Installation problems with IIS, Error code 1

    Hello, When I try to install oracle bam I got like 40 errors when its executing some vbs scripts, I think that these scripts create the virtual directories and so on but I am not sure.
    The error that I see in the event log in spanis is this:
    I need to say that I am an administrator on this machinem so I dont know that the problem is.
    Su administrador ha limitado el acceso a C:\OracleBAM\BAM\adsutil.vbs por el nivel de directiva de restricción de software predeterminado.
    Para obtener más información, vea el Centro de ayuda y soporte técnico en http://go.microsoft.com/fwlink/events.asp.

    Thanks.
    Yes, I do have a P4.
    I have looked through previous postings and have found the following suggestions, both of which I have tried:
    1. Copy the files from CD to disk, rename symcjit.dll and then run install.
    2. Oracle seem to suggest that the disk directories must be called Disk1 etc.
    I have also tried removing the Java SDK I had installed, stopping Apache and stopping MySQL.
    Nothing has worked.
    Any more ideas (please....)?

  • Weblogic configuration problem with IIS 5.0

    Hi,
    This is our current setup.
    1. Weblogic application server on HP-UX11i;
    2. IIS 5.0 on windows 2000 Advanced server.
    IIS is used to serve all the .html,.jpg,.pdf files and forwards all the
    requests for .jsp pages to the applications server (HP-UX).
    The IISproxy.ini file setting are as given below :
    WebLogicHost=XXX.XXX.XXX.XXX
    WebLogicPort=7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=OFF
    where XXX.XXX.XXX.XXX i our IP address.
    however we are getting this error on the top of my jsp pages.This error
    appears as and when and i cant figure out why is this happening .
    Message from the ISAPI plugin:
    POST timed out to the server XXX.XXX.XXX.XXX:7001
    Build date/time: Nov 8 2001 HTTP/1.1 200 Server: Microsoft-IIS/5.0 Date:
    Mon, 20 May 2002 05:38:53 GMT Connection: close Date: Mon, 20 May 2002
    05:38:53 GMT Server: WebLogic WebLogic Server 6.1 SP2 12/18/2001 11:13:46
    #154529 Content-Type: text/html
    where XXX.XXX.XXX.XXX i our IP address.
    The POSTTimeout setting on the application server is 120
    Can anyone instruct me on how to solve this .
    Prashant

    Hi.
    A couple of suggestions:
    First - make sure you can ping the WebLogic server on HPUX from your Win2k
    machine that is running IIS.
    Second, turn Debug=ON in your iisproxy.ini file to see what the debug log says.
    Post the log here if you need further help.
    Thanks,
    Michael
    Prashant S wrote:
    Hi,
    This is our current setup.
    1. Weblogic application server on HP-UX11i;
    2. IIS 5.0 on windows 2000 Advanced server.
    IIS is used to serve all the .html,.jpg,.pdf files and forwards all the
    requests for .jsp pages to the applications server (HP-UX).
    The IISproxy.ini file setting are as given below :
    WebLogicHost=XXX.XXX.XXX.XXX
    WebLogicPort=7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=OFF
    where XXX.XXX.XXX.XXX i our IP address.
    however we are getting this error on the top of my jsp pages.This error
    appears as and when and i cant figure out why is this happening .
    Message from the ISAPI plugin:
    POST timed out to the server XXX.XXX.XXX.XXX:7001
    Build date/time: Nov 8 2001 HTTP/1.1 200 Server: Microsoft-IIS/5.0 Date:
    Mon, 20 May 2002 05:38:53 GMT Connection: close Date: Mon, 20 May 2002
    05:38:53 GMT Server: WebLogic WebLogic Server 6.1 SP2 12/18/2001 11:13:46
    #154529 Content-Type: text/html
    where XXX.XXX.XXX.XXX i our IP address.
    The POSTTimeout setting on the application server is 120
    Can anyone instruct me on how to solve this .
    Prashant--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Problems with FLV on two different servers

    Hello all,
    I am using an embedded FLV player on a site. On one site it is working fine, but they FLV's won't play on the other site. The files are identical. I set up a test file that points to the various player files (flvplayer.swf and swfobject.js) and then the FLV. I can switch between the two FLV files and the one will play and the other won't. It's not the FLV itself as I've done several tests with different files. It's not the player that I can tell as it works fine on both servers. It's something with the server settings and how it serves up FLV's.
    Is there a specific port that needs to be opened? I just took a look and suprise, suprise, the server on the faulty side is running IIS. The working server is Apache.
    Thanks for any help. This is a really frustrating problem.

    I've done some more research and it looks like it may be a MIME problem with IIS.I've contacted the hosting service and we'll see if that fixes it.
    http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Liv eDocs_Parts&file=00001040.html

  • Problem with Cross-domain SSO, NTLM and ITS to R/3

    Hello,
    We are using EP 6.0.13.0 on a Windows environment.  We have an ITS running WebGUI/ESS/MSS in another domain and that is the same domain where the R/3 and BI systems reside.  We have configured NTLM authentication using IIS web server 6.0 and the IISProxy 1.6.2.  We have configured SSO with the backends using the same ID as in the MS-ADS.  Almost everything works fine.
    The problem is that when we use the NTLM logon VIA the IIS to the portal, and then navigate to a WebGUI service transaction we are prompted for login.  When we refresh the portal screen and try again - it works.
    We have configured the mdc.hosts and are using the sendSAPSSO2Cookie.asp to generate the cross-domain logon ticket.
    I have read that ITS may require the PAS be set up but I thought that was only used when you are going directly to the ITS (leveraging the NTLM authentication) - not when you are going through the portal.
    Does anyone have some experience using ALL of the SSO features (i.e. SSO, cross-domain support, ITS, windows integrated authentication)?
    We have though about the relax option for the domain but it does not apply as our domains are:
    SERVER1.domain1.com and SERVER2.domain2.com
    ... so relaxing would not help unless we relaxed to the ".COM" which is unreasonable.
    My regards,
    Judson Maizels

    Hi JUDSON
    well i'll give one easy solution
    make a alias under host file reside in winnt\system32\drivers\etc directory which has same domain name
    i.e
    SERVER1.domain1.com   server1.mydomain.com
    SERVER2.domain2.com   server2.mydomain.com
    it's works in my schenario we have a same system landscape
    as you
    regards,
    kaushal

  • Problems with client.jar - generated from webservices toolkit from JDK 1.1.7

    We have deployed a web application using the webservices in WL 6.1 using JDK 1.3.1.
    The clients were able to successfully access the servlet it generated and download
    the client.jar. Unfortunately this client.jar seems to be dependent on JDK 1.2
    and beyond. It seems to use java.util.Map class in the JNDI-SOAP SPI.
    Is there any workaround or fix to this problem, so this jar can be used from a
    JDK 1.1.7 env?.
    Our objective is to use WL 6.1 EJB's from WL 4.5.1 using Webservices. Are there
    any known problems with this approach (Ofcourse other than this).
    Thank you.
    Dora Potluri
    Here is the stack trace from using the client.jar
    Class not found java.lang.ClassNotFoundException: java.util.Map
    [Root exception is java.lang.ClassNotFoundException: java.util.Map]javax.naming.
    NamingException: Class not found java.lang.ClassNotFoundException: java.util.Map
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at javax.naming.NamingException.<init>(Compiled Code)
    at weblogic.soap.http.SoapContext.throwNamingException(Compiled Code)
    at weblogic.soap.http.SoapContext.lookup(Compiled Code)
    at javax.naming.InitialContext.lookup(Compiled Code)
    at weatherEJB.WeatherBean.getTemp(Compiled Code)
    at weatherEJB.WeatherBeanEOImpl.getTemp(Compiled Code)
    at weatherEJB.WeatherBeanEOImpl_WLSkel.invoke(Compiled Code)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(Compiled Code
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(Compiled
    Co
    de)
    at weblogic.rmi.extensions.BasicRequestDispatcher$BasicExecuteRequest.ex
    ecute(Compiled Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    Fri Sep 21 10:47:12 CDT 2001:<I> <EJB> Transaction: '1001087185816_1' rolled bac
    k due to EJB exception:

    Yes, there is an expectation that the client jar will be run on JDK 1.3x. WLS 6.1 is certified on JDK 1.3x only. This
    applies to the WebServices client as well. For details on platform support see
    http://e-docs.bea.com/wls/platforms/index.html
    Thanks,
    Jim
    Jim Rivera
    Product Manager, WebLogic Server
    BEA Systems, Inc.
    Dora Potluri wrote:
    I started testing using the client.jar generated by webservices WL 6.1 and found
    that it uses reflection API interfaces that are not available til JDK 1.3. Is
    there an expectation that the clients of Webservices are all going to be JDK 1.3.X.
    Here is the stack trace we get.
    java.lang.NoClassDefFoundError: java/lang/reflect/InvocationHandler
    at weblogic.soap.http.SoapContext.lookup(SoapContext.java:76)
    at javax.naming.InitialContext.lookup(InitialContext.java:280)
    at weatherEJB.WeatherBean.getTemp(WeatherBean.java:106)
    at weatherEJB.WeatherBeanEOImpl.getTemp(WeatherBeanEOImpl.java:47)
    at weatherEJB.WeatherBeanEOImpl_WLSkel.invoke(WeatherBeanEOImpl_WLSkel.java:90)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:261)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:56)
    at weblogic.rmi.extensions.BasicRequestDispatcher$BasicExecuteRequest.execute(BasicRequestDispatcher.java:166)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)

  • EP 7.0 Install Problem with JDK path

    I’m having a problem with installing EP 7.0 on Solaris. We had Solaris 8 and then performed a fresh install of Solaris 10. Solaris 10 had Java 1.5. When performing the EP install at the step to supply the JDK directory message stating 1.5.0 was not supported. I had to install JDK from 1.4. family. I stopped the install and UNIX group installed 1.4.2_13.  I now receive message that directory /usr/bin is not a valid JDK directory:the java executable is missing. The UNIX team told me this is the valid directory path. I am not sure what the exact problem is. I stopped the install and provided the environment variable JAVA_HOME=/usr/bin and the same problem. Has anyone come across this problem maybe my version is not correct. Any ideas on what could be wrong are greatly appreciated.
    Thanks
    Martin

    Hi Martin,
    why are you pointing JAVA_HOME variable to /usr/bin.
    JAVA_HOME must always point to the directory where JAVA installation resides.So for you it might be /j2sdk1.4.2_13 if the JAVA installation directory is j2sdk1.4.2_13.
    If this does not solve ur problem.
    Please let me know the exact step where u r facing with the problem.
    Hope it helps
    Cheers,
    Santhosh

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • Problems with Adobe account and Adobe support!

    We bought in December 2012 "Creative Cloud for teams" (10 licenses).
    I have since started our problems with support Adobe that continue today: (
    1. We do not receive invoices by e-mail - every month we have to ask several times adobe support on the current invoice and then wait for it a few weeks!
    2. We receive e-mail confirmation with errors - confirmation of transactions on a credit card that we receive by e-mail are wrong - no part of the information.
    3. No confirmation on Adobe account - on account do not have Adobe confirmation of financial operations for the month.
    4. No information about the subscription on Adobe account - There is no information about subscriptions purchased
    We contact every few days with Adobe and get the standard answer "please wait 2-3 business days..." ..... and nothing.
    Adobe...  why you're doing jokes about the business customer?

    Ehhh...
    Every company in Poland who buys a service or product Adobe need VAT invoice (
    required document).
    I have in my Adobe account information only payments for the month of December.
    For this month I print the invoice (screenshot below).
    But unfortunately there is no information on payments for the next month - a technical error Adobe account!
    My friend also has a company and subscription and have all the information in Adobe account (screenshot below).

Maybe you are looking for

  • Some commands don't work in rutorrent/wtorrent

    Hi, I have an odd problem. I'm trying to install rutorrent as a frontend for rtorrent. I don't know too much about apache/php/xmlrpc etc etc. so I have no idea what's wrong or how to go about fixing it. Situation is this: I have managed to set up rut

  • Not able to go to servlet page..

    Hello everyone. I am a new bee. I was trying to write a very simple sevlet code which takes form data from 1 html page and displays the form field on another page. My code is something like this in MyEclipse.The Project name is ThreeServlets. The dir

  • Displaying Description for SAP Table Field in the View

    Hi We are working on a HANA implementation Project Where we have a requirement to build View on HR tables. Issue: When i join HR infotypes (tables ) in the view it is getting only Technical names and not descriptions. i have used Semantics option whi

  • Why does my apple tv keep freezing.

    Why do my rented films stop half way through then commencing loading and state this film will ready to play in 22 mins. Why doesn't it just stream continuously ?

  • Mov files only play sound

    I wanted to send (email) a movie clip shot from an ipad 2 to our parents.  When I open up the mov attachment on my pc I only get sound the video doesn't come in and is purple or green.  The video will only open up in itunes, it also opens up and play