代码搜索:proxy
找到约 9,859 项符合「proxy」的源代码
代码结果 9,859
www.eeworm.com/read/478645/6712229
txt 分布式对话服务器的管理(5).txt
作者:运气
email: webmaster@chinaspx.com
日期:7/4/2001 1:43:04 PM
远程访问Mnemosyne
下面我们来讨论在servlet服务器上访问远程Mnemosyne的方法。要在无需特定服务器在线的情况下加载一个包含对话信息的Mnemosyne,需要创建一个FailoverHandler的实例,FailoverHandler利用JDK
www.eeworm.com/read/478118/6720158
java simpledynamicproxy23.java
// typeinfo/SimpleDynamicProxy23.java
// TIJ4 Chapter Typeinfo, Exercise 23, page 598
// Inside invoke() in SimpleDynamicProxy.java, try to print the proxy argument and explain
// what happens.
im
www.eeworm.com/read/478118/6720172
java simpledynamicproxy22.java
// typeinfo/SimpleDynamicProxy22.java
// TIJ4 Chapter Typeinfo, Exercise 22, page 598
// Modify SimpleDynamicProxy.java so that it measures method-call times.
import java.lang.reflect.*;
import ja
www.eeworm.com/read/265314/11268703
java databasesessionclient.java
package jnicli;
/**
* Database session client implementation. This class implements Database interface using
* proxy object to access remote database server. The role of this class is to keep s
www.eeworm.com/read/410227/11297857
txt features.txt
Planned Features:
1 Port Redirection
2 SSL Proxy Tunnel
3 Pure HTTP Tunnel(needs a tunnel server at the other side)
4 Compressi髇 filter
5 Encription Filter
6 HTTP monitorization and interceptio
www.eeworm.com/read/403321/11519101
cs proxystructural.cs
using System;
using System.Windows.Forms;
using System.Text;
namespace DesignPattern.ProxyStructural
{
class ProxyStructural : AbstractPattern
{
public static void Run(TextBox
www.eeworm.com/read/403321/11519102
cs proxyrealworld.cs
using System;
using System.Windows.Forms;
using System.Text;
//代理模式(<mark>Proxy</mark>) -- 智能指针使用代理设计模式来实现
//意图
// 为其他对象提供一种代理以控制对这个对象的访问。
//适用性
// 在需要用比较通用和复杂的对象指针代替简单的指针的时候,使用<mark>Proxy</mark>模式。下面是一些可以使用Prox ...
www.eeworm.com/read/401195/11562732
h pwm.h
//*****************************************************************************
//*****************************************************************************
// FILENAME: PWM.h
// Version: 2.5
www.eeworm.com/read/401195/11562816
h pwm.h
//*****************************************************************************
//*****************************************************************************
// FILENAME: PWM.h
// Version: 2.5
www.eeworm.com/read/158628/11596948
java client.java
package ch10.section03;
public class Client {
public static void main(String args[]) {
Subject subject = new Proxy();
subject.request(); //客户端没有看出来,实际上客户端发出的请求,是Proxy在处理
//正常的没有采用代理的话