How do I create a Https Proxy server

hi,
I am writing a Proxy server in java. But my pogram do not support https protocol.Could you please tell me how can I implement a https proxy server.some sample code is more helpful.
This is very URGENT for me.
Thanks
Sujith Varghese

Hi Varghese,
Reading the thread I am able to make out u r facing the same problem as I do.
current scenario#1:
Machine#1 client (using URLConnection("https://...") ----> Machine#2 (Server https port)
what I want scenario#2
Machine#3 client (using URLConnection("https://...") ---> Machine#1 (Proxy for https)----> Machine#2 (Server https port)
In scenario#1
- I have a Client machine at Location#1 which can connect to on Location#2
- I only have SSH connection to machine at Location#1
now this scenario#2 is what I would like to run so that
- I am able to connect to mc#2 at loc#2 from a machine at loc#3 with mc#3
- effectively starting a https proxy at location number mc#1 at loc#1.
Hope that clears the problem domain.
any help will be greatly appreciated.
regards-
_Jagsir                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • [SOLVED] How cat I make an http proxy from ssh?

    Hi.
    I can tunnel to ssh server using this:
    ssh -N -D $myport $user@$serverip
    It's working good. I tunneled to the server.
    But I have a problem!
    the created proxy is a Socks v5 proxy. I want to create a http proxy how can i do it?
    Thanks! I waiting for your answers...
    Last edited by ojZim (2013-05-26 17:55:36)

    Gusar wrote:
    You can't. What you can do is run a local http proxy that uses the ssh-created Socks5 as parent. Example config for polipo:
    daemonise=true
    proxyAddress=127.0.0.1
    proxyName=localhost
    allowedClients=127.0.0.1
    socksParentProxy=localhost:7777
    socksProxyType=socks5
    7777 is an example, use $myport there. The default polipo port is 8123, meaning apps should be configured to use localhost:8123 as proxy.
    Thanks for your help! It's worked very good and my problem is solved.
    For installing and configuration polipo, other users can read this:
    https://wiki.archlinux.org/index.php/Polipo
    Last edited by ojZim (2013-05-26 17:56:39)

  • How do I create a https page?

    How do I create a https page?

    Not in iWeb, nor in any other application.
    https is a secure protocal. It's about encrypting webpages and content.
    It's done at the server.
    http://www.google.com/search?q=How+do+I+create+a+https+page

  • How can i create datasource on apache server for ADF application?

    Hi All,
    i my use case i have created simple adf application using ADF BC and want to deploy on Apache server 6.x.
    So my question is that  how can i create Data Source i have goggling and find  two different way to do this.
    1. write following line of code on apache server conf/Context.xml file.
    <Resource name="jdbc/TestDB" auth="Container"
                  type="javax.sql.DataSource"
                   driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@localhost:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"/>
    but when i have used this way i got following exception.
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection
    check link-
    https://forums.oracle.com/thread/2564233
    2. write following line of code apache conf/Server.xml file
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/TestDB" auth="Container"
                  type="oracle.jdbc.pool.OracleDataSource"
                  description="User database that can be updated and saved"
                  driverClassName="oracle.jdbc.driver.OracleDriver"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@//172.31.43.207:1521:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"   />
      </GlobalNamingResources>
    and add this line in context.xml file inside <context> tag
    <ResourceLink global="jdbc/TestDB" name="jdbc/TestDB" type="oracle.jdbc.pool.OracleDataSource"/>
    but when i have run application i have got following error
    log-
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    Aug 2, 2013 5:17:21 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    so what is the solution how to create datasource on apche server which suitable for adf application?
    when i test data source using  following code used 1. way as i mentioned above  its running fine bt not for second.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <sql:query var="rs" dataSource="jdbc/TestDB">
    select empname from pay_emphdr where empcd='JK1306'
    </sql:query>
    <html>
      <head>
        <title>DB Test</title>
      </head>
      <body>
      <h2>Results</h2>
    <c:forEach var="row" items="${rs.rows}">
        Foo ${row.empname}<br/>
    </c:forEach>
      </body>
    </html>
    please help me. it is very urgent.
    thanks in Advance
    Manish

    Hi Lindalnci
    i have already tried  this tutorial and in my post i have defined first way to do using this procedure.
    in that case i have got following exception as i have mentioned above
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection

  • Configuring the application server to use HTTP proxy server

    Hi,
    I am trying to configure LiveCycle ES2 to access services over the internet and since my Livecycle server connects to internet through a Proxy server, I have referred to section 5.8.2 of LiveCycle install_weblogic.pdf that states the following:
    If the computer that LiveCycle ES2 is running on uses proxy settings to access external web sites, the
    application server should be started with the following values set as Java virtual machine (JVM)
    arguments:
      -Dhttp.proxyHost= [server host]
    -Dhttp.proxyPort= [server port] 
    However, I am getting the below exception while running the LC application as my Proxy server requires User credentials to connect to the internet:
    weblogic.net.http.HttpUnauthorizedException: Proxy or Server Authentication Required.
    I tried providing the below JVM startup argument too, but no luck:
    -Dhttp.proxyUser= [proxy user]
    -DhttpPassword= [Proxy password]
    Can you please suggest how to configure User credentials for the Proxy server in Livecycle.
    Thanks in advance.

    Hi WASIL,
    Thank you for your response.
    I have followed the above document suggested by yourself and the relevant steps while setting up the Server and the Workbench, and verified the settings too.
    The installation guide does highlight the steps to configure a Proxy server. However, the guide does not mention anything about how to handle Proxy server authentication.
    Please note that there are Proxy authenication options available in Workbench to configure how the Workbench connects to the LiveCycle server, whereas the problem I am facing here is how to connect the LiveCycle server with internet services through a Proxy server.
    I hope that clears the problem statement.
    Thankyou for your assistance.

  • Http proxy server connetion error

    please help me
    i have built a proxy server between iis and client
    client gets successfully connected to proxy but he is not abale to
    retrive the pages stored on iis
    error produeced is : Server not found - UnknowException java.net
    client get error message as : 404 required page not found
    my email address is : [email protected]
    thanks in advance

    Here is a java HTTP server you can use instead of IIS (comes from the burrowing through firewalls article). This class allways sends the same response to any request on port 80 but it should be a good tool to test your proxy server (as to what requests the proxy sends and if the proxy pickes up the response).
    Stop IIS on the IIS pc and run the following class:
    * Copyright (c) 1996 Sun Microsystems, Inc. All Rights Reserved.
    * Permission to use, copy, modify, and distribute this software
    * and its documentation for NON-COMMERCIAL purposes and without
    * fee is hereby granted provided that this copyright notice
    * appears in all copies. Please refer to the file "copyright.html"
    * for further important copyright and licensing information.
    * The Java source code is the confidential and proprietary information
    * of Sun Microsystems, Inc. ("Confidential Information").  You shall
    * not disclose such Confidential Information and shall use it only in
    * accordance with the terms of the license agreement you entered into
    * with Sun.
    * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
    * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
    * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
    * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
    /* Originally written by Arthur Van Hoff, modified by Venkat Rao */
    import java.util.*;
    import java.io.*;
    import java.net.*;
    class SimpleChatServer extends Thread {
                public SimpleChatServer(){
                    new Thread(this).run();
             public static void main(String argv1[]) {
                    new SimpleChatServer();
                public void run(){
                 int port = 80;
              ServerSocket ss = null;
              StringBuffer sbHTMFile = new StringBuffer();
              byte[] bteHTM = null;
              try {
                   ss = new ServerSocket(port);
                   String strContent = "<h1>Response from Java HTTP server to any request on port 80</h1>";
                   sbHTMFile.append("HTTP/1.1 200 Java HTTP server\r\nContent-Type:text/html\r\nContent-Length:" + strContent.length() + "\r\n\r\n");
                   sbHTMFile.append(strContent);
                   bteHTM = sbHTMFile.toString().getBytes();
              } catch (IOException e) {
                  ////System.out.println("Could not listen on port: " + port + ", " + e);
                  e.printStackTrace();
                  System.exit(1);
                 } catch (Exception e){
                   e.printStackTrace();
                   System.exit(1);
              System.out.println("HTTP server started...");
              // Loop forever, accepting connections from clients
                    listen:
              while (true) {
                  // Accept a new connection
                  Socket s = null;
                  try {
                   s = ss.accept();
                   System.out.println("accepted");
                  } catch (IOException e) {
                   System.out.println("Accept failed: " + port + ", " + e);
                   e.printStackTrace();
                   System.exit(1);
                  } catch (Exception e){
                   e.printStackTrace();
                   System.exit(1);
                  try {
                   // Got a connection, read the HTTP command
                   DataInputStream in =
                       new DataInputStream(new BufferedInputStream
                                  (s.getInputStream()));
                   String str = in.readLine();
                   System.out.println("     got a request value: " + str);
                   // Create a new OutputStream and send HTTP reply.
                   if(str==null){in.close();continue listen;}
                   BufferedOutputStream outHTM = new BufferedOutputStream(s.getOutputStream());
                   outHTM.write(bteHTM);
                   outHTM.flush();
                   in.close();
                            outHTM.close();
                   s.close();
                   continue;
                  } catch (IOException e) {
                   // Something went wrong
                   e.printStackTrace();
                  } catch (Exception e){
                   e.printStackTrace();
    }

  • How to know internally redirect in Proxy Server

    Hello,
    I notice that our developed NSAP codes, at very first time, Sun Java System proxy Server internally redirect in Proxy Server.
    If anyone knows how we can get the behavior difference between internal redirect and normal procedure to see the pblock structure.
    Best Regards;
    MMd1

    Here is the program.
    My NSAPI program generate POST message in the below, but Web Proxy Server generate the appended URL in the below;
    http: //tnakamura-t42.xxx.com:85/NSAPI_dev/http%3A//tnakamura-t42.xxx.com%3A86/test4/test1.html
    The last GET in the message of the below should be;
    http%3A//tnakamura-t42.xxx.com%3A86/test4/test1.html
    The Web Proxy Server internally redirect the below.
    I am not sure why Web Proxy Server modify the URL between (POST -> GET message)
    If anyone knows the causes, please let us know.
    ( Here is the HTTP Header packet log)
    ==================================================
    POST http: //tsugai-t42.xxx.com:85/NSAP_dev/aaa_logon_en.html HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*
    Referer: http://tsugai-t42.xxx.com:85/NSAP_dev/aaa_logon_en.html
    Accept-Language: ja
    Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
    Host: tsugai-t42.xxx.com:85
    Content-Length: 55
    Proxy-Connection: Keep-Alive
    Pragma: no-cache
    Cookie: AAAASESSION=aHR0cCUzQS8vdHN1Z2FpLXQ0Mi5hcC5yc2EubmV0JTNBODYvdGVzdDQvdGVzdDEuaHRtbA%3D%3D
    auth_mode=basic&user=aaaaa&password=xxxx&x=13&y=10
    HTTP/1.1 303 See Other
    Server: Sun-Java-System-Web-Proxy-Server/4.0.2
    Date: Thu, 20 Apr 2006 23:57:42 GMT
    Content-length: 106
    Content-type: text/html
    Set-cookie: AAASESSION=AAAAAQABAEBmNJDkbIY5stNO5YOpcqSUkKpAA341dbnAtqDShjDEk%2FUNelCn%2BSc2eOutJiX3tla1aFs2muQ%2BZ61WHhDvQfDr; domain=.xxx.com; path=/
    Location: http%3A//tnakamura-t42.xxx.com%3A86/test4/test1.html
    Connection: close
    GET http: //tnakamura-t42.xxx.com:85/NSAPI_dev/http%3A//tnakamura-t42.xxx.com%3A86/test4/test1.html HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*
    Referer: http://tnakamura-t42.xxx.com:85/NSAPI_dev/aaa_logon_en.html
    Accept-Language: ja
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
    Host: tnakamura-t42.xxx.com:85
    Proxy-Connection: Keep-Alive
    Pragma: no-cache
    Cookie: AAAASESSION=aHR0cCUzQS8vdHN1Z2FpLXQ0Mi5hcC5yc2EubmV0JTNBODYvdGVzdDQvdGVzdDEuaHRtbA%3D%3D; AAASESSION=AAAAAQABAEBmNJDkbIY5stNO5YOpcqSUkKpAA341dbnAtqDShjDEk%2FUNelCn%2BSc2eOutJiX3tla1aFs2muQ%2BZ61WHhDvQfDr
    HTTP/1.1 403 Forbidden
    Content-length: 142
    Content-type: text/html
    Server: Sun-ONE-Web-Server/6.1
    Date: Thu, 20 Apr 2006 23:57:49 GMT
    Via: 1.1 proxy-proxy402
    Proxy-agent: Sun-Java-System-Web-Proxy-Server/4.0.2
    =========================================

  • How can I convert a https proxy to socks5?

    Hi. I have a https proxy and want to convert it to socks v5.
    I found polipo but it have two problems:
    1- It's convert socks v5 to http proxy. I want to convert https proxy to socks5.
    2- It not support authentication. My https proxy is protected and needs username and password.
    Thanks.
    I wait for your answers.

    progandy wrote:You can create a socks proxy with dante, you can redirect your applications to a socks proxy with socksify (in the dante package).
    AFAIK, the danted proxy can forward traffic to another socks proxy or a http 1.0 proxy.
    Edit: Just found http://proxychains.sourceforge.net/
    https://aur.archlinux.org/packages.php?ID=41765
    Sorry, my English is very bad and I can't read dante configuration arcides.
    How can I configure it? Can you say it in simple English language? :-?

  • How do I create a JMF streaming server with QuickTime Web Client?

    Can anyone give me some pointers on how to create a JMF streaming server and user can type in a rtsp URL on the web browser and be able to view the streaming video in QuickTime player?
    thanks

    JMF does not have RTSP server capabilities built-in. You would have to program the RTSP request-response protocol yourself.

  • How do I specify a particular Proxy Server, port, user-ID and password for file downloads

    We are attempting to deploy Creative Cloud trial applications to a couple of users for testing purposes.
    This is a corporate environment where we need to specify a particular proxy server by IP address, and port with a User-ID and password for identification in order to download files.
    The Creative Cloud app appears to be ignoring the proxy settings in the browsers installed on the machine used to attempt a download. The Adobe Application Manager Enterprise Edition wants you to already have the files available.  All technical support had is a white list, no help on how to specify a particular proxy server.  Do we have to obtain media from Adobe, or is there a way to download these?
    Thanks

    Creative Suite Enterprise Deployment | Adobe Developer Connection

  • HTTP proxy server connection error

    My iPhone4S can't connect well to 3G, only works properly with WIFI connection. When i try to navegate with safari or other apps, HTTP proxy error is shown. I only receive notifications, but when i try to open the specify app: server error. Its weird, because for instance, whatsapp and mail clients like sparrow works properly with 3G. I can update my mail and send whatsapp, but i cant receive or send any attachments.
    I've tried to reset my iphone, and reset my network configuration, but the problem is still there.
    Thanks everyone!

    I had this problem. It started when I took my unlocked iPhone from Australia on a Telstra SIM to the U.S. and put in a Straight Talk SIM. I used unlockit.co.nz to generate a new APN for my phone while on Straight Talk, which worked fine.
    However, upon coming back to Australia and reinserting my Telstra SIM, I couldn't access HTTP. My VPN would start over 3G and I could get push notifications and data in some apps, but anything that used HTTP, including Safari, would give me the proxy error or a network timeout error. Wifi worked perfectly.
    I called Telstra and they said it wasn't them. I was sitting on hold with Apple Care when I thought to try inserting my colleague's Telstra SIM into my phone and, voila, it worked perfectly. I hung up and called Telstra back to complain but while on hold I put my own old Telstra SIM back in only to find that I had fixed my problem.
    So try inserting a known, working SIM from the same carrier and see if that fixes your problem. Stopping into one of their stores may be the answer if you don't have any other SIMs handy.
    I suspect that somewhere in the iPhone an HTTP proxy for 3G setting was set and stuck, and trying a new SIM erased that setting.

  • Could'nt configure for http proxy server in weblogic5.1

    Hai
    we have installed weblogic5.1 in two machines one in NT and the other in windows98.
    We want to use one as the webserver and the other as the proxy webserver. When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular jsp file
    which is not in the webserver and located in the proxy webserver it searches only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jagan

    "jaganmohan" <[email protected]> wrote:
    >
    Hai
    we have installed weblogic5.1 in two machines one in NT and the other
    in windows98.
    We want to use one as the webserver and the other as the proxy webserver.
    When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of
    lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular
    jsp file
    which is not in the webserver and located in the proxy webserver it searches
    only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jaganThanks for everyone i was able to solve the problem on my own. The problem is
    i did'nt commented the following line in the weblogic.properties. After commenting
    the line it worked
    weblogic.httpd.defaultServlet=file

  • How can I write a simple proxy server that intercept 80(www)socket???

    Does any body knows how can i write simple proxy server that intercept web sites watching by user???thx

    Does any body knows how can i write simple proxy
    server that intercept web sites watching by user???thxTo be clear a proxy means that requests go to the proxy and then the proxy relays the request to proper place.
    If you want to see traffic without being in the middle (the requests go direct) then you can not use the standard Java API. And do so in any situation of course requires that you be in the physical connection in the first place (ie in a star network with a router in the middle a client machine will not see packets from other machines.)

  • How to setup CSS as reverse proxy server without cache server

    Hi, question regarding CSS capabilities.
    Is there a way to setup CSS (11000 series or 11500) to act as a reverse proxy server without caching server in place? Or is it possible for CSS to cache contents on its own?
    And what is disk space on CSS used for?
    Thank you.

    Thank you for clarification on disk usage on CSS. I have gone through sample config for reverse proxy caching
    http://www.cisco.com/warp/customer/117/CSS_CEreverseproxy.html
    Does this mean only way to have CSS to do reverse proxying is to have cache engine in conjunction with CSS?
    Thank you again in advance.

  • How do I set up a proxy server for webmail services to assist in migrating from NMS 4.15p6 on NT to iMS 5.1 on HP-UX.

    I want to have minimal if no downtime at all when moving the message store. iPlanet support hinted at an "unsupported" proxy server solution, and would give no further information. I am running the MMP with 5.1 and that supports IMAP and POP migration, but I need support for webmail services as well to complete the migration from NT to UNIX with minimal distruption of thousands of users. I am using the MoveUser utility to move the message store in hopes that will clear up some store corruption we have been seeing.

    To get this in a 'supported' fashion you might want to wait until the iMS 5.2 release. iPlanet has said this release would include a webmail proxy/mmp server to do exactly what you desire.
    A proxy server would not be a solution to your problem as it would have to have access and knowledge to the users mailhost attribute to determine to which host to route the webmail connection. The webmail proxy/mmp will have this functionality.
    You might want to contact your iPlanet rep about this product and maybe you could get a copy of it as part of a beta program. I know iPlanet is always looking for oppourtunities for feedback like this.
    -Chris

Maybe you are looking for

  • Mavericks won't run PSCS5 or ILCS6

    I use a MacBook Pro running OSX v10.9 with a 2.66 GHz Intel Core i7 and 4 GB 1067 MHz DDR3. I use Adobe Photoshop CS5 and Adobe Illustrator CS6. After installing Mavericks last night, I spent a couple hours figuring out that I had to install a Java u

  • Working on Solution Manager

    Hi Gurus, in our project we are having to work through solution Manager. I am new to the solution Manager environment. a) Is there any link that helps us understand the basics of working on solution manager. b) Also, i understand we need to give the

  • External harddrive suggestion to boost my computer...

    Hello, I'm stuck at a standstill with my project because I'm all out of memory. I'm dealing with 32 hours of footage. I tend to put most of it on the computer before trimming it down, just to see what I'm working with. I still have roughly 20 hours o

  • SQL Server 2005 AWE memory allocation

    Hi All, I have a very simple doubt which seems very difficult to find on msdn literature. This query gives me awe_allocated_kb column and lists all memory resources in SQL Server, right? SELECT * FROM sys.dm_os_memory_clerks Being it a column in a li

  • Updating problems for iTunes and system. both updates fail

    does anyone know why when i try to update software it gets to cleaning up then stops and says there were errors but won't say what they were. i am trying to install itunes7 that wouldn't work so tried a system update and same thing nothing is working