Use of CE/WCCP with Microsoft ISA server acting as an authentication proxy.

We have a design where all web users are authenticated against Active Directory by Microsofts ISA server proxy service prior to accessing web resources.
Is it possible to implement a CE behind the ISA server, and still have the proxy authenticate users credentials?
My concern is that WCCP will redirect traffic to the content engine first, if the content is not available, wil the content engine then forward to the proxy for authentication prior to the request going out to the web?
Cheers,

Since there has been no response to your post, it appears to be either too complex or too rare an issue for other forum members to assist you. If you don't get a suitable response to your post, you may wish to review our resources at the online Technical Assistance Center (http://www.cisco.com/tac) or speak with a TAC engineer. You can open a TAC case online at http://www.cisco.com/tac/caseopen
If anyone else in the forum has some advice, please reply to this thread.
Thank you for posting.

Similar Messages

  • Customers not able to log in with Microsoft ISA server firewall.

    I have a few external customers that are having issues logging in.  In all cases it is with the customer having Microsoft ISA firewalls.
    They can get to the site.  They put in their username and password.  The screen flashes back to the logon screen, no errors, just back to the screen.
    On the logs I seen the logon page request and the 200 OK but, the username and password never come across.
    I can not tell if the username and password are being blocked by the ISA server or when the logon screen is presented that the username and password fields are just not active.
    Has anyone else see or hear about this one?

    We are seeing a slightly different problem but certainly related. We are using a SAP cFolder server for PLM collaboration. Companies using a Microsoft ISA server are not seeing problems logging in but are seeing problems with the mass download feature. They are seeing the connection hang. Looking at the ISA log file on the server they are receiving an authentication problem and a broken connection. If you try a single file download everything works OK. Also vendors without ISA are working fine.
    What is it about ISA that would be causing issues like these?

  • Download Manager with Microsoft ISA Server

    Hello forum, I need help with the connection of program SAP DOWNLOAD MANAGER with ISA Server 2004 
    I've installed JAVA 1_4_2_13 and Download Manager, I configured the setting with the proxy connection (server ISA, user and pass) 
    but an error appears: 
    The basket content could not be read. The following exception occurred: 
    Unable to read data from the Service Marketplace: Check your settings and try again 
    In my ISA server I declared the form my IP to Internet permit all traffic out. 
    Somebody help me ??? what do I have to configure in my ISA Server to permit the connection? 
    Thanks.
    Costa Gustavo

    Hi Ram, I solved the problem with download manager. 
    First my PC don't use as default gateway the ISA Server, I've another default gateway for my LAN. 
    Is it the problem because my PC never contact directly to SAP, I could solved this problem if my PC can contact directly the IP of SAP. 
    You will can set in your PC the gateway of ISA server and public DNS to contact SAP directly 
    For example: 
    I've default gateway 192.168.0.1 for my LAN 
    My ISA server to internet is 192.168.0.9 
    Public DNS : (My ISP) 200.0.1.1 
    In your ISA server you can set a policy from your PC to External for all user with all traffic permit. 
    You try set in your PC the following: 
    Default gateway: 192.168.0.9 
    DNS: 200.0.1.1 
    I hope this can resolve your problem 
    Regards. 
    Costa Gustavo
    SAP BASIS.

  • I use the MAIL app with Microsoft Exchange server- prob with attachments

    Occasionally I get an email in MAIL that I KNOW has an attachment but it doesn't appear in my MAIL client. I see no attachment icon at all. I have to go to WEB-MAIL to retrieve it and sure enough it's there. Has anyone else encountered MAIL's idiosyncratic behavior in this regard?
    Another "sometimes" problem is with HTML emails. Sometimes they come in with no graphics, mostly text, lines etc, and sometimes they even look like CODE.
    I think (hope) these things will be solved with Snow Leopard, but in the meantime... Anyone?

    I gave up on mail for exchange and use Entourage for my exchange mail - not helpful I'm afraid but mail simply does not work well with exchange in my experience (and in lots of other's)
    LN

  • Authenticating via Microsoft ISA Server using Integrated protocol

    *** Cross-posted in Advanced Language Topics forum ***
    Does anyone know how to configure a URLConnection object to authenticate via a Microsoft ISA Server using the Integrated protocol?
    Authenticating using the Basic protocol is easy:
    URLConnection conn = <whatever>;
    String username = <whatever>;
    String password = <whatever>;
    String auth = username + ":" + password;
    String encodedAuth = new BASE64Encoder().encode(auth.getBytes());
    conn.setRequestProperty("Proxy-Authorization", "Basic " + encodedAuth);Does anyone know what to change to authenticate with the Integrated protocol?
    Thanks,
    Shaun

    Just visiting...
    Shaun

  • UCM certified with Microsoft Exchange Server ??

    Hi,
    Is UCM certified with Microsoft Exchange Server ? how can we integrate UCM with Microsoft Exchange Server as we have Desktop Integration Suite to integrate with MS Outlook..
    Thanks,
    NL

    As for the link to the manual, for 10g it's here (I believe for 11g it will be similar if not the same): http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/admin/managing_system_10en.pdf
    It also mentions that SMTP protocol is used. Therefore, you will need to know the SMTP address of your Exchange Server.
    As for who uses it, I believe it is the majority or at least a significant part of the clients' installed base. Note that it is one of the most widespread email servers.

  • Oracle HRMS Integration with Microsoft Exchange Server 2007

    I would like to know if it is possible to integrate Oracle HRMS 11.5.10.x with Microsoft Exchange Server 2007 using Microsoft Identity Lifecycle Management (ILM) 2007?
    Has anyone ever come across something like this and successfully achieved it? Does anyone know of a step-by-step guide (or forum discussion) to achieve this?
    Response(s) will be highly appreciated.

    hi,
    We actually implemented integration of SAP with microsoft exchange server. It is not necessary for server and IIS to be in the same machine.
    regards,
    Ganesh.N

  • How to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0)

    Hi all,
    I'd like to know if it's possible and how to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0), Windows version.
    With the following code, I can see that the mail.jar used by the server is the one included in the jdk installation :
    // I'm testing InternetAddress.class because I want to use commons-email-1.2.jar that requires mail.jar 1.4 (or higher) and activation.jar 1.1 (or higher)
    // and I know that inside the commons-email-1.2.jar file, I need to call the InternetAddress.validate() method that throws a java.lang.NoSuchMethodError: javax.mail.internet.InternetAddress.validate()V if it is used with mail.jar 1.2.
    Class cls = javax.mail.internet.InternetAddress.class;
    java.security.ProtectionDomain pDomain = cls.getProtectionDomain();
    java.security.CodeSource cSource = pDomain.getCodeSource();
    java.net.URL location = cSource.getLocation();
    System.out.println(location.toString());
    This code returns : file:/C:/oracle/app/jdk/jre/lib/ext/mail.jar and this mail.jar file has an implementation version number: 1.2
    - I've tried to include my own mail.jar (1.4.2) and activation.jar (1.1.1) files in the war file that I deploy, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I've tried to put the mail.jar (1.4.2) and activation.jar (1.1.1) files in the applib directory of my OC4J instance, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I know that a patch exists : I've read the following document: How to Make Libraries such as mail.jar and activation.jar Swappable ? [ID 552432.1]
    This article talks about the Patch 6514136, but this patch only applies to : Oracle Containers for J2EE - Version: 10.1.3.3.0
    Can you please help me ?
    Thanks in advance for your answers,
    Laurent

    I strongly suggest to upgrade to AS 10.1.3 to get this.
    Think of future support of AS 9.0.4. You will get not critical patch updates anymore.
    --olaf                                                                                                                                                                                                                                                                                                               

  • MCTS 70-466 Implementing Data Models and Reports with Microsoft SQL Server 2012

    I am searching for training kit for Exam 70-466 (Implementing Data Models and Reports with Microsoft SQL Server 2012) but I think is not published yet. I was expecting its release in Jan or Feb 2014. Would any one can tell me its release date or any place
    where I can find this book.
    Thanks
     

    Hi Azhar lqbal Gondal,
    According to your description, since the issue regards training and certification,
     I suggest you post the question in the Learning forums at
    http://social.technet.microsoft.com/Forums/en-US/home?category=learning. It is appropriate and more experts will assist you. If you have a specific technical question about Microsoft SQL Server,
     you can visit and post your question on  the SQL Server Forum.
    There is some detail about Exam 70-466 Implementing Data Models and Reports with Microsoft SQL Server 2012, you can review the following articles.
    Exam content can be found here:
    http://www.microsoft.com/learning/en-us/exam-70-466.aspx
    http://borntolearn.mslearn.net/certification/database/w/wiki/525.466-implementing-data-models-and-reports-with-microsoft-sql-server-2012.aspx#fbid=Mn-t6aRhs-H
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Connecting BI Pub with Microsoft SQL server 2008

    I am trying to connect Microsoft SQL server 2008 as a Data source in BIP .
    Using below info :
    Driver Type : Microsoft sql server 2005
    Database Driver class : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Connection String : jdbc:sqlserver://TXHOURDB71D:1443;DatabaseName=StewartAccessIntegration
    I am unable establish the connection and the username and password which I giving is right for the connection.
    Please let me know if I am missing any config steps.
    AJ

    Officially, you got to use Hyperion drivers.
    For BIPublisher 10.1.3.4 and ++ to connect to Ms sql server,
    use the following
    This works well and better.
    Driver class = hyperion.jdbc.sqlserver.SQLServerDriver
    Connection String = jdbc:hyperion:sqlserver://SERVERNAME:PORT;DatabaseName=DBNAME;
    http://winrichman.blogspot.com/2009/04/hyperion-driver-to-connect-to-ms-sql.html
    In older versions.
    you can also copy the drivers to the lib folder or applib folder and try what you were doing.
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b32481/toc.htm#T498352

  • Advantages and Disadvantages of Using Oracle 7 Client with Oracle 9 Server

    Hello,
    I was wondering what are the advanatges of using Oracle 7 client with Oracle 9 Server versus using Oracle 9 Client with Oracle 9 server.

    Some years ago I used 7.3 Client with 9i DB, and I don't remember of particular problems, but I'm speaking of Sql*Plus only. Are there specific problems ?
    Of course the best thing is to install one 9i Client (did you already do it ?) : if there are same problems, then that's not compatibility issue.
    And what are advantages of using 9 Client with 9 server other than 7 is no longer supported.You're sure you won't have compatibility problems.
    If you have access to Metalink have a look at [url http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOTE&p_id=207303.1]Note 207303.1

  • Integrate cProjects with Microsoft Project server

    Dear all,
    Does anyone know how to integrate cProjects 4.0 with Microsoft Project server 2003 in details? Pls kindly help.
    Thanks and best regards
    Trung

    Hi Murali,
    Do you have any documents showing how to configure cProjects step by step to integrate with Microsoft Project server? Pls help.
    Hi Niranjan,
    Pls check your email.
    Thanks and best regards,
    Trung

  • Oracle Database XE with Microsoft Windows Server 2008 (32-bit)

    I would like to find out if Oracle Database XE works with Microsoft Windows Server 2008 (32-bit)?
    If not, is there any other Oracle Open Source Database version can work with Microsoft Windows Server 2008 (32-bit)?
    Any help would be greatly appreciated!

    I am installing W2k8 R2 Domain Controller with Oracle Express 10g.
    This is the tip to make it work.
    Go to the installer OracleXE.exe -> Right click + Select Properties + Compatibility + Run this program in Compatibility Mode fot + Windows 2003 Sp1
    Then Select Run this Program as administrator.
    After this run the OracleXe.exe and it will install properly.
    Remember to double check that everything works fine.

  • Tandberg Codian MCU 4505 integration with Microsoft Lync server 2010

    Hi,
    We are trying to integrate Tandberg Codian MCU 4505 with Microsoft Lync server 2010.
    We do not have any VCS in the setup.
    If anybody has tried it before, please suggest configuration to be done on Tandberg Codian MCU 4505 and Lync server.
    Regards,
    RN

    Hi,
    so, i have the same environment. Lync 2013 and a cisco 1000V router on esxi with VRFs.
    here is m config:
    vrf definition Mgmt-intf
    address-family ipv4
    exit-address-family
    address-family ipv6
    exit-address-family
    voice vrf Mgmt-intf
    voice service voip
    no ip address trusted authenticate
    address-hiding
    media disable-detailed-stats
    allow-connections sip to sip
    no supplementary-service sip moved-temporarily
    no supplementary-service sip refer
    sip
      bind control source-interface GigabitEthernet0
      bind media source-interface GigabitEthernet0
      listen-port non-secure  5066
    voice class codec 1
    codec preference 1 g711ulaw
    codec preference 2 g711alaw
    codec preference 3 g729r8
    voice class codec 2
    codec preference 1 ilbc
    codec preference 2 g722-64
    codec preference 3 g711alaw
    codec preference 4 g711ulaw
    interface GigabitEthernet0
    vrf forwarding Mgmt-intf
    ip address 172.16.1.164 255.255.255.0
    negotiation auto
    dial-peer voice 15 voip
    tone ringback alert-no-PI
    numbering-type unknown
    preference 1
    destination-pattern 4.
    rtp payload-type comfort-noise 13
    session protocol sipv2
    session target ipv4:172.16.2.207:5068
    session transport tcp
    voice-class codec 2
    dtmf-relay rtp-nte
    dial-peer voice 17 voip
    numbering-type unknown
    preference 1
    destination-pattern 7.
    rtp payload-type comfort-noise 13
    session protocol sipv2
    session target ipv4:172.16.1.32:5060
    session transport udp
    voice-class codec 2
    dtmf-relay rtp-nte
    gateway
    timer receive-rtp 1200
    sip-ua
    keepalive target ipv4:172.16.2.207:5068 tcp
    172.16.1.32 - Asterisk with a extensions on it.
    172.16.2.207 - Lync 2013 mediation server with other extension on it
    i can call from Asterisk extension via router and to Lync extension.
    i cannot call from Lync to Asterisk.
    TCP session with the router from Lync on port 5066 does not come up. three way handshake seems to come up.
    strange. lync person seems to configured everything correctly
    any thoughts?

  • Groupware integration  with microsoft exchange server

    I have a query regarding Groupware integration with microsoft exchange server.whether we require IIS server and microsoft exchange server on the same machine for groupware integration.or they can be on different machines.
    thanks,
    Pramod

    hi,
    We actually implemented integration of SAP with microsoft exchange server. It is not necessary for server and IIS to be in the same machine.
    regards,
    Ganesh.N

Maybe you are looking for

  • Capture no longer working on HDV camera with HDV setting - only with NTSC.

    I have a Canon HV10 HDV camcorder. It was working fine with HDV 1080i60 settings in Easy Setup last week. Now FCP wont see this camera with these settings or HDV 1080i60 Firewire Basic. It will only see it with standard NTSC DV set. I have been doing

  • How to automatically login to Viewer

    I have read the article on how to auto login to Viewer. I added the template to my page_layouts.xsl file but I cannot find the disco3iv.xml to change the default login. I am using 9ias with Discoverer Viewer - version 9.0.2.53.0.

  • Hide Document Display option

    How do I remove the Document Display options from Display Options Editor window?

  • RE: (forte-users) Posted Event Not Seen by EventLoop

    Hi, Event registration occurs when an event loop is activated. If your event loop is activated before your SO is ready and registered (Init must be finished) the event loop will be not registered for the event on your SO. This is a typical example of

  • Problema con photoshop

    Hola. Cuando abro un archivo no tengo problemas, pero si quiero abrir otro para poder trabajar con los dos se cierra el photoshop. Tengo Windows Vista y la versión CS3 con las actualizaciones. 4 Gb de Ram - Core Quad 2,5 - NVidia 8500. Es urgente por