|
C++ HTTP Stack
0.10
|
WSDL 파서 라이브러리 더 자세히 ...
클래스 | |
| class | CSoapArg |
| SOAP 메소드 인자 정의 클래스 더 자세히 ... | |
| class | CSoapClass |
| SOAP 서비스를 저장하는 클래스 더 자세히 ... | |
| class | CSoapMethod |
| SOAP 메소드 정의 클래스 더 자세히 ... | |
| class | CWsdlMessage |
| WSDL 메시지 저장 클래스 더 자세히 ... | |
열거형 타입 | |
| enum | ESoapArgType { E_SAT_NULL = 0, E_SAT_STRING, E_SAT_INT } |
| SOAP 메소드 인자 타입 더 자세히 ... | |
함수 | |
| bool | CSoapArg::SetType (const char *pszType) |
| 인자 타입 문자열로 타입을 설정한다. | |
| bool | CSoapArg::GetCode (std::string &strCode, bool bInput) |
| 소스 코드의 함수 인자 생성에 사용할 문자열을 생성한다. | |
| bool | CSoapArg::GetVariable (std::string &strCode, bool bInput) |
| 소스 코드 생성에 사용할 변수 이름을 생성한다. | |
| bool | CSoapClass::MakeSource (const char *pszFolder) |
| SOAP 클라이언트 소스 코드를 생성한다. | |
| bool | CSoapMethod::GetPrototypeCode (const char *pszClassName, std::string &strCode) |
| 헤더 파일과 소스 파일에 저장할 메소드 선언문을 생성한다. | |
| bool | CSoapMethod::GetCode (const char *pszClassName, CSoapClass *pclsSoap, std::string &strCode) |
| 소스 파일에 메소드 소스 코드를 저장한다. | |
| bool | CWsdlMessage::Parse (const char *pszText, int iTextLen) |
| WSDL 문자열을 파싱하여서 SOAP 클래스 및 메소드를 저장한다. | |
| bool | CWsdlMessage::Parse (std::string &strText) |
| WSDL 문자열을 파싱하여서 SOAP 클래스 및 메소드를 저장한다. | |
| bool | CWsdlMessage::ParseFile (const char *pszFileName) |
| WSDL 파일을 읽어서 SOAP 클래스 및 메소드를 저장한다. | |
| CSoapClass * | CWsdlMessage::GetSoap () |
| SOAP 클래스를 리턴한다. | |
WSDL 파서 라이브러리
| enum ESoapArgType |
| bool CSoapMethod::GetCode | ( | const char * | pszClassName, |
| CSoapClass * | pclsSoap, | ||
| std::string & | strCode | ||
| ) |
소스 파일에 메소드 소스 코드를 저장한다.
| pszClassName | 클래스 이름 |
| pclsSoap | 메소드를 포함한 SoapClass 객체 |
| strCode | 소스 코드 출력용 변수 |
| bool CSoapArg::GetCode | ( | std::string & | strCode, |
| bool | bInput | ||
| ) |
소스 코드의 함수 인자 생성에 사용할 문자열을 생성한다.
| strCode | 변수 이름을 저장할 변수 |
| bInput | 입력 변수인가? |
| bool CSoapMethod::GetPrototypeCode | ( | const char * | pszClassName, |
| std::string & | strCode | ||
| ) |
헤더 파일과 소스 파일에 저장할 메소드 선언문을 생성한다.
| pszClassName | 클래스 이름 |
| strCode | 소스 코드 출력용 변수 |
| CSoapClass * CWsdlMessage::GetSoap | ( | ) |
SOAP 클래스를 리턴한다.
| bool CSoapArg::GetVariable | ( | std::string & | strCode, |
| bool | bInput | ||
| ) |
소스 코드 생성에 사용할 변수 이름을 생성한다.
| strCode | 변수 이름을 저장할 변수 |
| bInput | 입력 변수인가? |
| bool CSoapClass::MakeSource | ( | const char * | pszFolder | ) |
SOAP 클라이언트 소스 코드를 생성한다.
| pszFolder | 소스 파일을 저장할 폴더 경로 |
| bool CWsdlMessage::Parse | ( | const char * | pszText, |
| int | iTextLen | ||
| ) |
WSDL 문자열을 파싱하여서 SOAP 클래스 및 메소드를 저장한다.
| pszText | WSDL 문자열 |
| iTextLen | WSDL 문자열 길이 |
| bool CWsdlMessage::Parse | ( | std::string & | strText | ) |
WSDL 문자열을 파싱하여서 SOAP 클래스 및 메소드를 저장한다.
| strText | WSDL 문자열 |
| bool CWsdlMessage::ParseFile | ( | const char * | pszFileName | ) |
WSDL 파일을 읽어서 SOAP 클래스 및 메소드를 저장한다.
| pszFileName | WSDL 파일 이름 |
| bool CSoapArg::SetType | ( | const char * | pszType | ) |
인자 타입 문자열로 타입을 설정한다.
| pszType | 인자 타입 문자열 |
1.8.1.2