XMLHttpRequest.h
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:6k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  * 
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  * 
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:  
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  * 
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  * 
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  * 
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  * 
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: XMLHttpRequest.h,v $
  58.  * Revision 1.3  2000/06/03 00:29:04  andyh
  59.  * COM Wrapper changes from Curt Arnold
  60.  *
  61.  * Revision 1.2  2000/03/30 02:00:09  abagchi
  62.  * Initial checkin of working code with Copyright Notice
  63.  *
  64.  */
  65. #ifndef ___xmlhttprequest_h___
  66. #define ___xmlhttprequest_h___
  67. #include <dom/DOM_Document.hpp>
  68. #include "IXMLDOMNodeImpl.h"
  69. #include "resource.h"       // main symbols
  70. class ATL_NO_VTABLE CXMLHttpRequest : 
  71. public CComObjectRootEx<CComSingleThreadModel>,
  72. public CComCoClass<CXMLHttpRequest, &CLSID_XMLHTTPRequest>,
  73. public IObjectSafetyImpl<CXMLHttpRequest, INTERFACESAFE_FOR_UNTRUSTED_CALLER>,
  74. public IDispatchImpl<IXMLHttpRequest, &IID_IXMLHttpRequest, &LIBID_Xerces>,
  75. public IObjectWithSiteImpl<CXMLHttpRequest>,
  76. public ISupportErrorInfo,
  77. public CWindowImpl<CXMLHttpRequest, CWindow, CWinTraits<0,0> >
  78. {
  79. public:
  80. CXMLHttpRequest();
  81. HRESULT FinalConstruct();
  82. void FinalRelease();
  83. //DECLARE_REGISTRY_RESOURCEID(IDR_XMLHTTPREQUEST)
  84. static HRESULT WINAPI UpdateRegistry(BOOL bRegister);
  85. DECLARE_NOT_AGGREGATABLE(CXMLHttpRequest)
  86. DECLARE_PROTECT_FINAL_CONSTRUCT()
  87. BEGIN_COM_MAP(CXMLHttpRequest)
  88. COM_INTERFACE_ENTRY(IXMLHttpRequest)
  89. COM_INTERFACE_ENTRY(IDispatch)
  90. COM_INTERFACE_ENTRY(IObjectSafety)
  91. COM_INTERFACE_ENTRY(IObjectWithSite)
  92. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  93. END_COM_MAP()
  94. DECLARE_WND_CLASS(_T("XMLHttpRequestMonitor")) 
  95. BEGIN_MSG_MAP(CMonitorWnd)
  96. MESSAGE_HANDLER(MSG_READY_STATE_CHANGE, OnReadyStateChange)
  97. END_MSG_MAP()
  98. LRESULT OnReadyStateChange(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
  99. // ISupportsErrorInfo
  100. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  101. // IXMLHttpRequest methods
  102. STDMETHOD(open)(/*[in]*/ BSTR bstrMethod, /*[in]*/ BSTR bstrUrl, /*[in,optional]*/ VARIANT varAsync, /*[in,optional]*/ VARIANT bstrUser, /*[in,optional]*/ VARIANT bstrPassword);
  103. STDMETHOD(setRequestHeader)(/*[in]*/ BSTR bstrHeader, /*[in]*/ BSTR bstrValue);
  104. STDMETHOD(getResponseHeader)(/*[in]*/ BSTR bstrHeader, /*[out, retval]*/ BSTR * pbstrValue);
  105. STDMETHOD(getAllResponseHeaders)(/*[out, retval]*/ BSTR * pbstrHeaders);
  106. STDMETHOD(send)(/*[in, optional]*/ VARIANT varBody);
  107. STDMETHOD(abort)();
  108. STDMETHOD(get_status)(/*[out, retval]*/ long * plStatus);
  109. STDMETHOD(get_statusText)(/*[out, retval]*/ BSTR * pbstrStatus);
  110. STDMETHOD(get_responseXML)(/*[out, retval]*/ IDispatch ** ppBody);
  111. STDMETHOD(get_responseText)(/*[out, retval]*/ BSTR * pbstrBody);
  112. STDMETHOD(get_responseBody)(/*[out, retval]*/ VARIANT * pvarBody);
  113. STDMETHOD(get_responseStream)(/*[out, retval]*/ VARIANT * pvarBody);
  114. STDMETHOD(get_readyState)(/*[out, retval]*/ long * plState);
  115. STDMETHOD(put_onreadystatechange)(/*[in]*/ IDispatch * pReadyStateSink);
  116. private:
  117. LPDISPATCH   m_pOnReadyStateChange;
  118. bool   m_bAbort; 
  119. HANDLE   m_hThread;
  120. long   m_lReadyState;
  121. bool   m_bAsync;
  122. _bstr_t   m_Method;
  123. _bstr_t   m_HostName;
  124. INTERNET_PORT m_Port;
  125. _bstr_t   m_URLPath;
  126. _bstr_t   m_User;
  127. _bstr_t   m_Password;
  128. DWORD   m_dwStatus;
  129. _bstr_t   m_StatusText;
  130. _bstr_t   m_ResponseHeaders;
  131. CSimpleMap<_bstr_t, _bstr_t>  m_RequestHeaderMap;
  132. HWND   m_HwndParent;
  133.  
  134. PBYTE   m_pBody;
  135. long   m_lBodyLength;
  136. PBYTE   m_pResponseBody;
  137. long   m_lResponseBodyLength;
  138. _bstr_t       m_Error;
  139. bool       m_bSuccess;
  140. HWND GetParentWindow();
  141. static _bstr_t GetErrorMsg(DWORD rc);
  142. static void CALLBACK InternetStatusCallback(HINTERNET hInternet,
  143. DWORD dwContext,
  144. DWORD dwInternetStatus,
  145. LPVOID lpvStatusInformation,
  146. DWORD dwStatusInformationLength);
  147. static UINT APIENTRY SendThread(void *pParm);
  148. static HRESULT InitializeVarFromByte(VARIANT &varOut, const PBYTE pByte, long lSize);
  149. };
  150. typedef CComObject<CXMLHttpRequest> CXMLHttpRequestObj;
  151. #endif // ___xmlhttprequest_h___