C# 클래스 burlapcsharp.client.CBurlapProxyFactory

Factory for Proxy - creation.
파일 보기 프로젝트 열기: timfel/csharp-hessian 1 사용 예제들

공개 메소드들

메소드 설명
CBurlapProxyFactory ( ) : System
CBurlapProxyFactory ( string username, string password ) : System
Create ( Type type, string strUrl ) : Object

Creates a new proxy with the specified URL. The returned object is a proxy with the interface specified by api. string url = "http://localhost:8080/ejb/hello"); HelloHome hello = (HelloHome) factory.create(HelloHome.class, url);

비공개 메소드들

메소드 설명
CreateBurlapStandardProxy ( string strUrl, Type type ) : object

Creates proxy object using .NET - Remote proxy framework

메소드 상세

CBurlapProxyFactory() 공개 메소드

public CBurlapProxyFactory ( ) : System
리턴 System

CBurlapProxyFactory() 공개 메소드

public CBurlapProxyFactory ( string username, string password ) : System
username string
password string
리턴 System

Create() 공개 메소드

Creates a new proxy with the specified URL. The returned object is a proxy with the interface specified by api. string url = "http://localhost:8080/ejb/hello"); HelloHome hello = (HelloHome) factory.create(HelloHome.class, url);
public Create ( Type type, string strUrl ) : Object
type System.Type the interface the proxy class needs to implement
strUrl string the URL where the client object is located
리턴 Object