⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httpconnbase.h

📁 Windows CE 6.0 Server 源码
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
//+----------------------------------------------------------------------------
//
//
// File:
//      HttpConnBase.h
//
// Contents:
//
//      CHttpConnBase - base class for all http connectors (property implementations)
//
//-----------------------------------------------------------------------------

#ifndef __HTTPCONNBASE_H_INCLUDED__
#define __HTTPCONNBASE_H_INCLUDED__

#ifdef UNDER_CE
#include <wincrypt.h>
#endif

class CHttpConnBase : public CSoapConnector
{
protected:

    //
    // Properties
    //

    DWORD       m_dwTimeout;
    BSTR        m_bstrAuthUser;
    BSTR        m_bstrAuthPassword;
    BSTR        m_bstrProxyUser;
    BSTR        m_bstrProxyPassword;
    BSTR        m_bstrProxyServer;
    DWORD       m_dwProxyPort;
    bool        m_bUseSSL;
    bool        m_bUseProxy;
    BSTR        m_bstrSSLClientCertificateName;
    BSTR        m_bstrSoapAction;
    BSTR        m_bstrHTTPCharset;

    CUrl        m_Url;

    //
    // Enums
    //

private:
    enum HttpConnectorState
    {
        Reconnect,
        Disconnected,
        Connected,
        Message,
        Sent,
        Error,
    };

protected:
    enum
    {
#ifdef _DEBUG
        DefaultRequestTimeout = INFINITE
#else
        DefaultRequestTimeout = 30000
#endif
    };

    //
    // Implementation members
    //

protected:
    CComPointer<IWSDLPort>  m_WsdlPort;
    HttpConnectorState      m_State;

protected:
    CHttpConnBase();
    ~CHttpConnBase();

public:
    STDMETHOD(get_Property)(BSTR pPropertyName, VARIANT *pPropertyValue);
    STDMETHOD(put_Property)(BSTR pPropertyName, VARIANT PropertyValue);

    STDMETHOD(ConnectWSDL)(IWSDLPort *pPort);
    STDMETHOD(Reset)();
    STDMETHOD(BeginMessageWSDL)(IWSDLOperation *pOperation);
    STDMETHOD(EndMessage)();

protected:
    HRESULT ReadPortSettings(IWSDLPort *pPort);
    HRESULT GetSoapAction(IWSDLOperation *pOperation);

    HRESULT Disconnect(void);

    STDMETHOD(EstablishConnection)() = 0;
    STDMETHOD(ShutdownConnection)() = 0;
    STDMETHOD(SendRequest)() = 0;
    STDMETHOD(ReceiveResponse)();
    STDMETHOD(AbortMessage)();
    STDMETHOD(EmptyBuffers)();
    STDMETHOD(ClearError)();

#ifdef _DEBUG
    STDMETHOD_(bool, IsConnected)() = 0;
#endif

private:
    HRESULT get_EndPointURL(VARIANT *pVal);
    HRESULT put_EndPointURL(VARIANT *pVal);
    HRESULT get_Timeout(VARIANT *pVal);
    HRESULT put_Timeout(VARIANT *pVal);
    HRESULT get_AuthUser(VARIANT *pVal);
    HRESULT put_AuthUser(VARIANT *pVal);
    HRESULT get_AuthPassword(VARIANT *pVal);
    HRESULT put_AuthPassword(VARIANT *pVal);
    HRESULT get_ProxyUser(VARIANT *pVal);
    HRESULT put_ProxyUser(VARIANT *pVal);
    HRESULT get_ProxyPassword(VARIANT *pVal);
    HRESULT put_ProxyPassword(VARIANT *pVal);
    HRESULT get_ProxyServer(VARIANT *pVal);
    HRESULT put_ProxyServer(VARIANT *pVal);
    HRESULT get_ProxyPort(VARIANT *pVal);
    HRESULT put_ProxyPort(VARIANT *pVal);
    HRESULT get_UseProxy(VARIANT *pVal);
    HRESULT put_UseProxy(VARIANT *pVal);
    HRESULT get_UseSSL(VARIANT *pVal);
    HRESULT put_UseSSL(VARIANT *pVal);
    HRESULT get_SSLClientCertificateName(VARIANT *pVal);
    HRESULT put_SSLClientCertificateName(VARIANT *pVal);
    HRESULT get_SoapAction(VARIANT *pVal);
    HRESULT put_SoapAction(VARIANT *pVal);
    HRESULT get_HTTPCharset(VARIANT *pVal);
    HRESULT put_HTTPCharset(VARIANT *pVal);

protected:
    HRESULT PutEndPointURL(BSTR bstrUrl);
    HRESULT GetEndPointURL(BSTR *pbstrUrl);
    void ScheduleReconnect();

    HRESULT GetProxyURL(BSTR *pbstrUrl);

    DECLARE_PROPERTY_MAP(CHttpConnBase);

protected:
    static HRESULT FindCertificate(BSTR bstrCertName, PCCERT_CONTEXT *pCertContext);
};


////////////////////////////////////////////////////////////////////////////////////////////////////
//  function: inline HRESULT CHttpConnBase::GetEndPointURL(BSTR *pbstrUrl)
//
//  parameters:
//          
//  description:
//          
//  returns:
//          
////////////////////////////////////////////////////////////////////////////////////////////////////
inline HRESULT CHttpConnBase::GetEndPointURL(BSTR *pbstrUrl)
{
    return m_Url.get_Url(pbstrUrl);
}


////////////////////////////////////////////////////////////////////////////////////////////////////
//  function: inline void CHttpConnBase::ScheduleReconnect()
//
//  parameters:
//          
//  description:
//          
//  returns:
//          
////////////////////////////////////////////////////////////////////////////////////////////////////
inline void CHttpConnBase::ScheduleReconnect()
{
    m_State = Reconnect;
}


#endif //__HTTPCONNBASE_H_INCLUDED__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -