2008-10-03 13:50:59 +02:00
|
|
|
/*
|
|
|
|
* IXMLHTTPRequest implementation
|
|
|
|
*
|
|
|
|
* Copyright 2008 Alistair Leslie-Hughes
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
2010-08-29 23:31:49 +02:00
|
|
|
#include "msxml6.h"
|
2008-10-03 13:50:59 +02:00
|
|
|
|
|
|
|
#include "msxml_private.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2010-09-29 00:50:37 +02:00
|
|
|
#include "wine/list.h"
|
2008-10-03 13:50:59 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msxml);
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBXML2
|
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
static const WCHAR MethodGetW[] = {'G','E','T',0};
|
|
|
|
static const WCHAR MethodPutW[] = {'P','U','T',0};
|
|
|
|
static const WCHAR MethodPostW[] = {'P','O','S','T',0};
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
struct reqheader
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
BSTR header;
|
|
|
|
BSTR value;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum READYSTATE
|
|
|
|
{
|
|
|
|
STATE_UNINITIALIZED = 0,
|
|
|
|
STATE_LOADING = 1,
|
|
|
|
STATE_LOADED = 2,
|
|
|
|
STATE_INTERACTIVE = 3,
|
|
|
|
STATE_COMPLETED = 4
|
|
|
|
};
|
|
|
|
|
2008-10-03 13:50:59 +02:00
|
|
|
typedef struct _httprequest
|
|
|
|
{
|
|
|
|
const struct IXMLHTTPRequestVtbl *lpVtbl;
|
|
|
|
LONG ref;
|
2010-09-28 22:27:12 +02:00
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
READYSTATE state;
|
|
|
|
|
|
|
|
/* request */
|
2010-09-28 22:27:12 +02:00
|
|
|
BINDVERB verb;
|
|
|
|
BSTR url;
|
|
|
|
BOOL async;
|
2010-09-29 00:50:37 +02:00
|
|
|
struct list reqheaders;
|
2010-09-28 22:27:12 +02:00
|
|
|
|
|
|
|
/* credentials */
|
|
|
|
BSTR user;
|
|
|
|
BSTR password;
|
2008-10-03 13:50:59 +02:00
|
|
|
} httprequest;
|
|
|
|
|
|
|
|
static inline httprequest *impl_from_IXMLHTTPRequest( IXMLHTTPRequest *iface )
|
|
|
|
{
|
|
|
|
return (httprequest *)((char*)iface - FIELD_OFFSET(httprequest, lpVtbl));
|
|
|
|
}
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
/* TODO: process OnChange callback */
|
|
|
|
static void httprequest_setreadystate(httprequest *This, READYSTATE state)
|
|
|
|
{
|
|
|
|
This->state = state;
|
|
|
|
}
|
|
|
|
|
2008-10-03 13:50:59 +02:00
|
|
|
static HRESULT WINAPI httprequest_QueryInterface(IXMLHTTPRequest *iface, REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
2010-02-17 07:40:40 +01:00
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
|
2008-10-03 13:50:59 +02:00
|
|
|
|
|
|
|
if ( IsEqualGUID( riid, &IID_IXMLHTTPRequest) ||
|
|
|
|
IsEqualGUID( riid, &IID_IDispatch) ||
|
|
|
|
IsEqualGUID( riid, &IID_IUnknown) )
|
|
|
|
{
|
|
|
|
*ppvObject = iface;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IXMLHTTPRequest_AddRef( iface );
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI httprequest_AddRef(IXMLHTTPRequest *iface)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
return InterlockedIncrement( &This->ref );
|
|
|
|
}
|
|
|
|
|
2008-12-18 20:58:39 +01:00
|
|
|
static ULONG WINAPI httprequest_Release(IXMLHTTPRequest *iface)
|
2008-10-03 13:50:59 +02:00
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
ref = InterlockedDecrement( &This->ref );
|
|
|
|
if ( ref == 0 )
|
|
|
|
{
|
2010-09-29 00:50:37 +02:00
|
|
|
struct reqheader *header, *header2;
|
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
SysFreeString(This->url);
|
|
|
|
SysFreeString(This->user);
|
|
|
|
SysFreeString(This->password);
|
2010-09-29 00:50:37 +02:00
|
|
|
|
|
|
|
/* request headers */
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(header, header2, &This->reqheaders, struct reqheader, entry)
|
|
|
|
{
|
|
|
|
list_remove(&header->entry);
|
|
|
|
SysFreeString(header->header);
|
|
|
|
SysFreeString(header->value);
|
|
|
|
}
|
|
|
|
|
2010-02-03 20:47:53 +01:00
|
|
|
heap_free( This );
|
2008-10-03 13:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_GetTypeInfoCount(IXMLHTTPRequest *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, pctinfo);
|
|
|
|
|
|
|
|
*pctinfo = 1;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_GetTypeInfo(IXMLHTTPRequest *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
hr = get_typeinfo(IXMLHTTPRequest_tid, ppTInfo);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_GetIDsOfNames(IXMLHTTPRequest *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
ITypeInfo *typeinfo;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
|
|
|
|
|
|
|
if(!rgszNames || cNames == 0 || !rgDispId)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
|
|
|
|
ITypeInfo_Release(typeinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_Invoke(IXMLHTTPRequest *iface, DISPID dispIdMember, REFIID riid,
|
|
|
|
LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
|
|
|
|
EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
ITypeInfo *typeinfo;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
|
|
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
|
|
|
|
hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = ITypeInfo_Invoke(typeinfo, &(This->lpVtbl), dispIdMember, wFlags, pDispParams,
|
|
|
|
pVarResult, pExcepInfo, puArgErr);
|
|
|
|
ITypeInfo_Release(typeinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
static HRESULT WINAPI httprequest_open(IXMLHTTPRequest *iface, BSTR method, BSTR url,
|
|
|
|
VARIANT async, VARIANT user, VARIANT password)
|
2008-10-03 13:50:59 +02:00
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
2010-09-28 22:27:12 +02:00
|
|
|
HRESULT hr;
|
|
|
|
VARIANT str;
|
2008-10-03 13:50:59 +02:00
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
TRACE("(%p)->(%s %s)\n", This, debugstr_w(method), debugstr_w(url));
|
2008-10-03 13:50:59 +02:00
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
if (!method || !url) return E_INVALIDARG;
|
|
|
|
|
|
|
|
/* free previously set data */
|
|
|
|
SysFreeString(This->url);
|
|
|
|
SysFreeString(This->user);
|
|
|
|
SysFreeString(This->password);
|
|
|
|
This->url = This->user = This->password = NULL;
|
|
|
|
|
|
|
|
if (lstrcmpiW(method, MethodGetW) == 0)
|
|
|
|
{
|
|
|
|
This->verb = BINDVERB_GET;
|
|
|
|
}
|
|
|
|
else if (lstrcmpiW(method, MethodPutW) == 0)
|
|
|
|
{
|
|
|
|
This->verb = BINDVERB_PUT;
|
|
|
|
}
|
|
|
|
else if (lstrcmpiW(method, MethodPostW) == 0)
|
|
|
|
{
|
|
|
|
This->verb = BINDVERB_POST;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("unsupported request type %s\n", debugstr_w(method));
|
|
|
|
This->verb = -1;
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
This->url = SysAllocString(url);
|
|
|
|
|
|
|
|
hr = VariantChangeType(&async, &async, 0, VT_BOOL);
|
|
|
|
This->async = hr == S_OK && V_BOOL(&async) == VARIANT_TRUE;
|
|
|
|
|
|
|
|
VariantInit(&str);
|
|
|
|
hr = VariantChangeType(&str, &user, 0, VT_BSTR);
|
|
|
|
if (hr == S_OK)
|
|
|
|
This->user = V_BSTR(&str);
|
|
|
|
|
|
|
|
hr = VariantChangeType(&str, &password, 0, VT_BSTR);
|
|
|
|
if (hr == S_OK)
|
|
|
|
This->password = V_BSTR(&str);
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
httprequest_setreadystate(This, STATE_LOADING);
|
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
return S_OK;
|
2008-10-03 13:50:59 +02:00
|
|
|
}
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
static HRESULT WINAPI httprequest_setRequestHeader(IXMLHTTPRequest *iface, BSTR header, BSTR value)
|
2008-10-03 13:50:59 +02:00
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
2010-09-29 00:50:37 +02:00
|
|
|
struct reqheader *entry;
|
2008-10-03 13:50:59 +02:00
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
TRACE("(%p)->(%s %s)\n", This, debugstr_w(header), debugstr_w(value));
|
2008-10-03 13:50:59 +02:00
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
if (!header || !*header) return E_INVALIDARG;
|
|
|
|
if (This->state != STATE_LOADING) return E_FAIL;
|
|
|
|
if (!value) return E_INVALIDARG;
|
|
|
|
|
|
|
|
/* replace existing header value if already added */
|
|
|
|
LIST_FOR_EACH_ENTRY(entry, &This->reqheaders, struct reqheader, entry)
|
|
|
|
{
|
|
|
|
if (lstrcmpW(entry->header, header) == 0)
|
|
|
|
{
|
|
|
|
return SysReAllocString(&entry->value, value) ? S_OK : E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = heap_alloc(sizeof(*entry));
|
|
|
|
if (!entry) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
/* new header */
|
|
|
|
entry->header = SysAllocString(header);
|
|
|
|
entry->value = SysAllocString(value);
|
|
|
|
|
|
|
|
list_add_head(&This->reqheaders, &entry->entry);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-10-03 13:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_getResponseHeader(IXMLHTTPRequest *iface, BSTR bstrHeader, BSTR *pbstrValue)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub (%p) %s %p\n", This, debugstr_w(bstrHeader), pbstrValue);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_getAllResponseHeaders(IXMLHTTPRequest *iface, BSTR *pbstrHeaders)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub (%p) %p\n", This, pbstrHeaders);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_send(IXMLHTTPRequest *iface, VARIANT varBody)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub (%p)\n", This);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_abort(IXMLHTTPRequest *iface)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub (%p)\n", This);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-09 23:28:16 +01:00
|
|
|
static HRESULT WINAPI httprequest_get_status(IXMLHTTPRequest *iface, LONG *plStatus)
|
2008-10-03 13:50:59 +02:00
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, plStatus);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_get_statusText(IXMLHTTPRequest *iface, BSTR *pbstrStatus)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, pbstrStatus);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_get_responseXML(IXMLHTTPRequest *iface, IDispatch **ppBody)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, ppBody);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_get_responseText(IXMLHTTPRequest *iface, BSTR *pbstrBody)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, pbstrBody);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_get_responseBody(IXMLHTTPRequest *iface, VARIANT *pvarBody)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, pvarBody);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_get_responseStream(IXMLHTTPRequest *iface, VARIANT *pvarBody)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, pvarBody);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
static HRESULT WINAPI httprequest_get_readyState(IXMLHTTPRequest *iface, LONG *state)
|
2008-10-03 13:50:59 +02:00
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, state);
|
2008-10-03 13:50:59 +02:00
|
|
|
|
2010-09-29 00:50:37 +02:00
|
|
|
if (!state) return E_INVALIDARG;
|
|
|
|
|
|
|
|
*state = This->state;
|
|
|
|
return S_OK;
|
2008-10-03 13:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI httprequest_put_onreadystatechange(IXMLHTTPRequest *iface, IDispatch *pReadyStateSink)
|
|
|
|
{
|
|
|
|
httprequest *This = impl_from_IXMLHTTPRequest( iface );
|
|
|
|
|
|
|
|
FIXME("stub %p %p\n", This, pReadyStateSink);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IXMLHTTPRequestVtbl dimimpl_vtbl =
|
|
|
|
{
|
|
|
|
httprequest_QueryInterface,
|
|
|
|
httprequest_AddRef,
|
|
|
|
httprequest_Release,
|
|
|
|
httprequest_GetTypeInfoCount,
|
|
|
|
httprequest_GetTypeInfo,
|
|
|
|
httprequest_GetIDsOfNames,
|
|
|
|
httprequest_Invoke,
|
|
|
|
httprequest_open,
|
|
|
|
httprequest_setRequestHeader,
|
|
|
|
httprequest_getResponseHeader,
|
|
|
|
httprequest_getAllResponseHeaders,
|
|
|
|
httprequest_send,
|
|
|
|
httprequest_abort,
|
|
|
|
httprequest_get_status,
|
|
|
|
httprequest_get_statusText,
|
|
|
|
httprequest_get_responseXML,
|
|
|
|
httprequest_get_responseText,
|
|
|
|
httprequest_get_responseBody,
|
|
|
|
httprequest_get_responseStream,
|
|
|
|
httprequest_get_readyState,
|
|
|
|
httprequest_put_onreadystatechange
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT XMLHTTPRequest_create(IUnknown *pUnkOuter, LPVOID *ppObj)
|
|
|
|
{
|
|
|
|
httprequest *req;
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pUnkOuter, ppObj);
|
|
|
|
|
2010-02-03 20:47:53 +01:00
|
|
|
req = heap_alloc( sizeof (*req) );
|
2008-10-03 13:50:59 +02:00
|
|
|
if( !req )
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
req->lpVtbl = &dimimpl_vtbl;
|
|
|
|
req->ref = 1;
|
|
|
|
|
2010-09-28 22:27:12 +02:00
|
|
|
req->async = FALSE;
|
|
|
|
req->verb = -1;
|
|
|
|
req->url = req->user = req->password = NULL;
|
2010-09-29 00:50:37 +02:00
|
|
|
req->state = STATE_UNINITIALIZED;
|
|
|
|
list_init(&req->reqheaders);
|
2010-09-28 22:27:12 +02:00
|
|
|
|
2008-10-03 13:50:59 +02:00
|
|
|
*ppObj = &req->lpVtbl;
|
|
|
|
|
|
|
|
TRACE("returning iface %p\n", *ppObj);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
HRESULT XMLHTTPRequest_create(IUnknown *pUnkOuter, LPVOID *ppObj)
|
|
|
|
{
|
|
|
|
MESSAGE("This program tried to use a XMLHTTPRequest object, but\n"
|
|
|
|
"libxml2 support was not present at compile time.\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|