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

Similar Messages

  • 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.

  • 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?

  • Error while connecting to Microsoft Exchange server using javamail: "com.sun.mail.util.MailConnectException: Couldn't connect to host, port: host name , 993; timeout -1"

    I am trying to read mails from my outlook microsoft exchange server. Following is the code:
    public void readEmailsFromOutlook(/*String host, String username, String password*/ ) throws MessagingException, IOException {
          String host = "hostname";
          String username = "domain\\username";
          String password = "password"
          // Create empty properties
          Properties props = System.getProperties();
          props.setProperty("mail.smtp.auth","true");
          props.setProperty("mail.store.protocol","imaps");
          props.setProperty("mail.imap.auth.plain.disable","true");
          props.setProperty("mail.imap.host",host);
          props.setProperty("mail.imap.port","993");
          props.setProperty("mail.imap.user",username);
          props.setProperty("mail.imap.pwd",password);
          props.setProperty("mail.imap.debug","true");
          props.setProperty("mail.imap.ssl.protocols","SSL");
          props.setProperty("mail.imap.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
          props.setProperty("mail.imap.socketFactory.fallback", "false");
          props.setProperty("mail.imap.socketFactory.port", "993");
          // Get session
                     Session session = Session.getInstance(props, new ExchangeAuthenticator(username, password));
          session.setDebug(true);
          // Get the store
          Store store = session.getStore("imaps");
          //Store store = session.getStore();
          store.connect(host, username, password);
          // Get folder
          Folder folder = store.getFolder("INBOX");
          folder.open(Folder.READ_ONLY);
          BufferedReader reader = new BufferedReader(new InputStreamReader(
              System.in));
          // Get directory
          Message message[] = folder.getMessages();
          for (int i = 0, n = message.length; i < n; i++) {
            System.out.println(i + ": " + message[i].getFrom()[0] + "\t"
                + message[i].getSubject());
            System.out.println("Read message? [YES to read/QUIT to end]");
            String line = reader.readLine();
            if ("YES".equalsIgnoreCase(line)) {
              System.out.println(message[i].getContent());
            } else if ("QUIT".equalsIgnoreCase(line)) {
              break;
          // Close connection
          folder.close(false);
          store.close();
    But it threw the following error:
    DEBUG: setDebug: JavaMail version 1.5.1
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle]
    DEBUG IMAPS: mail.imap.fetchsize: 16384
    DEBUG IMAPS: mail.imap.ignorebodystructuresize: false
    DEBUG IMAPS: mail.imap.statuscachetimeout: 1000
    DEBUG IMAPS: mail.imap.appendbuffersize: -1
    DEBUG IMAPS: mail.imap.minidletime: 10
    DEBUG IMAPS: trying to connect to host <hostname>,port 993, isSSL true
    com.sun.mail.util.MailConnectException: Couldn't connect to host, port: 10.75.250.60, 993; timeout -1;
      nested exception is:
    java.net.ConnectException: Connection refused: connect
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:693)
    at javax.mail.Service.connect(Service.java:345)
    at javax.mail.Service.connect(Service.java:226)
    at com.capgemini.utilities.Utilities.readEmailsFromOutlook(Utilities.java:1261)
    Whats wrong with my code?
    Please help!!!!

    You're using the "imaps" protocol, but you've set properties for the "imap" protocol.  Change all the property names from mail.imap.* to mail.imaps.*.
    Also, get rid of all the socket factory properties.
    If you still can't connect, see these connection debugging tips.
    Most likely you're using the wrong host name or port number.  In almost all cases, it's better to just let JavaMail choose the correct port number.

  • 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.

  • Calendar/Mail not syncing via Microsoft Exchange server

    Hello...
    I know, I know. Not another Exchange server question....
    But here goes....
    I

    ****.... return button..
    My iTouch has all the right settings from my IT department who uses a Exchange 2003 server.
    User name, password, server is right - at least we think it's right.
    Once I try to get Mail on my iTouch, it comes up with a "Cannot Get Mail - the connection to the server failed' error.
    I'm actually trying to sync my Entourage Calendar mostly. All setting are right under the preferences in Entourage for syncing. And my iCal on my computer creates a mirror image of my Entourage calendar.
    I can sync up the Calendar through iTunes, but don't really want to do this. Would rather have this happen WiFi.
    Is there anything I'm missing?
    I've reset my setting on my iTouch too. Done all that...read all the discussions, articles...
    The only level that it stops me at is getting mail. The odd thing was yesterday it sent a couple of test emails I created last week. ODD!
    Trying to get at least 75% of the capability out of this great technology.
    Thanks,
    Adam

  • Safari crashes behind Microsoft ISA proxy \ Authenticating to MS services

    I recently updated to Leopard but I'm experiencing multiple issues with Safari. Whenever I'm at the office Safari crashes repetitively whenever I try to access a site requiring authentication (mainly Microsoft based). at the office .
    This issue started after upgrading (thus not a clean install) to Leopard. Only happens in Safari (firefox no problem).
    This only happens when I'm in the office where I connect via a Microsoft ISA server. On the same machine with 10.4 I never once had this issue.
    One note is that since the upgrade to Leopard, authentication with ISA server does not work in the traditional way of domain\username (as it did before and should also now), but requires that I omit the domain name, this may be a clue to the cause? My Laptop is not part of any Windows domain I use a different user locally than to access any online services.
    I cannot upload crash details via the crash reporter (might be blocked on the proxy server)
    I would like to hear any suggestions.
    Thanks
    DT

    I've had this problem logged as a bug on Radar since September (yes before Leopard shipped). The bug report was closed as a duplicate but I got it re-opened when 10.5.1 shipped and it was still present. It used to be just https access that caused Omniweb and Safari to crash when I authenticated to the ISA proxy in work.
    After applying the latest updates (Security Update 2007-009 and Quicktime Broadcaster 1.5.2) any app that uses the proxy crashes. So http web access as well as https access not cause a crash. The Omni update check app crashes and takes the app in question with it when you launch it. Software update crashes. So do others but I forget the details.
    This only happens at work. Fine on other networks. If I browse on the same machine using IE under Windows XP in a Parallels VM using Shared networking there are no problems. This is a Leopard problem . Didn't happen under Tiger.
    Not good.
    This is not good.

  • MS SQL 2008 R2 Named instance: Login failed. Microsoft SQL server, Error: 18452) - Tryig to access using the FQDN assigned for the backup network card.

    Hi,
       I have a windows 2008 R2 Enterprise servers with standalone MS-SQL 2008 R2 named instance.  The server is having two networks, once production and the second for backup. The server FQDN is resolving to the production IP. The backup NIC
    DNS dynamic update is disabled and an "A" record is registered with the dns.  While trying to connect to the instance using the management studio:
    Successfuly able to connect using the instance name, the production hostname, production IP and backup IP. 
    but while trying to connect to the insance using the backup hostname getting the below error:
    "Login failed. The login is an untrusted domain and cannot be used with windows authentication. (Microsoft SQL server, Error: 18452) "
    This is required for the backup tool to get connected using the backup FQDN of the server.
    Should I need to create a host name alias,  request you to kindly assist me with the best recommedation to fix this.
    http://blogs.msdn.com/b/dbrowne/archive/2012/05/21/how-to-add-a-hostname-alias-for-a-sql-server-instance.aspx

    Hi,
    It might be a kerberos issue.  Check that there are valid SPN's registered using the setspn utility - http://technet.microsoft.com/en-us/library/cc731241.aspx
    Thanks, Andrew
    My blog...

  • ISA server- Bypass authentication

    Hi 
    My environment: External users access SharePoint intranet site by entering credentials in Microsoft ISA server login page(authenticate to ISA server then accessing all sharepoint sites).
    one client wants to access sharepoint intranet without ISA authentication.Is there any way to access SharePoint intranet site(https://domainname/sites/site1) from internet without ISA authentication.I mean bypass ISA proxy authentication for this particular
    SharePoint site(https://domainname/sites/site1)
    SharePoint site(https://domainname/site/site1) is enabled with anonymous authentication.
    Thanks for any help.

    Hi
    I see this is posted in the wrong forum. Yes you can add the url to the bypass proxy list in IE and it should work.
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Perimeter authentication with ISA server and AD

    Hi,
    We have a Microsoft ISA server that does all authentication at the perimeter. I'm trying to set up a WLS 10 that can inspect and pass on the authenticated Subject to the (SQLServer) database when performing searches.
    I have configured the environment according to the steps in [url  http://e-docs.bea.com/wls/docs100/secmanage/sso.html], and I have set up my security realm with an Active Directory Authentication provider and a Negotiate Identity Assertion provider. But soemthing is obviously not working, since I see no signs of the authenitcated subject in the server log, and Security.getCurrentSubject() returns an empty Subject. What am I doing wrong?
    Thanks
    Edited by tdirrenb at 04/18/2008 6:33 AM
    Edited by tdirrenb at 04/18/2008 6:34 AM

    Hi Vinod,
    Looks like this is a AAA issue. Moving this to AAA domain for faster response.
    thanks,
    Vinay

  • Using Microsoft Exchange Server in SOA Suite

    Hi Gurus,
    I want to use Microsoft Exchange Server for sending email notifications in SOA Suite.
    I tried connecting to my company( Exchange Server) SMTP name and port no but its failing with all options ( SSL, TSL , NONE).I even tested with OSB, adding SMTP server and sending mail using Business Service but it's failing
    I have tested with Apache James and Gmail as email server and it works fine,but problem comes when in want to configure it with company Exchange Server
    Did any one have configured/tried connecting to Microsoft Exchange Server using SOA Suite. Please provide your inputs.
    Socket Excpetion while sending emails in 11g
    says Oracle UMS does not works with Microsoft Exchange Server and we need to replace some jars.
    Please suggest !!
    Regards,
    Abhinav Gupta

    Hi Neeraj,
    for OutgoingMailServerSecurity       :      TLS
    *******error*****
    ******** in Email Driver Logs *********
    javax.mail.MessagingException: Can't send command to SMTP host;
    nested exception is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at com.sun.mail.smtp.SMTPTransport.sendCommand(SMTPTransport.java:1564)
    at com.sun.mail.smtp.SMTPTransport.sendCommand(SMTPTransport.java:1551)
    at com.sun.mail.smtp.SMTPTransport.ehlo(SMTPTransport.java:935)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:426)
    at javax.mail.Service.connect(Service.java:310)
    at javax.mail.Service.connect(Service.java:169)
    at javax.mail.Service.connect(Service.java:118)
    at oracle.sdpinternal.messaging.driver.email.EmailDriver.send(EmailDriver.java:780)
    at oracle.sdpinternal.messaging.driver.email.EmailManagedConnection.send(EmailManagedConnection.java:50)
    at oracle.sdpinternal.messaging.driver.DriverConnectionImpl.send(DriverConnectionImpl.java:41)
    at oracle.sdpinternal.messaging.dispatcher.DriverDispatcherBean.onMessage(DriverDispatcherBean.java:296)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    *****IN console Logs *******
    Jun 25, 2012 3:45:36 PM IST> <Error> <oracle.soa.services.notification> <BEA-00
    0000> <<.> Error status received from UMS.
    Status detail :
    Status type : DELIVERY_TO_GATEWAY:FAILURE,
    Status Content : javax.mail.MessagingException: Can't send command to S
    MTP host;
    nested exception is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorExc
    eption: PKIX path building failed: sun.security.provider.certpath.SunCertPathBui
    lderException: unable to find valid certification path to requested target,
    Addressed to : EMAIL:abhinav.gupta@*********.com,
    UMS Driver : Farm_base_domain/base_domain/AdminServer/usermessagingdriv
    er-email:oracle_sdpmessagingdriver_email#Email-Driver,
    UMS Message Id : 23239c4f0ac0064b017335c74f86a8e9,
    Gateway message Id : ****.outlook.com:[email protected]@*******.com,
    Status Received at : Mon Jun 25 15:45:34 IST 2012.
    Check status details and fix the underlying reason, which caused error.
    >
    ********error *******
    for OutgoingMailServerSecurity       :     NONE
    *******error*****
    ******** in Email Driver Logs *********
    javax.mail.MessagingException: [EOF]
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:1481)
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1512)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1054)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:634)
    at oracle.sdpinternal.messaging.driver.email.EmailDriver.send(EmailDriver.java:781)
    at oracle.sdpinternal.messaging.driver.email.EmailManagedConnection.send(EmailManagedConnection.java:50)
    at oracle.sdpinternal.messaging.driver.DriverConnectionImpl.send(DriverConnectionImpl.java:41)
    at oracle.sdpinternal.messaging.dispatcher.DriverDispatcherBean.onMessage(DriverDispatcherBean.java:296)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    *****IN console Logs *******
    <Jun 25, 2012 3:57:10 PM IST> <Error> <oracle.soa.services.notification> <BEA-00
    0000> <<.> Error status received from UMS.
    Status detail :
    Status type : DELIVERY_TO_GATEWAY:FAILURE,
    Status Content : javax.mail.MessagingException: [EOF],
    Addressed to : EMAIL:abhinav.gupta@*****.com,
    UMS Driver : Farm_base_domain/base_domain/AdminServer/usermessagingdriv
    er-email:oracle_sdpmessagingdriver_email#Email-Driver,
    UMS Message Id : 232e2ab70ac0064b01cd6ee979e494ed,
    Gateway message Id : ****.outlook.com:[email protected].******.com,
    Status Received at : Mon Jun 25 15:57:04 IST 2012.
    Check status details and fix the underlying reason, which caused error.
    *******error*****
    Please suggest me what to do !! I am stuck with it for last two days !!

  • ASA 8.0 and Microsoft ISA (local user backup)

    What is the command so that when the username + password cannot be found in the microsoft isa server, the pix will look at the local database?
    This command works in the router, but I cannot seem to find the equivlant for the pix.
    aaa authentication login default local group tacacs+
    Basically does the pix asa 8.0 support Multiple authorization commands?
    Thank you very much for your help.

    On a router, "aaa authentication login default local group tacacs+ " will ALWAYS use the local user DB, never tacacs.
    "aaa authentication login default group tacacs+ local" will first try tacacs and only if the tacacs server is not responding, use the local DB. Note that if the tacacs DOES respond but rejects the authentication attempt (user does not exist or wrong password), that the router will NOT use the local DB.
    That said, on pix/asa you can do the same, e.g.:
    aaa-server TPLUS protocol tacacs+
    aaa-server TPLUS (management) host 10.0.0.1
    aaa authentication telnet console TPLUS LOCAL
    hth
    H

  • Understanding on Oracle services for Microsoft Transaction Server frm dba point of view

    Hi ALL,
    i read : -> https://docs.oracle.com/database/121/NTMTS/recovery.htm#NTMTS003
    Need help to further confirm my understanding on what i read.
    I am coming from the DBA angle... .
    the functionality of the Microsoft Transaction server is integrated within the operating system as a COM+ server and as a .NET server,  "
    can i say these is the application servers ?
    and the Microsoft Transaction distributed co -ordinator components is part of it.
    Question, i don't install the Oracle Recovery Services on the above system right?
    Question 2, as a dba, my only concern is to make sure the Oracle Services for Microsoft Transaction Server is installed. Is this correct ?
    plus making sure to create the OraMTS administrator to run the recovery job to check for in-doubt transaction.
    Question 3:
    is this Oracle services for Microsoft Transaction Server used only when an application useses multiple databases in an env?
    Can i say that when there is no user MTSSYS in my database, Oracle services for MTS is not used?
    The reason why i ask is i am upgrading/ migrating my database and this database don't work with more then 1 database or the application does not work with more then 1 databases.
    I ask the apps team all they say is that they are also not too sure. Thus need help/ advice.

    Daniel,
    In pre-8.1.7.4.0 beta implementations, your application server e.g. IIS or MTX.EXE hosts MTS transactional components. When such components acquire OLEDB or ODBC connections to Oracle and external service setup for that database i.e. OracleMTSService<id> joins the MTS transaction on behalf of the Oracle database which quite often runs on a non-Windows platform e.g. Solaris. We restrict each database to have one and only such service. This brings in scalability and availability issues. In 8.1.7.4.0 we have embedded the transaction join and commit logic in the clientside dll. There is no OracleMTSService<id> for a given database. The only service needed is a recovery service one per Windows machine on which Oracle Svcs For MTS is installed. This service is automatically created on installation of the product and doesn't connect to the databases. Instead the involved databases connect to the service via HTTP to resolve any MTS-related transactions that are in-doubt.

  • SGD + Microsoft ISA 2006

    *-- Reposted as a Question -- (Didn't realise it helped get replys) :) --*
    Hi,
    I am hoping someone would be able to help me out here, we have recently purchased the SUN VDI and SGD which we have been looking at for sometime now, due to budgets this year it has taken some time but i have finally got there in the end and i am very happy with the VDI Service.
    I am trying to get the SGD working externally at the moment but it appears to be having problems when it launches the java engine, the java client shows the following in the console
    Java Plug-in 1.6.0_18
    Using JRE version 1.6.0_18-b07 Java HotSpot(TM) Client VM
    java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file Tester
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file Tester
    java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file com/tarantella/tta/client/tcc/lwplugin/pluginG/TCCHelper
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file com/tarantella/tta/client/tcc/lwplugin/pluginG/TCCHelperTo be quite honest none of that makes any kind of sense to me, but hopefully someone who is quite savey with Java will know what is going on ;)
    I did some logs on ISA using my External IP when access SGD and it did say connection denied to alot of .js paths so i am wondering weather it is the authentication of ISA that is stopping SGD bringing those files down from the server, the problem is i cannot allow it to not use the ISA Authentication as it needs to be over 443 and ISA obviously needs it to be secure using ISA Authentication for me to publish this.
    The procedure i have to use is browse to the SGD URL, Authenticate agaist ISA which then shows me the SGD Screen, I click on Login to Desktop which then gives me the SGD login, I then authenticate into SGD which then displays the JAVA Screen at that point is when it justs sits there doing nothing.
    Any help/advice will be appriciated
    Many Thanks,
    James.

    Well, I've not seen this before, but I've never seen anyone attempting to use ISA Server, either - I'd hope someone with more knowledge / experience with this product can offer some advice. Until then, guess you're stuck with me ...
    Anyway It would appear that the Tester.class applet is being prevented from being downloaded to your client, or is corrupted in some way. ISA Server is almost certainly causing this.
    I'd first just confirm you can connect from that client to an SGD host without going through an ISA server - connect to https://sgddemo.sun.com and login anonymously, make sure that works.
    You may want to first open up your Java Control Panel, and check your "Temporary Cache Files -> (View)" and then "Resources". you should see a few Java-related files, Tester.class, ttalwwin32G-jps.jar, and ttalwG-jps.jar - if present, make a note of their sizes. Delete these, and then connect to the above URL, they'll be re-loaded.
    Delete these again, then attempt to access via your ISA server again; are any of them reloaded? What's their size?
    As for connecting through ISA Server, I'm afraid I know little about its details, but I think it could be problematic. Are you running SGD in secure (https/aips) mode? Are you running firewall traversal mode? Once authenticated to ISA server, how is traffic directed to the SGD webserver? Is it proxied, or can you get a direct connection?
    Recall that SGD has two connections between the client and the SGD server - the first is the web browser - http or https - that handles logging you in, building a webtop, launching applications, etc. The second is the AIP connection - this is your display traffic, and can be encrypted or left unencrypted. This connection is initiated by a separate client component, and uses tcp port 3144 (for unencrypted connections), 5307 (for encrypted), and most commonly port 443, in "firewall traversal" or "firewall forwarding" mode. In this mode, both https and aip traffic are tunneled on port 443, and are "demultiplexed" on the SGD server.
    I'd thinking that firewall forwarding might have the best chance of succeeding in this environment, as ISA server won't be able to recognize the Java class libraries for what they are, since they're encrypted. But I'm still concerned about routing and such in an SSL environment - I'm not convinced you'll be able to route a client connection properly through the ISA server.
    Anyway, a quick way to setup security/firewall traversal is using the "tarantella security enable" command line - it'll create a self-signed cert, install it, and configure firewall traversal. Or, if you have a permanent cert, will install that as well.
    Here's where I'd recommend you use the Secure Gateway as an alternative entry point to your network ...

  • Problems with Forums publication on ISA server

    Hi all,
    I installed portal 7.0sps 14 and published it on Microsoft ISA Server. Now I faced with the problem - JIVE forums dont't work at all. If I try to work with portal without ISA using internal link, forums work fine. What I see working with ISA - it cuts part of the index.jspa, and forums don't work. I think it can be due to Content-Length attribute which appears only when I'm working with ISA.
    Http-headers from internal link:
    Headers sent from browser:
    (Request-Line)     GET /forums/index.jspa HTTP/1.1
    Accept     image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Accept-Encoding     gzip, deflate
    Accept-Language     ru
    Connection     Keep-Alive
    Cookie     jive.vid=NlupVJWYuodKV5Fv; UserUniqueIdentifier=1202886504416; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; alreadyLogged=1208091749284; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID0611355850DB01467725737220293143End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMQUABAAAAAgKAApBLUdPUk9LSE9W%2FwD1MIHyBgkqhkiG9w0BBwKggeQwgeECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwTCBvgIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMTIzWjAjBgkqhkiG9w0BCQQxFgQUQxX!IL8yYvR8loz0Hyun4D6bIUQwCQYHKoZIzjgEAwQvMC0CFQCF9q3P7GbE7a1L0cbZWX40DVtXsgIUOUon7H3OzJPXrTMB3hr2qMxfwSU%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse; SAPWP_active=1
    Host     internal.site.local
    Referer     http://internal.site.local/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063615598
    UA-CPU     x86
    User-Agent     Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Headers recieved by server
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Referer: http://internal.site.local/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063615598
    Accept-Language: ru
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Host: internal.site.local
    Connection: Keep-Alive
    Cookie: jive.vid=NlupVJWYuodKV5Fv; UserUniqueIdentifier=1202886504416; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; alreadyLogged=1208091749284; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID0611355850DB01467725737220293143End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMQUABAAAAAgKAApBLUdPUk9LSE9W%2FwD1MIHyBgkqhkiG9w0BBwKggeQwgeECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwTCBvgIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMTIzWjAjBgkqhkiG9w0BCQQxFgQUQxX!IL8yYvR8loz0Hyun4D6bIUQwCQYHKoZIzjgEAwQvMC0CFQCF9q3P7GbE7a1L0cbZWX40DVtXsgIUOUon7H3OzJPXrTMB3hr2qMxfwSU%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse; SAPWP_active=1
    <br>
    Headers recieved by browser:
    (Status-Line)     HTTP/1.1 200 OK
    Content-Language     en
    Content-Type     text/html; charset=UTF-8
    Date     Fri, 15 Feb 2008 08:54:09 GMT
    Server     SAP J2EE Engine/7.00
    Transfer-Encoding     chunked
    Headers from external link (with ISA):
    Headers sent:
    (Request-Line)     GET /forums/index.jspa HTTP/1.1
    Accept     image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Accept-Encoding     gzip, deflate
    Accept-Language     ru
    Connection     Keep-Alive
    Cookie     UserUniqueIdentifier=1202886976569; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID2067924450DB01427929753435928352End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMAUABAAAAAgKAApBLUdPUk9LSE9W%2FwD0MIHxBgkqhkiG9w0BBwKggeMwgeACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwDCBvQIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMDAzWjAjBgkqhkiG9w0BCQQxFgQUpLiJi2aqtu%2FUaDhynzJrkPQ8uCkwCQYHKoZIzjgEAwQuMCwCFDxP9!P%2Fq!St0itPB9zludzDGFI9AhR8DW0zmxLNzzlVYY0LwsWUUj5h2w%3D%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse
    Host     external.site.com
    Referer     https://external.site.com/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063577351
    UA-CPU     x86
    User-Agent     Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Headers recieved by server
    Reverse-Via: MOSCRAS
    Host: external.site.com:443
    Cookie: UserUniqueIdentifier=1202886976569; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID2067924450DB01427929753435928352End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMAUABAAAAAgKAApBLUdPUk9LSE9W%2FwD0MIHxBgkqhkiG9w0BBwKggeMwgeACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwDCBvQIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMDAzWjAjBgkqhkiG9w0BCQQxFgQUpLiJi2aqtu%2FUaDhynzJrkPQ8uCkwCQYHKoZIzjgEAwQuMCwCFDxP9!P%2Fq!St0itPB9zludzDGFI9AhR8DW0zmxLNzzlVYY0LwsWUUj5h2w%3D%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Referer: https://external.site.com/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063577351
    Accept-Language: ru
    UA-CPU: x86
    Connection: Keep-Alive
    Headers recieved by browser:
    (Status-Line)     HTTP/1.1 200 OK
    Connection     Keep-Alive
    Content-Language     en
    Content-Length     1459
    Content-Type     text/html; charset=UTF-8
    Date     Fri, 15 Feb 2008 08:55:12 GMT
    Server     SAP J2EE Engine/7.00
    <br>
    Any help will be appreciated
    Thanks in advance
    Anton.

    Hi all,
    I installed portal 7.0sps 14 and published it on Microsoft ISA Server. Now I faced with the problem - JIVE forums dont't work at all. If I try to work with portal without ISA using internal link, forums work fine. What I see working with ISA - it cuts part of the index.jspa, and forums don't work. I think it can be due to Content-Length attribute which appears only when I'm working with ISA.
    Http-headers from internal link:
    Headers sent from browser:
    (Request-Line)     GET /forums/index.jspa HTTP/1.1
    Accept     image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Accept-Encoding     gzip, deflate
    Accept-Language     ru
    Connection     Keep-Alive
    Cookie     jive.vid=NlupVJWYuodKV5Fv; UserUniqueIdentifier=1202886504416; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; alreadyLogged=1208091749284; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID0611355850DB01467725737220293143End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMQUABAAAAAgKAApBLUdPUk9LSE9W%2FwD1MIHyBgkqhkiG9w0BBwKggeQwgeECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwTCBvgIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMTIzWjAjBgkqhkiG9w0BCQQxFgQUQxX!IL8yYvR8loz0Hyun4D6bIUQwCQYHKoZIzjgEAwQvMC0CFQCF9q3P7GbE7a1L0cbZWX40DVtXsgIUOUon7H3OzJPXrTMB3hr2qMxfwSU%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse; SAPWP_active=1
    Host     internal.site.local
    Referer     http://internal.site.local/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063615598
    UA-CPU     x86
    User-Agent     Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Headers recieved by server
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Referer: http://internal.site.local/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063615598
    Accept-Language: ru
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Host: internal.site.local
    Connection: Keep-Alive
    Cookie: jive.vid=NlupVJWYuodKV5Fv; UserUniqueIdentifier=1202886504416; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; alreadyLogged=1208091749284; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID0611355850DB01467725737220293143End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMQUABAAAAAgKAApBLUdPUk9LSE9W%2FwD1MIHyBgkqhkiG9w0BBwKggeQwgeECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwTCBvgIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMTIzWjAjBgkqhkiG9w0BCQQxFgQUQxX!IL8yYvR8loz0Hyun4D6bIUQwCQYHKoZIzjgEAwQvMC0CFQCF9q3P7GbE7a1L0cbZWX40DVtXsgIUOUon7H3OzJPXrTMB3hr2qMxfwSU%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse; SAPWP_active=1
    <br>
    Headers recieved by browser:
    (Status-Line)     HTTP/1.1 200 OK
    Content-Language     en
    Content-Type     text/html; charset=UTF-8
    Date     Fri, 15 Feb 2008 08:54:09 GMT
    Server     SAP J2EE Engine/7.00
    Transfer-Encoding     chunked
    Headers from external link (with ISA):
    Headers sent:
    (Request-Line)     GET /forums/index.jspa HTTP/1.1
    Accept     image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Accept-Encoding     gzip, deflate
    Accept-Language     ru
    Connection     Keep-Alive
    Cookie     UserUniqueIdentifier=1202886976569; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID2067924450DB01427929753435928352End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMAUABAAAAAgKAApBLUdPUk9LSE9W%2FwD0MIHxBgkqhkiG9w0BBwKggeMwgeACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwDCBvQIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMDAzWjAjBgkqhkiG9w0BCQQxFgQUpLiJi2aqtu%2FUaDhynzJrkPQ8uCkwCQYHKoZIzjgEAwQuMCwCFDxP9!P%2Fq!St0itPB9zludzDGFI9AhR8DW0zmxLNzzlVYY0LwsWUUj5h2w%3D%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse
    Host     external.site.com
    Referer     https://external.site.com/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063577351
    UA-CPU     x86
    User-Agent     Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Headers recieved by server
    Reverse-Via: MOSCRAS
    Host: external.site.com:443
    Cookie: UserUniqueIdentifier=1202886976569; jiveforums.admin.logviewer=error.size=0&debug.size=67&info.size=308&warn.size=0; PortalAlias=portal; saplb_*=(J2EE15233600)15233650; JSESSIONID=(J2EE15233600)ID2067924450DB01427929753435928352End; MYSAPSSO2=AjExMDAgABJwb3J0YWw6QW50b25HMDJtb3OIABNiYXNpY2F1dGhlbnRpY2F0aW9uAQAKQS1HT1JPS0hPVgIAAzAwMAMAA0VQUAQADDIwMDgwMjE1MDgyMAUABAAAAAgKAApBLUdPUk9LSE9W%2FwD0MIHxBgkqhkiG9w0BBwKggeMwgeACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBwDCBvQIBATATMA4xDDAKBgNVBAMTA0VQUAIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwMjE1MDgyMDAzWjAjBgkqhkiG9w0BCQQxFgQUpLiJi2aqtu%2FUaDhynzJrkPQ8uCkwCQYHKoZIzjgEAwQuMCwCFDxP9!P%2Fq!St0itPB9zludzDGFI9AhR8DW0zmxLNzzlVYY0LwsWUUj5h2w%3D%3D; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1)
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, /
    Referer: https://external.site.com/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fTMKBCstyle!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage?InitialNodeFirstLevel=true&windowId=WID1203063577351
    Accept-Language: ru
    UA-CPU: x86
    Connection: Keep-Alive
    Headers recieved by browser:
    (Status-Line)     HTTP/1.1 200 OK
    Connection     Keep-Alive
    Content-Language     en
    Content-Length     1459
    Content-Type     text/html; charset=UTF-8
    Date     Fri, 15 Feb 2008 08:55:12 GMT
    Server     SAP J2EE Engine/7.00
    <br>
    Any help will be appreciated
    Thanks in advance
    Anton.

Maybe you are looking for

  • Creative Cloud for Teams (Any Hidden Cost?)

    Regarding the CC Team Subscription please clarify the following; (1) Are there a certain number of seats allotted to the team subscription and if so how many? (2) For a company with 6 to 8 employees who need to use various products from the Master Su

  • No Message: Write to Fact table.

    Hi ALL, Source: ECC 6 Target: BI 7.3 We are Transferring 2LIS_13_VDITM Datasource---->> 0SD_CO3 Infocube . After Data Replication , 1. Data Transferred to PSA . 2. During Transformation Creation Manuel Mapping is performed . Activated . 3. During DTP

  • Why i can't open my raw file in adobe photoshop cs6... and i use camera Canon 650D

    why i can't open my raw file?

  • How to clear down console.app in OS X 10.8.5

    I would like to clear down all logs on the device. I've already cleared out /private/var/log but can't find where all the others are, for example user diagnostic reports and system diagnostic reports. Be grateful for some pointers. Thank you!

  • Project status

    Gurus, I am working on an integration with PS module on which I do not have much idea. I have generated one purchase requisition with respect to a network (which is assigned to one WBS element). I have converted the PR into PO and now I am trying to