Problem: HTTPS connections via authenticated proxy

Hi all,
we are facing a problem with the BEA implementation of the HTTPS
client/server protocol. As you might know it's possible to tunnel T3 via
HTTP/HTTPS. We are evaluating that at the moment. To make authentication for
proxy servers possible we followed the documentation and created a class
implementing the ProxyAuthenticator interface. Everything worked find until
we tried to use this together with the HTTPS-protocol. Whereas it works as
long as the proxy doesn't ask for authentication, the ProxyAuthenticator
class isn't even called in the other case. Has anyone of you already made it
work?
Your help is highly appreciated,
Tchaw!
Christoph Krüger

implementing the ProxyAuthenticator interface. Everything Think your are trying to authenticate the jdk 1.2 way,
maybe just trying it jdk 1.1 like will help.
What i found in the jsse Docu:
When accessing HTTPS servers through a web proxy, you must set the "https.proxyHost"
and "https.proxyPort" system properties to
the correct host name and port number of the web proxy.
For example, to set this property on the command line to access HTTPS servers
through the proxy host "webproxy" running at port 8080 you would use:
java -Dhttps.proxyHost=webproxy -Dhttps.proxyPort=8080
And some of my sample code for proxy auth:
System.getProperties().put( "proxySet", "true" );
System.getProperties().put( "proxyHost", "proxyurl" );
System.getProperties().put( "proxyPort", "8080" );
String authString = "userid:password";
// enter the username and password for the proxy
String auth = "Basic " + new sun.misc.BASE64Encoder().encode authString.getBytes());
URL u = new URL("http://www.bild.de/");
URLConnection connection = u.openConnection();
connection.setRequestProperty( "Proxy-Authorization", auth ); // Set up the connection
so it knows you are sending proxy user information
connection.setRequestProperty( "Authorization", auth );
connection.setDoInput( true ); // Set up the connection
so you can do read and writes
connection.setDoOutput( true );
// request.getAuthType() // Rueckgabewert ueberpruefen
Bye, Klaas

Similar Messages

  • How to get a connection via a proxy?

    Hello all,
    I'm writng an application that sends a request to the google search engine and then downloads the contents of the web page returned. Connecting from home via a dial up causes no problems but when i try the same code from college (which uses a proxy) i get an IOException. I think this is what is causing the problem. Another developer posted a message with a similar problem to myself and i used the code he was given as a possible solution but it hasn't solved the problem. I posted the code i'm using below. any suggestions would be welcome because i'm clueless as to what to do next.
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class GoogleConnector {
    String hostname = "www.google.com";
    int port = 80;
    String s1, s2 = new String();
    Set hs = new HashSet();
    Properties systemProperties = System.getProperties();
    // here is the method to get the URLs
    public Set getList(String arg1) {
    try {
    systemProperties.put("proxySet","true");
    systemProperties.put("proxyHost","192.168.5.251");
    systemProperties.put("proxyPort","3129");
    systemProperties.put("socksProxyPort","3129");
    systemProperties.put("socksProxyHost","192.168.5.251");
    System.setProperties(systemProperties);
    Socket s = new Socket(hostname,port);
    InputStream sin = s.getInputStream();
    BufferedReader fromServer = new BufferedReader(new InputStreamReader(sin));
    OutputStream sout = s.getOutputStream();
    PrintWriter toServer = new PrintWriter(new OutputStreamWriter(sout));
    Send request as specified in arg1 to the server
    and write whole page as a string broken up by newline character
    toServer.print("GET " + arg1 + " HTTP/1.1\n");
    toServer.print("Host: " + hostname + "\n\n");
    toServer.flush();
    for (s1 = null; (s1 = fromServer.readLine()) != null; ) {
    s2 += s1 + "\n";
    // close all connections
    toServer.close();
    fromServer.close();
    s.close();
    I do some other processing here but it's not relevant to the connection problem.
    catch (UnknownHostException ue) {
    System.out.println("UnknownHostException");
    catch (IOException ie) {
    System.out.println("GoogleConnector: IOException");
    return hs; //can ignore this return statement
    } // end getList
    } // end GoogleConnector

    Here's a working code sample to connect using a proxy server:
    http://www.esus.com/docs/GetQuestionPage.jsp?uid=666
    and don't forget, you can use the google web api's:
    http://www.esus.com/docs/GetQuestionPage.jsp?uid=1570
    Cheers

  • Can't open HTTP connection to a proxied server

    Greetings,
    Trying to open an HTTP connection to a web server. The connection is rejected
    by the proxy. In order to bypass the proxy, I used to code something like:
    System.setProperty("http.proxyHost", hostname) ;
    System.setProperty(“http.proxyPort”, port);
    Doing that, works properly in a standalone Java application. As soon as the same
    code is implemented in a WebLogic 8.1 deployed EJB, it fails with the following
    stack dump:
    <May 10, 2004 7:12:07 PM CEST> <Info> <net> <000903> <Could not open connection
    with host: www.rect.cofacescrl.com and port: 80.>
    04-05-10 19:12:07,788 FATAL SearchCompanyBean - Error while attempting to connect
    to Source
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: 'www.rect.cofacescrl.com', port: '80'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:255)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:307)
    at weblogic.net.http.HttpClient.<init>(HttpClient.java:126)
    at weblogic.net.http.HttpClient.New(HttpClient.java:192)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:115)
    at com.coface.STR.scrl.ScrlSearchAdapter.search(Unknown Source)
    at com.coface.STR.tuxedo.SearchCompanyBean.service(Unknown Source)
    at com.coface.STR.tuxedo.SearchCompanyBean_fbx9fb_EOImpl.service(SearchCompanyBean_fbx9fb_EOImpl.java:46)
    at com.coface.STR.tuxedo.SearchCompanyBean_fbx9fb_EOImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:159)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:263)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:230)
    at com.coface.STR.tuxedo.SearchCompanyBean_fbx9fb_EOImpl_WLStub.service(Unknown
    Source)
    at weblogic.wtc.gwt.InboundEJBRequest.execute(InboundEJBRequest.java:419)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:234)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:210
    Suggestions anybody before my boss gets nervous about that ?
    Many thanks in advance,
    Alexandre CUENCA

    I think the data you are seeing is part of the telnet negotiation sequence. http://www.faqs.org/rfcs/rfc854.html
    A telnet session is more complex than opening a TCP socket.
    I would suggest using the LabVIEW Internet Toolkit for telnet communications.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Hi ihave maintained the http connection to enable proxy but still?

    hi ihave maintained the http connection and also in sxmb_adm i have added the
    entriees for specific configuration to enable proxy but still i m getting the error
    ->no connection to the integration builder
    ->on going to the connection test
    i get the error SPROX_IFR_ADDRESS
    and unable to get the data exchange profile
    and in exchange profile i can see all the relavavt data w.r.to xi serer in connections section.
    ->do we also have to maintain anything relate to r3 in exchange profile

    ><i>do we also have to maintain anything relate to r3 in exchange profile</i>
    Not needed.
    Just follow Vijaya's blog on what needs to be done step by step and if still no success let us know what the error is
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Regards
    Bhavesh

  • New AEBS configured - Problem to connect via Airport

    Hi,
    I recently bought the new AEBS (square) and an original Airport card (802.11b) to use in my Imac G4 800mhz.
    Installation of the Airport card looks correct as I can see the Airport is activated.
    The configuration of the AEBS is then a little bit more complicated :
    First, when I plugged on the AEBS, I had a flashing amber light, and the Airport utility could not find the base so that I could set it up via the Airport.
    Then after reinitializing the AEBS, I had still the flashing amber light, and the Airport utility could see the base (with the amber light) but never let me configure it (even going through the manual configuration to understand the origin of the flashing light - as recomended in the manual guide).
    After several attempts, I finally plugged my Imac to the AEBS through an Ethernet cable, and at last I could access to the AEBS.
    It made me download the Airport utility update (5.2.1) and gave me access to the settings.
    I then configured my network with a WEP encryption and it actually works with my professional PC.
    The light of the AEBS is now green.
    Unfortunately, when I disconnect the Ethernet cable and try to connect via the Airport, I always get an error message without much explanation.
    Also my Airport does not always find the base immediately, it needs several attempts to find it but never allows me to connect.
    Thanks for your help to find a solution to this problem.
    PM

    My problem is solved.
    Part of the answer was in my previous post.
    The Airport card 802.11b admits canal from 1 to 11 whereas the new 802.11n goes up to canal 13.
    In default settings the AEBS is set on canal 13, and therefore unreadable from the Airport card.
    The solution is then to make the setting of your network through the Ethernet cable without forgetting to change the canal of the AEBS to 11.
    Then you just need to get rid of the Ethernet cable and connect to your new network via the Airport.
    Now it works just fine. Hope this last post can help.
    PM

  • Custmizing Authentication Proxy

    We want to use auth-proxy on a Cisco 836 with IOS 12T3 in order to provide WLAN access as if in an airport lounge or a hotel. The login page sent to the browser is to be customized with regard to look and feel. I've been able to do that with "ip auth-proxy banner file flash://login.html" and "ip adminission auth-proxy banner file flash://login.html", but the actual FORM is created on the fly by the router with a hidden time form element. Can you give us details on how the HTML form can be customized with the regard to the individual fields on the form?

    I have read that guide before, but it says it that auth proxy works with vpn and that
    If a VPN client initiates an HTTP connection, the authentication proxy first checks for prior client authentication. If the client is authenticated, authorized traffic is permitted. If the client is not authenticated, the HTTP request triggers the authentication proxy, and the user is prompted for a username and password.
    If the user authentication is successful, the authentication proxy retrieves the user profile from the AAA server. The source address in the user profile entries is replaced with the IP address of the authenticated VPN client from the decrypted packet.
    The only way I could make an impact with auth proxy on the vpn behaviour was when I configured a split-tunnel rule for the vpnclient which points only sends traffic to a non-existent internal network via the vpntunnel. Only then would auth-proxy insert additional rules that allow access to more destinations.
    As VPN without split-tunnel already allows access to all destinations I don't see how
    auth-proxy can make a difference
    Doro

  • OSB call to remote Web Service via https proxy and https CONNECT problem

    Hi
    I have a service that calls a web service on another server as a web service. This call is via https and the certificate validation raises no errors.
    I now want this call to go via a squid httpd proxy on port 3128 on some machine. So I would like to use HTTP CONNECT (RFC 2817) proxying,. But when I set up this as a proxy, I am getting "Certificate chain" error messages. The certifcate chains is no different now from when I called without the http proxy, so what am I doing wrong? Does OSB support HTTP CONNECT?
    -Johan

    The exeption we are getting is BEA-380000
    General runtime error: [Security:090477]Certificate chain received from XXX - 123.123.123.123 --> test.salesforce.com was not trusted causing SSL handshake failure.
    This is of course not relevant if the callout were using CONNECT. In the CONNECT scenario, OSB would not care about XXX's certificate.

  • HTTPS connection from portal to external webserver

    Hi,
    I am looking for a way to open a HTTPS connection from portal server to an external webserver. According to <a href="http://help.sap.com/saphelp_nw04/helpdata/en/e2/71c83edf72e16be10000000a114084/content.htm">SAP</a> the code should look like
    KeyStore keystoreCAs = ...
    SecureConnectionFactory factory = new SecureConnectionFactory(keystoreCAs, null);
    HttpURLConnection con = factory.createURLConnection("https://www.mycompany.com");
    Does not look difficult, <b>but how do I create the keystore object</b>? The keystore object should somehow be connected to the portal server's keystore which manages the certificates of trusted Certificate Authorities.
    Any ideas?
    Regards,
    Martin

    Hi,
    meanwhile I solved the problem by my own. The solution slightly simplified is given below.
    javax.naming.InitialContext ctx = new javax.naming.InitialContext();
    java.lang.Object o = ctx.lookup("keystore");          
    com.sap.engine.services.keystore.interfaces.KeystoreManagerWrapper_Stub manager = (com.sap.engine.services.keystore.interfaces.KeystoreManagerWrapper_Stub) o;
    java.security.KeyStore keystoreCAs = manager.getKeystore("TrustedCAs");     
    com.sap.security.core.server.https.SecureConnectionFactory factory = new SecureConnectionFactory(keystoreCAs, null);
    java.net.HttpURLConnection con = factory.createURLConnection("https://www.mycompany.com");
    For connecting via a proxy the host name and port number of the proxy have to be set as System properties using "https.proxyHost" and "https.proxyPort".
    java.util.Properties systemSettings = System.getProperties();
              systemSettings.put("proxySet", "true");
              systemSettings.put("https.proxyHost","192.168.0.1") ;
              systemSettings.put("https.proxyPort", "80") ;
    Additionally you have to make sure that the server's certificate is issued by a trusted Certification Authority (Must have an entry in your Keystore "TrustedCAs"). To verify this use the Visual Administrator and view service "Key Storage".
    Regards,
    Martin

  • Safari not responding when HTTPS connections are unavailable

    I'm using a 13" MBP with 10.7.2 installed, which is setup to sync calendar, address and bookmarks with iCloud. Since last week I've constantly encounter a problem that my Safari 5.1.1 would keep crashing, and I had to delete the ~/Library/Safari/extensions folder to get it back to work.
    This situation happened whenever I've switch to wireless connection. In my office we've setup a limited wireless environment that all HTTP/HTTPS connections will be redirected through a proxy. Since last week the proxy server was malfunctioned. All HTTP connections are proceeded normally, but all HTTPS connections will be suspended. I'm not sure but I suspect it's the main reason for the crashing problem.
    The syndromes are:
    1. When I left Safari open, unplug the ethernet, and turn-on WiFi, everythings goes on normally, until I open an HTTPS web page, for example, https://www.icloud.com. Of course that HTTPS URL will not load, since our proxy is broken; but the connection itself will NOT timeout. I've tried to leave it connecting for 10 minuntes, and it's still there.
    2. The statement above may due to a glitch in our proxy server and I can understand that. But the problem is: after I tried to open an HTTPS connection, the Safari will refuse to open any other URLs, including normal HTTP connections. It will just keep "connecting". Meanwhile the FireFox and Chrome can load these HTTP pages normally.
    3. If I quit Safari in this situation, Safari will not be able to re-launce: the icon will keep bumping on the dock. I have to force quit Safari and delete extensions folder, so that it can be launched again. But even after Safari re-launced, it still refused to load HTTP pages.
    4. Neither reconnecting WiFi, relogin, or switching back to ethernet can fix the problem. I have to restart the whole system to get it back to normal.
    It seemed to me that some Safari-related process will keep in the system after Safari is quited. And that process may keep the inactivated HTTPS connections alive in its TCP pool, and blocked all sequence connections, including the iCloud synchronization. And while I force-quit Safari, the extensions.plist file is damaged. That's the only plausible explanation to this situation.
    I'm sure this situation is introduced after 10.7.2: it's not the first time our proxy server breakdown, but I've never have this problem before.

    I've done some detailed test and now I can give a conclusion:
    1. It's confirmed that sequence HTTPS connection will be blocked in Safari and Google Chrome after a failure HTTPS connection (due to proxy). And rebooting is the only way to recover connections.
    2. My previous observation is wrong: this is NOT a system wide problem. FireFox is not affected. FireFox will return to normal and all sequence HTTPS connection can be proceeded without any problem when I reconnect to a valid network connection (i.e. ethernet), while the Safari and Google Chrome remained being blocked. And DropBox is NOT affected as well.
    3. None of the solutions mentioned in other threads can solve this problem. Checking the "Auto proxy discovery" does not help. Delete ~/Library/Preferences/com.apple.security.revocation.plistfile does not help. Clean Keychain does not help either. I've created another account for testing.
    4. It's apparently something related to some system built-in network services. Since the FireFox and DropBox both gets its' own Proxy implementation, while Safari and Google Chrome will take the system settings. It's also worth noting that the POP3-SSL connection in Mail.app is also blocked after a failure HTTPS connection.
    Currently the ONLY valid solution is using FireFox instead.

  • It appears that Adobe Air does not support persistent HTTP connections?

    As far as we can tell, Adobe Air does not support persistent HTTP connections via KEEPALIVE
    Thus a new connection has to be established to the server, making certain types of network intensive applications slow.
    Can anyone confirm if this is correct - is there any way to get Adobe Air to support KEEPALIVE and maintain persistent server connections?
    a

    I am trying to get 3.3 Beta 2 with Flash Builder 4.6 on Windows 7 x64bit to work. But still no luck.
    I have Flash Builder 4.6 on Win7 to work no problem.
    I have updated the playerglobal.swc to 11.3 using http://labsdownload.adobe.com/pub/labs/flashplatformruntimes/flashplay er11-3/flashplayer11-3_p2_playerglobal_041812.swc
    but still run into the same problem below:
    I can't go through the steps to create a new Flex Mobile Project because of the following error "Air 3.3 Beta does not support mobile projects".
    However, I have no problem creating a Flex Project (Web & AIR) and ActionScript Mobile Project.

  • Accessing Distributed Queue In a Cluster via the Proxy Server

              I am running WL 8.1 SP2. I have a configuration where I have 3 servers (on two
              different machines) running in a cluster. I have a separate server on a 3rd machine
              running the cluster proxy server for a single point of access to the cluster.
              I have configured a distributed queue and a distributed topic, each targeted
              to all servers in the cluster.
              Now I have a JMS client which is a separate java application that is trying to
              connect to the distributed queue and topic in the cluster. If the client connects
              directly to one of the cluster machines, it is able to successfully interact with
              the JMS queue and topic. But if it attempts to connect via the proxy server it
              gets an error saying the queue and topic does not exist.
              So what am I missing? Do I need to configure a separate JMS server on the proxy
              server and add that as part of the distributed queue & topic (this didn't seem
              to allow me to add anything outside of the cluster). Is there any special configuration
              in the proxy to pass through JMS requests? I'm currently using a WL logic server
              as my front-end proxy server but does anything change if I want to use Apache
              with the WL Proxy plug-in??
              Jerald
              

              "Jerald Pratt" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I am running WL 8.1 SP2. I have a configuration where I have 3 servers
              (on two
              > different machines) running in a cluster. I have a separate server on a
              3rd machine
              > running the cluster proxy server for a single point of access to the
              cluster.
              > I have configured a distributed queue and a distributed topic, each
              targeted
              > to all servers in the cluster.
              >
              > Now I have a JMS client which is a separate java application that is
              trying to
              > connect to the distributed queue and topic in the cluster. If the client
              connects
              > directly to one of the cluster machines, it is able to successfully
              interact with
              > the JMS queue and topic. But if it attempts to connect via the proxy
              server it
              > gets an error saying the queue and topic does not exist.
              Yup... That makes sense...
              >
              > So what am I missing? Do I need to configure a separate JMS server on the
              proxy
              > server and add that as part of the distributed queue & topic (this didn't
              seem
              > to allow me to add anything outside of the cluster). Is there any special
              configuration
              > in the proxy to pass through JMS requests? I'm currently using a WL logic
              server
              > as my front-end proxy server but does anything change if I want to use
              Apache
              > with the WL Proxy plug-in??
              One option I have used frequenly is specifying java.naming.provider.url as
              cluster address (e.g. t3://server1:7001,server2:7001
              You may also want to look into tunnelling...
              >
              > Jerald
              >
              

  • Contribute connection problems, http proxy?

    I've been trying to set up a contribute connection on a client machine for a while now without any luck, Adobe support haven't been much help at all.
    We're using CS4 on a vista machine, connecting to a website via normal FTP. The FTP connection itself seems fine.. and we've connected to the site from this machine with normal ftp and downloaded/uploaded without problems. Don't have any problems setting up contribute on other machines for this site either. One symptom is that contribute always has trouble determining the remote path (on this machine only).
    We can connect to the website ok via Internet Explorer on the same machine. However, I noticed that IE is setup to use a proxy server for web connections.
    I'm wondering whether this is the problem - can Contribute use a proxy server for the HTTP part of its operation?
    Pat.

    If you have specified HTTP proxy in IE, Contribute uses it for HTTP part of the operation. If on that machine FTP is also configured to use a proxy server, in Contribute you can specify the same in the Preferences dialog of Contribute. There is FTP proxy setting in the Preferences dialog, where you can specify the address of the FTP proxy server.
    Hope this helps.

  • HTTP connection from OSB web service to external system via a Proxy Server

    Dear experts,
    May I know has anyone tried to use HTTP protocol to send a request from OSB web service to external system via a proxy server? Heard that we need to establish some sort of tunnel (socket) to talk to Proxy Server. Can you please any have sample code or configuration steps to share?
    Thank you very much!!

    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/consolehelp/global_resources.html#wp1137294
    Adding Proxy Servers
    Use the Summary of Proxy Servers page to add and configure Proxy Server resources and make them available in Oracle Service Bus as a system resource. You must be in an active session to configure or reconfigure Proxy Server resources.
    1. If you have not already done so, click Create to create a new session or click Edit to enter an existing session. See Using the Change Center.
    2. Select System Administration > Proxy Servers.
    3. Click Add.
    4. In the Name field, enter a name for the Proxy Server resource. This is a required field.
    5. In the Description field, enter a short description for the Proxy Server resource.
    6. In the Host-Port Parameters section, enter the following information:
    1. In the Server Host field, enter the host name or IP address of the Proxy Server. This is a required field.
    The Server Host name for the Oracle Service Bus proxy server must be identical to the server host name of the actual proxy server.
    2. In the Clear Text Port field, enter the Proxy Server clear-text port number.
    3. In the SSL Port field, enter the Proxy Server SSL port number. You must enter either a clear text or SSL port number.
    4. Click Add.
    You can configure multiple Proxy Servers for each Proxy Server resource. This enables Oracle Service Bus to perform load balancing and offer fault tolerance features for the Proxy Server resource.
    7. If the Proxy Server performs proxy authentication, enter a user name in the User Name field, and the associated password in the Password and Confirm Password fields.
    These fields are optional, and required only if the Proxy Server is secured.
    8. Click Save to create and save the Proxy Server resource in the current session.
    9. To end the session and deploy the configuration to the run time, click Activate under Change Center.

  • HTTP/1.1 407 Proxy Authentication Required for cloud connection

    I am using Jdeveloper version 11.1.1.7.1 for ADF deployment on cloud service(Java and DB services).As instructed ,I have followed all the steps and in jdeveloper .when I tried to Authenticate the created connection with username and password, i am getting HTTP/1.1 407 Proxy Authentication Required .I am clueless how to solve this,Followed all the blogs but no luck.Please help on this,

    Presumably you are behind a FW, does your proxy require authentication if so did you set it with "Tools > Preferences > Web Browser and Proxy > Proxy Server Requires Authentication". Also what is the version of your JCS SDK ? You can check it by:
    java -jar javacloud.jar -version
    It should be something like 15.1.2.0 or later ..
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • AnyConnect on Apple iOS - VPN-Connect via HTTP-Proxy

    Hi,
    is it possible, that the AnyConnect-Client for Apple iOS (i.e. iPAD) automatically uses the configured HTTP-Proxy in the WLAN properties for the establishment of the VPN-Connection (via SSL/TLS)?
    I've tested it, but it does not work. In the documentation is stated, that VPN establishment via HTTP-Proxy works only in Windows (AnyConnect uses the IE Proxy settings to connect to the ASA for VPN establishment).
    Thanks

    As per w2k3 sniffer trace, 2851 requesting with user=vpnfamily and encrypted password. The password "Password1" which is VPN group's key sending to IAS?
    ->I have "vpnfamily" with password "Password1" but no luck
    Event log shows "Fully-Qualified-User-Name = INFRA\vpnfamily". INFRA is AD NetBIOS name. 2851 router's domain name is "family.com"
    ->Is this something wrong?

Maybe you are looking for

  • Excise values not updated BSAS Table

    Excise Gate Pass when reversed thr T. code J1IH, The reversed entry is generated but it is not linked with original entry and are not moving to table BSAS. Instead when invoice is reversed thr VF11, further entry is generated and original and new ent

  • Question on organisational structure!

    Hi all SAP experts. I had a problem : I've created my organisational structure on 1st June 2010, I want to check is there any way i can change the start date for my organisational structure? Thanks for all advices. Regards, HongLing

  • CISCO VPN CLIENT RUNNING KERNEL 64 MODE (DOESN'T WORK!?)

    Hi, I switched my Mac to Kernel 64 and some days after, trying to run my Cisco VPN Client (vpnclient-darwin-4.9.01.0180-universal-k9), give me back the classic "*ERROR 51: Unable to communicate with the VPN subsystem*" I'm not sure that the kernel 64

  • Error 9 updating iphone 4 to ios4.3

    Hi guys.. Anyone experienced error 9 when updating iphone 4 to ios 4.3? Any solutions? My phone is now useless because of this.. stuck in DFU and cannot do restore/recovery..

  • BAPI for Sampling scheme and Quality Info Record in QM Module.

    Hi techies, I have a two object(Sampling Scheme,Quality info record)  for which i need a BAPI for uploading the data. Please tell me if any one knows. Richard.