2 * IXMLHTTPRequest implementation
4 * Copyright 2008 Alistair Leslie-Hughes
5 * Copyright 2010-2012 Nikolay Sivov for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
29 # include <libxml/parser.h>
30 # include <libxml/xmlerror.h>
31 # include <libxml/encoding.h>
47 #include "msxml_private.h"
49 #include "wine/debug.h"
50 #include "wine/list.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
56 static const WCHAR colspaceW[] = {':',' ',0};
57 static const WCHAR crlfW[] = {'\r','\n',0};
58 static const DWORD safety_supported_options =
59 INTERFACESAFE_FOR_UNTRUSTED_CALLER |
60 INTERFACESAFE_FOR_UNTRUSTED_DATA |
61 INTERFACE_USES_SECURITY_MANAGER;
63 typedef struct BindStatusCallback BindStatusCallback;
74 IXMLHTTPRequest IXMLHTTPRequest_iface;
75 IObjectWithSite IObjectWithSite_iface;
76 IObjectSafety IObjectSafety_iface;
88 struct list reqheaders;
89 /* cached resulting custom request headers string length in WCHARs */
91 /* use UTF-8 content type */
92 BOOL use_utf8_content;
94 /* response headers */
95 struct list respheaders;
103 BindStatusCallback *bsc;
117 IServerXMLHTTPRequest IServerXMLHTTPRequest_iface;
121 static inline httprequest *impl_from_IXMLHTTPRequest( IXMLHTTPRequest *iface )
123 return CONTAINING_RECORD(iface, httprequest, IXMLHTTPRequest_iface);
126 static inline httprequest *impl_from_IObjectWithSite(IObjectWithSite *iface)
128 return CONTAINING_RECORD(iface, httprequest, IObjectWithSite_iface);
131 static inline httprequest *impl_from_IObjectSafety(IObjectSafety *iface)
133 return CONTAINING_RECORD(iface, httprequest, IObjectSafety_iface);
136 static inline serverhttp *impl_from_IServerXMLHTTPRequest(IServerXMLHTTPRequest *iface)
138 return CONTAINING_RECORD(iface, serverhttp, IServerXMLHTTPRequest_iface);
141 static void httprequest_setreadystate(httprequest *This, READYSTATE state)
143 READYSTATE last = This->state;
147 if (This->sink && last != state)
151 memset(¶ms, 0, sizeof(params));
152 IDispatch_Invoke(This->sink, 0, &IID_NULL, LOCALE_SYSTEM_DEFAULT, DISPATCH_METHOD, ¶ms, 0, 0, 0);
156 static void free_response_headers(httprequest *This)
158 struct httpheader *header, *header2;
160 LIST_FOR_EACH_ENTRY_SAFE(header, header2, &This->respheaders, struct httpheader, entry)
162 list_remove(&header->entry);
163 SysFreeString(header->header);
164 SysFreeString(header->value);
168 SysFreeString(This->raw_respheaders);
169 This->raw_respheaders = NULL;
172 struct BindStatusCallback
174 IBindStatusCallback IBindStatusCallback_iface;
175 IHttpNegotiate IHttpNegotiate_iface;
176 IAuthenticate IAuthenticate_iface;
180 httprequest *request;
185 /* request body data */
189 static inline BindStatusCallback *impl_from_IBindStatusCallback( IBindStatusCallback *iface )
191 return CONTAINING_RECORD(iface, BindStatusCallback, IBindStatusCallback_iface);
194 static inline BindStatusCallback *impl_from_IHttpNegotiate( IHttpNegotiate *iface )
196 return CONTAINING_RECORD(iface, BindStatusCallback, IHttpNegotiate_iface);
199 static inline BindStatusCallback *impl_from_IAuthenticate( IAuthenticate *iface )
201 return CONTAINING_RECORD(iface, BindStatusCallback, IAuthenticate_iface);
204 static void BindStatusCallback_Detach(BindStatusCallback *bsc)
208 if (bsc->binding) IBinding_Abort(bsc->binding);
210 IBindStatusCallback_Release(&bsc->IBindStatusCallback_iface);
214 static HRESULT WINAPI BindStatusCallback_QueryInterface(IBindStatusCallback *iface,
215 REFIID riid, void **ppv)
217 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
221 TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppv);
223 if (IsEqualGUID(&IID_IUnknown, riid) ||
224 IsEqualGUID(&IID_IBindStatusCallback, riid))
226 *ppv = &This->IBindStatusCallback_iface;
228 else if (IsEqualGUID(&IID_IHttpNegotiate, riid))
230 *ppv = &This->IHttpNegotiate_iface;
232 else if (IsEqualGUID(&IID_IAuthenticate, riid))
234 *ppv = &This->IAuthenticate_iface;
236 else if (IsEqualGUID(&IID_IServiceProvider, riid) ||
237 IsEqualGUID(&IID_IBindStatusCallbackEx, riid) ||
238 IsEqualGUID(&IID_IInternetProtocol, riid) ||
239 IsEqualGUID(&IID_IHttpNegotiate2, riid))
241 return E_NOINTERFACE;
246 IBindStatusCallback_AddRef(iface);
250 FIXME("Unsupported riid = %s\n", debugstr_guid(riid));
252 return E_NOINTERFACE;
255 static ULONG WINAPI BindStatusCallback_AddRef(IBindStatusCallback *iface)
257 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
258 LONG ref = InterlockedIncrement(&This->ref);
260 TRACE("(%p) ref = %d\n", This, ref);
265 static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
267 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
268 LONG ref = InterlockedDecrement(&This->ref);
270 TRACE("(%p) ref = %d\n", This, ref);
274 if (This->binding) IBinding_Release(This->binding);
275 if (This->stream) IStream_Release(This->stream);
276 if (This->body) GlobalFree(This->body);
283 static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *iface,
284 DWORD reserved, IBinding *pbind)
286 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
288 TRACE("(%p)->(%d %p)\n", This, reserved, pbind);
290 if (!pbind) return E_INVALIDARG;
292 This->binding = pbind;
293 IBinding_AddRef(pbind);
295 httprequest_setreadystate(This->request, READYSTATE_LOADED);
297 return CreateStreamOnHGlobal(NULL, TRUE, &This->stream);
300 static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pPriority)
302 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
304 TRACE("(%p)->(%p)\n", This, pPriority);
309 static HRESULT WINAPI BindStatusCallback_OnLowResource(IBindStatusCallback *iface, DWORD reserved)
311 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
313 TRACE("(%p)->(%d)\n", This, reserved);
318 static HRESULT WINAPI BindStatusCallback_OnProgress(IBindStatusCallback *iface, ULONG ulProgress,
319 ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)
321 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
323 TRACE("(%p)->(%u %u %u %s)\n", This, ulProgress, ulProgressMax, ulStatusCode,
324 debugstr_w(szStatusText));
329 static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *iface,
330 HRESULT hr, LPCWSTR error)
332 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
334 TRACE("(%p)->(0x%08x %s)\n", This, hr, debugstr_w(error));
338 IBinding_Release(This->binding);
339 This->binding = NULL;
343 httprequest_setreadystate(This->request, READYSTATE_COMPLETE);
348 static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
349 DWORD *bind_flags, BINDINFO *pbindinfo)
351 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
353 TRACE("(%p)->(%p %p)\n", This, bind_flags, pbindinfo);
356 if (This->request->async) *bind_flags |= BINDF_ASYNCHRONOUS;
358 if (This->request->verb != BINDVERB_GET && This->body)
360 pbindinfo->stgmedData.tymed = TYMED_HGLOBAL;
361 pbindinfo->stgmedData.u.hGlobal = This->body;
362 pbindinfo->cbstgmedData = GlobalSize(This->body);
363 /* callback owns passed body pointer */
364 IBindStatusCallback_QueryInterface(iface, &IID_IUnknown, (void**)&pbindinfo->stgmedData.pUnkForRelease);
367 pbindinfo->dwBindVerb = This->request->verb;
368 if (This->request->verb == BINDVERB_CUSTOM)
370 pbindinfo->szCustomVerb = CoTaskMemAlloc(SysStringByteLen(This->request->custom));
371 strcpyW(pbindinfo->szCustomVerb, This->request->custom);
377 static HRESULT WINAPI BindStatusCallback_OnDataAvailable(IBindStatusCallback *iface,
378 DWORD flags, DWORD size, FORMATETC *format, STGMEDIUM *stgmed)
380 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
385 TRACE("(%p)->(%08x %d %p %p)\n", This, flags, size, format, stgmed);
389 hr = IStream_Read(stgmed->u.pstm, buf, sizeof(buf), &read);
390 if (hr != S_OK) break;
392 hr = IStream_Write(This->stream, buf, read, &written);
393 } while((hr == S_OK) && written != 0 && read != 0);
395 httprequest_setreadystate(This->request, READYSTATE_INTERACTIVE);
400 static HRESULT WINAPI BindStatusCallback_OnObjectAvailable(IBindStatusCallback *iface,
401 REFIID riid, IUnknown *punk)
403 BindStatusCallback *This = impl_from_IBindStatusCallback(iface);
405 FIXME("(%p)->(%s %p): stub\n", This, debugstr_guid(riid), punk);
410 static const IBindStatusCallbackVtbl BindStatusCallbackVtbl = {
411 BindStatusCallback_QueryInterface,
412 BindStatusCallback_AddRef,
413 BindStatusCallback_Release,
414 BindStatusCallback_OnStartBinding,
415 BindStatusCallback_GetPriority,
416 BindStatusCallback_OnLowResource,
417 BindStatusCallback_OnProgress,
418 BindStatusCallback_OnStopBinding,
419 BindStatusCallback_GetBindInfo,
420 BindStatusCallback_OnDataAvailable,
421 BindStatusCallback_OnObjectAvailable
424 static HRESULT WINAPI BSCHttpNegotiate_QueryInterface(IHttpNegotiate *iface,
425 REFIID riid, void **ppv)
427 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
428 return IBindStatusCallback_QueryInterface(&This->IBindStatusCallback_iface, riid, ppv);
431 static ULONG WINAPI BSCHttpNegotiate_AddRef(IHttpNegotiate *iface)
433 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
434 return IBindStatusCallback_AddRef(&This->IBindStatusCallback_iface);
437 static ULONG WINAPI BSCHttpNegotiate_Release(IHttpNegotiate *iface)
439 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
440 return IBindStatusCallback_Release(&This->IBindStatusCallback_iface);
443 static HRESULT WINAPI BSCHttpNegotiate_BeginningTransaction(IHttpNegotiate *iface,
444 LPCWSTR url, LPCWSTR headers, DWORD reserved, LPWSTR *add_headers)
446 static const WCHAR content_type_utf8W[] = {'C','o','n','t','e','n','t','-','T','y','p','e',':',' ',
447 't','e','x','t','/','p','l','a','i','n',';','c','h','a','r','s','e','t','=','u','t','f','-','8','\r','\n',0};
449 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
450 const struct httpheader *entry;
454 TRACE("(%p)->(%s %s %d %p)\n", This, debugstr_w(url), debugstr_w(headers), reserved, add_headers);
458 if (This->request->use_utf8_content)
459 size = sizeof(content_type_utf8W);
461 if (!list_empty(&This->request->reqheaders))
462 size += This->request->reqheader_size*sizeof(WCHAR);
464 if (!size) return S_OK;
466 buff = CoTaskMemAlloc(size);
467 if (!buff) return E_OUTOFMEMORY;
470 if (This->request->use_utf8_content)
472 lstrcpyW(ptr, content_type_utf8W);
473 ptr += sizeof(content_type_utf8W)/sizeof(WCHAR)-1;
477 LIST_FOR_EACH_ENTRY(entry, &This->request->reqheaders, struct httpheader, entry)
479 lstrcpyW(ptr, entry->header);
480 ptr += SysStringLen(entry->header);
482 lstrcpyW(ptr, colspaceW);
483 ptr += sizeof(colspaceW)/sizeof(WCHAR)-1;
485 lstrcpyW(ptr, entry->value);
486 ptr += SysStringLen(entry->value);
488 lstrcpyW(ptr, crlfW);
489 ptr += sizeof(crlfW)/sizeof(WCHAR)-1;
497 static void add_response_header(httprequest *This, const WCHAR *data, int len)
499 struct httpheader *entry;
500 const WCHAR *ptr = data;
507 header = SysAllocStringLen(data, ptr-data);
508 /* skip leading spaces for a value */
509 while (*++ptr == ' ')
511 value = SysAllocStringLen(ptr, len-(ptr-data));
520 TRACE("got header %s:%s\n", debugstr_w(header), debugstr_w(value));
522 entry = heap_alloc(sizeof(*entry));
523 entry->header = header;
524 entry->value = value;
525 list_add_head(&This->respheaders, &entry->entry);
528 static HRESULT WINAPI BSCHttpNegotiate_OnResponse(IHttpNegotiate *iface, DWORD code,
529 LPCWSTR resp_headers, LPCWSTR req_headers, LPWSTR *add_reqheaders)
531 BindStatusCallback *This = impl_from_IHttpNegotiate(iface);
533 TRACE("(%p)->(%d %s %s %p)\n", This, code, debugstr_w(resp_headers),
534 debugstr_w(req_headers), add_reqheaders);
536 This->request->status = code;
537 /* store headers and status text */
538 free_response_headers(This->request);
539 SysFreeString(This->request->status_text);
540 This->request->status_text = NULL;
543 const WCHAR *ptr, *line, *status_text;
545 ptr = line = resp_headers;
547 /* skip HTTP-Version */
548 ptr = strchrW(ptr, ' ');
551 /* skip Status-Code */
552 ptr = strchrW(++ptr, ' ');
556 /* now it supposed to end with CRLF */
559 if (*ptr == '\r' && *(ptr+1) == '\n')
562 This->request->status_text = SysAllocStringLen(status_text, ptr-status_text);
563 TRACE("status text %s\n", debugstr_w(This->request->status_text));
571 /* store as unparsed string for now */
572 This->request->raw_respheaders = SysAllocString(line);
578 static const IHttpNegotiateVtbl BSCHttpNegotiateVtbl = {
579 BSCHttpNegotiate_QueryInterface,
580 BSCHttpNegotiate_AddRef,
581 BSCHttpNegotiate_Release,
582 BSCHttpNegotiate_BeginningTransaction,
583 BSCHttpNegotiate_OnResponse
586 static HRESULT WINAPI Authenticate_QueryInterface(IAuthenticate *iface,
587 REFIID riid, void **ppv)
589 BindStatusCallback *This = impl_from_IAuthenticate(iface);
590 return IBindStatusCallback_QueryInterface(&This->IBindStatusCallback_iface, riid, ppv);
593 static ULONG WINAPI Authenticate_AddRef(IAuthenticate *iface)
595 BindStatusCallback *This = impl_from_IAuthenticate(iface);
596 return IBindStatusCallback_AddRef(&This->IBindStatusCallback_iface);
599 static ULONG WINAPI Authenticate_Release(IAuthenticate *iface)
601 BindStatusCallback *This = impl_from_IAuthenticate(iface);
602 return IBindStatusCallback_Release(&This->IBindStatusCallback_iface);
605 static HRESULT WINAPI Authenticate_Authenticate(IAuthenticate *iface,
606 HWND *hwnd, LPWSTR *username, LPWSTR *password)
608 BindStatusCallback *This = impl_from_IAuthenticate(iface);
609 FIXME("(%p)->(%p %p %p)\n", This, hwnd, username, password);
613 static const IAuthenticateVtbl AuthenticateVtbl = {
614 Authenticate_QueryInterface,
616 Authenticate_Release,
617 Authenticate_Authenticate
620 static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback **obj, const VARIANT *body)
622 BindStatusCallback *bsc;
627 hr = CreateBindCtx(0, &pbc);
628 if (hr != S_OK) return hr;
630 bsc = heap_alloc(sizeof(*bsc));
633 IBindCtx_Release(pbc);
634 return E_OUTOFMEMORY;
637 bsc->IBindStatusCallback_iface.lpVtbl = &BindStatusCallbackVtbl;
638 bsc->IHttpNegotiate_iface.lpVtbl = &BSCHttpNegotiateVtbl;
639 bsc->IAuthenticate_iface.lpVtbl = &AuthenticateVtbl;
646 TRACE("(%p)->(%p)\n", This, bsc);
648 This->use_utf8_content = FALSE;
650 if (This->verb != BINDVERB_GET)
652 void *send_data, *ptr;
653 SAFEARRAY *sa = NULL;
655 if (V_VT(body) == (VT_VARIANT|VT_BYREF))
656 body = V_VARIANTREF(body);
662 int len = SysStringLen(V_BSTR(body));
663 const WCHAR *str = V_BSTR(body);
666 for (i = 0; i < len; i++)
675 size = WideCharToMultiByte(cp, 0, str, len, NULL, 0, NULL, NULL);
676 if (!(ptr = heap_alloc(size)))
679 return E_OUTOFMEMORY;
681 WideCharToMultiByte(cp, 0, str, len, ptr, size, NULL, NULL);
682 if (cp == CP_UTF8) This->use_utf8_content = TRUE;
685 case VT_ARRAY|VT_UI1:
688 if ((hr = SafeArrayAccessData(sa, (void **)&ptr)) != S_OK)
693 if ((hr = SafeArrayGetUBound(sa, 1, &size) != S_OK))
695 SafeArrayUnaccessData(sa);
703 FIXME("unsupported body data type %d\n", V_VT(body));
712 bsc->body = GlobalAlloc(GMEM_FIXED, size);
715 if (V_VT(body) == VT_BSTR)
717 else if (V_VT(body) == (VT_ARRAY|VT_UI1))
718 SafeArrayUnaccessData(sa);
721 return E_OUTOFMEMORY;
724 send_data = GlobalLock(bsc->body);
725 memcpy(send_data, ptr, size);
726 GlobalUnlock(bsc->body);
728 if (V_VT(body) == VT_BSTR)
730 else if (V_VT(body) == (VT_ARRAY|VT_UI1))
731 SafeArrayUnaccessData(sa);
734 hr = RegisterBindStatusCallback(pbc, &bsc->IBindStatusCallback_iface, NULL, 0);
739 hr = CreateURLMonikerEx2(NULL, This->uri, &moniker, URL_MK_UNIFORM);
744 hr = IMoniker_BindToStorage(moniker, pbc, NULL, &IID_IStream, (void**)&stream);
745 IMoniker_Release(moniker);
746 if (stream) IStream_Release(stream);
748 IBindCtx_Release(pbc);
753 IBindStatusCallback_Release(&bsc->IBindStatusCallback_iface);
761 static HRESULT verify_uri(httprequest *This, IUri *uri)
763 DWORD scheme, base_scheme;
764 BSTR host, base_host;
767 if(!(This->safeopt & INTERFACESAFE_FOR_UNTRUSTED_DATA))
771 return E_ACCESSDENIED;
773 hr = IUri_GetScheme(uri, &scheme);
777 hr = IUri_GetScheme(This->base_uri, &base_scheme);
781 if(scheme != base_scheme) {
782 WARN("Schemes don't match\n");
783 return E_ACCESSDENIED;
786 if(scheme == INTERNET_SCHEME_UNKNOWN) {
787 FIXME("Unknown scheme\n");
788 return E_ACCESSDENIED;
791 hr = IUri_GetHost(uri, &host);
795 hr = IUri_GetHost(This->base_uri, &base_host);
797 if(strcmpiW(host, base_host)) {
798 WARN("Hosts don't match\n");
801 SysFreeString(base_host);
808 static HRESULT httprequest_open(httprequest *This, BSTR method, BSTR url,
809 VARIANT async, VARIANT user, VARIANT password)
811 static const WCHAR MethodGetW[] = {'G','E','T',0};
812 static const WCHAR MethodPutW[] = {'P','U','T',0};
813 static const WCHAR MethodPostW[] = {'P','O','S','T',0};
814 static const WCHAR MethodDeleteW[] = {'D','E','L','E','T','E',0};
815 static const WCHAR MethodPropFindW[] = {'P','R','O','P','F','I','N','D',0};
816 VARIANT str, is_async;
820 if (!method || !url) return E_INVALIDARG;
822 /* free previously set data */
824 IUri_Release(This->uri);
828 SysFreeString(This->user);
829 SysFreeString(This->password);
830 This->user = This->password = NULL;
832 if (!strcmpiW(method, MethodGetW))
834 This->verb = BINDVERB_GET;
836 else if (!strcmpiW(method, MethodPutW))
838 This->verb = BINDVERB_PUT;
840 else if (!strcmpiW(method, MethodPostW))
842 This->verb = BINDVERB_POST;
844 else if (!strcmpiW(method, MethodDeleteW) ||
845 !strcmpiW(method, MethodPropFindW))
847 This->verb = BINDVERB_CUSTOM;
848 SysReAllocString(&This->custom, method);
852 FIXME("unsupported request type %s\n", debugstr_w(method));
858 hr = CoInternetCombineUrlEx(This->base_uri, url, 0, &uri, 0);
860 hr = CreateUri(url, 0, 0, &uri);
862 WARN("Could not create IUri object: %08x\n", hr);
866 hr = verify_uri(This, uri);
874 VariantInit(&is_async);
875 hr = VariantChangeType(&is_async, &async, 0, VT_BOOL);
876 This->async = hr == S_OK && V_BOOL(&is_async);
879 hr = VariantChangeType(&str, &user, 0, VT_BSTR);
881 This->user = V_BSTR(&str);
884 hr = VariantChangeType(&str, &password, 0, VT_BSTR);
886 This->password = V_BSTR(&str);
888 httprequest_setreadystate(This, READYSTATE_LOADING);
893 static HRESULT httprequest_setRequestHeader(httprequest *This, BSTR header, BSTR value)
895 struct httpheader *entry;
897 if (!header || !*header) return E_INVALIDARG;
898 if (This->state != READYSTATE_LOADING) return E_FAIL;
899 if (!value) return E_INVALIDARG;
901 /* replace existing header value if already added */
902 LIST_FOR_EACH_ENTRY(entry, &This->reqheaders, struct httpheader, entry)
904 if (lstrcmpW(entry->header, header) == 0)
906 LONG length = SysStringLen(entry->value);
909 hr = SysReAllocString(&entry->value, value) ? S_OK : E_OUTOFMEMORY;
912 This->reqheader_size += (SysStringLen(entry->value) - length);
918 entry = heap_alloc(sizeof(*entry));
919 if (!entry) return E_OUTOFMEMORY;
922 entry->header = SysAllocString(header);
923 entry->value = SysAllocString(value);
925 /* header length including null terminator */
926 This->reqheader_size += SysStringLen(entry->header) + sizeof(colspaceW)/sizeof(WCHAR) +
927 SysStringLen(entry->value) + sizeof(crlfW)/sizeof(WCHAR) - 1;
929 list_add_head(&This->reqheaders, &entry->entry);
934 static HRESULT httprequest_getResponseHeader(httprequest *This, BSTR header, BSTR *value)
936 struct httpheader *entry;
938 if (!header || !value) return E_INVALIDARG;
940 if (This->raw_respheaders && list_empty(&This->respheaders))
944 ptr = line = This->raw_respheaders;
947 if (*ptr == '\r' && *(ptr+1) == '\n')
949 add_response_header(This, line, ptr-line);
957 LIST_FOR_EACH_ENTRY(entry, &This->respheaders, struct httpheader, entry)
959 if (!strcmpiW(entry->header, header))
961 *value = SysAllocString(entry->value);
962 TRACE("header value %s\n", debugstr_w(*value));
970 static HRESULT httprequest_getAllResponseHeaders(httprequest *This, BSTR *respheaders)
972 if (!respheaders) return E_INVALIDARG;
974 *respheaders = SysAllocString(This->raw_respheaders);
979 static HRESULT httprequest_send(httprequest *This, VARIANT body)
981 BindStatusCallback *bsc = NULL;
984 if (This->state != READYSTATE_LOADING) return E_FAIL;
986 hr = BindStatusCallback_create(This, &bsc, &body);
987 if (FAILED(hr)) return hr;
989 BindStatusCallback_Detach(This->bsc);
995 static HRESULT httprequest_abort(httprequest *This)
997 BindStatusCallback_Detach(This->bsc);
1000 httprequest_setreadystate(This, READYSTATE_UNINITIALIZED);
1005 static HRESULT httprequest_get_status(httprequest *This, LONG *status)
1007 if (!status) return E_INVALIDARG;
1008 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1010 *status = This->status;
1015 static HRESULT httprequest_get_statusText(httprequest *This, BSTR *status)
1017 if (!status) return E_INVALIDARG;
1018 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1020 *status = SysAllocString(This->status_text);
1025 static HRESULT httprequest_get_responseText(httprequest *This, BSTR *body)
1030 if (!body) return E_INVALIDARG;
1031 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1033 hr = GetHGlobalFromStream(This->bsc->stream, &hglobal);
1036 xmlChar *ptr = GlobalLock(hglobal);
1037 DWORD size = GlobalSize(hglobal);
1038 xmlCharEncoding encoding = XML_CHAR_ENCODING_UTF8;
1040 /* try to determine data encoding */
1043 encoding = xmlDetectCharEncoding(ptr, 4);
1044 TRACE("detected encoding: %s\n", debugstr_a(xmlGetCharEncodingName(encoding)));
1045 if ( encoding != XML_CHAR_ENCODING_UTF8 &&
1046 encoding != XML_CHAR_ENCODING_UTF16LE &&
1047 encoding != XML_CHAR_ENCODING_NONE )
1049 FIXME("unsupported encoding: %s\n", debugstr_a(xmlGetCharEncodingName(encoding)));
1050 GlobalUnlock(hglobal);
1055 /* without BOM assume UTF-8 */
1056 if (encoding == XML_CHAR_ENCODING_UTF8 ||
1057 encoding == XML_CHAR_ENCODING_NONE )
1059 DWORD length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)ptr, size, NULL, 0);
1061 *body = SysAllocStringLen(NULL, length);
1063 MultiByteToWideChar( CP_UTF8, 0, (LPCSTR)ptr, size, *body, length);
1066 *body = SysAllocStringByteLen((LPCSTR)ptr, size);
1068 if (!*body) hr = E_OUTOFMEMORY;
1069 GlobalUnlock(hglobal);
1075 static HRESULT httprequest_get_responseXML(httprequest *This, IDispatch **body)
1077 IXMLDOMDocument3 *doc;
1081 if (!body) return E_INVALIDARG;
1082 if (This->state != READYSTATE_COMPLETE) return E_FAIL;
1084 hr = DOMDocument_create(MSXML_DEFAULT, NULL, (void**)&doc);
1085 if (hr != S_OK) return hr;
1087 hr = httprequest_get_responseText(This, &str);
1092 hr = IXMLDOMDocument3_loadXML(doc, str, &ok);
1096 IXMLDOMDocument3_QueryInterface(doc, &IID_IDispatch, (void**)body);
1097 IXMLDOMDocument3_Release(doc);
1102 static HRESULT httprequest_get_responseBody(httprequest *This, VARIANT *body)
1107 if (!body) return E_INVALIDARG;
1108 V_VT(body) = VT_EMPTY;
1110 if (This->state != READYSTATE_COMPLETE) return E_PENDING;
1112 hr = GetHGlobalFromStream(This->bsc->stream, &hglobal);
1115 void *ptr = GlobalLock(hglobal);
1116 DWORD size = GlobalSize(hglobal);
1118 SAFEARRAYBOUND bound;
1122 bound.cElements = size;
1123 array = SafeArrayCreate(VT_UI1, 1, &bound);
1129 V_VT(body) = VT_ARRAY | VT_UI1;
1130 V_ARRAY(body) = array;
1132 hr = SafeArrayAccessData(array, &dest);
1135 memcpy(dest, ptr, size);
1136 SafeArrayUnaccessData(array);
1146 GlobalUnlock(hglobal);
1152 static HRESULT httprequest_get_responseStream(httprequest *This, VARIANT *body)
1158 if (!body) return E_INVALIDARG;
1159 V_VT(body) = VT_EMPTY;
1161 if (This->state != READYSTATE_COMPLETE) return E_PENDING;
1163 hr = IStream_Clone(This->bsc->stream, &stream);
1166 IStream_Seek(stream, move, STREAM_SEEK_SET, NULL);
1168 V_VT(body) = VT_UNKNOWN;
1169 V_UNKNOWN(body) = (IUnknown*)stream;
1174 static HRESULT httprequest_get_readyState(httprequest *This, LONG *state)
1176 if (!state) return E_INVALIDARG;
1178 *state = This->state;
1182 static HRESULT httprequest_put_onreadystatechange(httprequest *This, IDispatch *sink)
1184 if (This->sink) IDispatch_Release(This->sink);
1185 if ((This->sink = sink)) IDispatch_AddRef(This->sink);
1190 static void httprequest_release(httprequest *This)
1192 struct httpheader *header, *header2;
1195 IUnknown_Release( This->site );
1197 IUri_Release(This->uri);
1199 IUri_Release(This->base_uri);
1201 SysFreeString(This->custom);
1202 SysFreeString(This->user);
1203 SysFreeString(This->password);
1205 /* request headers */
1206 LIST_FOR_EACH_ENTRY_SAFE(header, header2, &This->reqheaders, struct httpheader, entry)
1208 list_remove(&header->entry);
1209 SysFreeString(header->header);
1210 SysFreeString(header->value);
1213 /* response headers */
1214 free_response_headers(This);
1215 SysFreeString(This->status_text);
1217 /* detach callback object */
1218 BindStatusCallback_Detach(This->bsc);
1220 if (This->sink) IDispatch_Release(This->sink);
1223 static HRESULT WINAPI XMLHTTPRequest_QueryInterface(IXMLHTTPRequest *iface, REFIID riid, void **ppvObject)
1225 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1226 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
1228 if ( IsEqualGUID( riid, &IID_IXMLHTTPRequest) ||
1229 IsEqualGUID( riid, &IID_IDispatch) ||
1230 IsEqualGUID( riid, &IID_IUnknown) )
1234 else if (IsEqualGUID(&IID_IObjectWithSite, riid))
1236 *ppvObject = &This->IObjectWithSite_iface;
1238 else if (IsEqualGUID(&IID_IObjectSafety, riid))
1240 *ppvObject = &This->IObjectSafety_iface;
1244 TRACE("Unsupported interface %s\n", debugstr_guid(riid));
1246 return E_NOINTERFACE;
1249 IXMLHTTPRequest_AddRef( iface );
1254 static ULONG WINAPI XMLHTTPRequest_AddRef(IXMLHTTPRequest *iface)
1256 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1257 ULONG ref = InterlockedIncrement( &This->ref );
1258 TRACE("(%p)->(%u)\n", This, ref );
1262 static ULONG WINAPI XMLHTTPRequest_Release(IXMLHTTPRequest *iface)
1264 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1265 ULONG ref = InterlockedDecrement( &This->ref );
1267 TRACE("(%p)->(%u)\n", This, ref );
1271 httprequest_release( This );
1278 static HRESULT WINAPI XMLHTTPRequest_GetTypeInfoCount(IXMLHTTPRequest *iface, UINT *pctinfo)
1280 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1282 TRACE("(%p)->(%p)\n", This, pctinfo);
1289 static HRESULT WINAPI XMLHTTPRequest_GetTypeInfo(IXMLHTTPRequest *iface, UINT iTInfo,
1290 LCID lcid, ITypeInfo **ppTInfo)
1292 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1294 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
1296 return get_typeinfo(IXMLHTTPRequest_tid, ppTInfo);
1299 static HRESULT WINAPI XMLHTTPRequest_GetIDsOfNames(IXMLHTTPRequest *iface, REFIID riid,
1300 LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
1302 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1303 ITypeInfo *typeinfo;
1306 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
1309 if(!rgszNames || cNames == 0 || !rgDispId)
1310 return E_INVALIDARG;
1312 hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
1315 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
1316 ITypeInfo_Release(typeinfo);
1322 static HRESULT WINAPI XMLHTTPRequest_Invoke(IXMLHTTPRequest *iface, DISPID dispIdMember, REFIID riid,
1323 LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
1324 EXCEPINFO *pExcepInfo, UINT *puArgErr)
1326 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1327 ITypeInfo *typeinfo;
1330 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1331 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1333 hr = get_typeinfo(IXMLHTTPRequest_tid, &typeinfo);
1336 hr = ITypeInfo_Invoke(typeinfo, &This->IXMLHTTPRequest_iface, dispIdMember, wFlags,
1337 pDispParams, pVarResult, pExcepInfo, puArgErr);
1338 ITypeInfo_Release(typeinfo);
1344 static HRESULT WINAPI XMLHTTPRequest_open(IXMLHTTPRequest *iface, BSTR method, BSTR url,
1345 VARIANT async, VARIANT user, VARIANT password)
1347 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1348 TRACE("(%p)->(%s %s %s)\n", This, debugstr_w(method), debugstr_w(url),
1349 debugstr_variant(&async));
1350 return httprequest_open(This, method, url, async, user, password);
1353 static HRESULT WINAPI XMLHTTPRequest_setRequestHeader(IXMLHTTPRequest *iface, BSTR header, BSTR value)
1355 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1356 TRACE("(%p)->(%s %s)\n", This, debugstr_w(header), debugstr_w(value));
1357 return httprequest_setRequestHeader(This, header, value);
1360 static HRESULT WINAPI XMLHTTPRequest_getResponseHeader(IXMLHTTPRequest *iface, BSTR header, BSTR *value)
1362 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1363 TRACE("(%p)->(%s %p)\n", This, debugstr_w(header), value);
1364 return httprequest_getResponseHeader(This, header, value);
1367 static HRESULT WINAPI XMLHTTPRequest_getAllResponseHeaders(IXMLHTTPRequest *iface, BSTR *respheaders)
1369 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1370 TRACE("(%p)->(%p)\n", This, respheaders);
1371 return httprequest_getAllResponseHeaders(This, respheaders);
1374 static HRESULT WINAPI XMLHTTPRequest_send(IXMLHTTPRequest *iface, VARIANT body)
1376 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1377 TRACE("(%p)->(%s)\n", This, debugstr_variant(&body));
1378 return httprequest_send(This, body);
1381 static HRESULT WINAPI XMLHTTPRequest_abort(IXMLHTTPRequest *iface)
1383 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1384 TRACE("(%p)\n", This);
1385 return httprequest_abort(This);
1388 static HRESULT WINAPI XMLHTTPRequest_get_status(IXMLHTTPRequest *iface, LONG *status)
1390 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1391 TRACE("(%p)->(%p)\n", This, status);
1392 return httprequest_get_status(This, status);
1395 static HRESULT WINAPI XMLHTTPRequest_get_statusText(IXMLHTTPRequest *iface, BSTR *status)
1397 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1398 TRACE("(%p)->(%p)\n", This, status);
1399 return httprequest_get_statusText(This, status);
1402 static HRESULT WINAPI XMLHTTPRequest_get_responseXML(IXMLHTTPRequest *iface, IDispatch **body)
1404 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1405 TRACE("(%p)->(%p)\n", This, body);
1406 return httprequest_get_responseXML(This, body);
1409 static HRESULT WINAPI XMLHTTPRequest_get_responseText(IXMLHTTPRequest *iface, BSTR *body)
1411 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1412 TRACE("(%p)->(%p)\n", This, body);
1413 return httprequest_get_responseText(This, body);
1416 static HRESULT WINAPI XMLHTTPRequest_get_responseBody(IXMLHTTPRequest *iface, VARIANT *body)
1418 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1419 TRACE("(%p)->(%p)\n", This, body);
1420 return httprequest_get_responseBody(This, body);
1423 static HRESULT WINAPI XMLHTTPRequest_get_responseStream(IXMLHTTPRequest *iface, VARIANT *body)
1425 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1426 TRACE("(%p)->(%p)\n", This, body);
1427 return httprequest_get_responseStream(This, body);
1430 static HRESULT WINAPI XMLHTTPRequest_get_readyState(IXMLHTTPRequest *iface, LONG *state)
1432 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1433 TRACE("(%p)->(%p)\n", This, state);
1434 return httprequest_get_readyState(This, state);
1437 static HRESULT WINAPI XMLHTTPRequest_put_onreadystatechange(IXMLHTTPRequest *iface, IDispatch *sink)
1439 httprequest *This = impl_from_IXMLHTTPRequest( iface );
1440 TRACE("(%p)->(%p)\n", This, sink);
1441 return httprequest_put_onreadystatechange(This, sink);
1444 static const struct IXMLHTTPRequestVtbl XMLHTTPRequestVtbl =
1446 XMLHTTPRequest_QueryInterface,
1447 XMLHTTPRequest_AddRef,
1448 XMLHTTPRequest_Release,
1449 XMLHTTPRequest_GetTypeInfoCount,
1450 XMLHTTPRequest_GetTypeInfo,
1451 XMLHTTPRequest_GetIDsOfNames,
1452 XMLHTTPRequest_Invoke,
1453 XMLHTTPRequest_open,
1454 XMLHTTPRequest_setRequestHeader,
1455 XMLHTTPRequest_getResponseHeader,
1456 XMLHTTPRequest_getAllResponseHeaders,
1457 XMLHTTPRequest_send,
1458 XMLHTTPRequest_abort,
1459 XMLHTTPRequest_get_status,
1460 XMLHTTPRequest_get_statusText,
1461 XMLHTTPRequest_get_responseXML,
1462 XMLHTTPRequest_get_responseText,
1463 XMLHTTPRequest_get_responseBody,
1464 XMLHTTPRequest_get_responseStream,
1465 XMLHTTPRequest_get_readyState,
1466 XMLHTTPRequest_put_onreadystatechange
1469 /* IObjectWithSite */
1470 static HRESULT WINAPI
1471 httprequest_ObjectWithSite_QueryInterface( IObjectWithSite* iface, REFIID riid, void** ppvObject )
1473 httprequest *This = impl_from_IObjectWithSite(iface);
1474 return IXMLHTTPRequest_QueryInterface( (IXMLHTTPRequest *)This, riid, ppvObject );
1477 static ULONG WINAPI httprequest_ObjectWithSite_AddRef( IObjectWithSite* iface )
1479 httprequest *This = impl_from_IObjectWithSite(iface);
1480 return IXMLHTTPRequest_AddRef((IXMLHTTPRequest *)This);
1483 static ULONG WINAPI httprequest_ObjectWithSite_Release( IObjectWithSite* iface )
1485 httprequest *This = impl_from_IObjectWithSite(iface);
1486 return IXMLHTTPRequest_Release((IXMLHTTPRequest *)This);
1489 static HRESULT WINAPI httprequest_ObjectWithSite_GetSite( IObjectWithSite *iface, REFIID iid, void **ppvSite )
1491 httprequest *This = impl_from_IObjectWithSite(iface);
1493 TRACE("(%p)->(%s %p)\n", This, debugstr_guid( iid ), ppvSite );
1498 return IUnknown_QueryInterface( This->site, iid, ppvSite );
1501 static void get_base_uri(httprequest *This)
1503 IServiceProvider *provider;
1504 IHTMLDocument2 *doc;
1509 hr = IUnknown_QueryInterface(This->site, &IID_IServiceProvider, (void**)&provider);
1513 hr = IServiceProvider_QueryService(provider, &SID_SContainerDispatch, &IID_IHTMLDocument2, (void**)&doc);
1514 IServiceProvider_Release(provider);
1518 hr = IHTMLDocument2_get_URL(doc, &url);
1519 IHTMLDocument2_Release(doc);
1520 if(FAILED(hr) || !url || !*url)
1523 TRACE("host url %s\n", debugstr_w(url));
1525 hr = CreateUri(url, 0, 0, &uri);
1530 This->base_uri = uri;
1533 static HRESULT WINAPI httprequest_ObjectWithSite_SetSite( IObjectWithSite *iface, IUnknown *punk )
1535 httprequest *This = impl_from_IObjectWithSite(iface);
1537 TRACE("(%p)->(%p)\n", This, punk);
1540 IUnknown_Release( This->site );
1542 IUri_Release(This->base_uri);
1548 IUnknown_AddRef( punk );
1555 static const IObjectWithSiteVtbl ObjectWithSiteVtbl =
1557 httprequest_ObjectWithSite_QueryInterface,
1558 httprequest_ObjectWithSite_AddRef,
1559 httprequest_ObjectWithSite_Release,
1560 httprequest_ObjectWithSite_SetSite,
1561 httprequest_ObjectWithSite_GetSite
1565 static HRESULT WINAPI httprequest_Safety_QueryInterface(IObjectSafety *iface, REFIID riid, void **ppv)
1567 httprequest *This = impl_from_IObjectSafety(iface);
1568 return IXMLHTTPRequest_QueryInterface( (IXMLHTTPRequest *)This, riid, ppv );
1571 static ULONG WINAPI httprequest_Safety_AddRef(IObjectSafety *iface)
1573 httprequest *This = impl_from_IObjectSafety(iface);
1574 return IXMLHTTPRequest_AddRef((IXMLHTTPRequest *)This);
1577 static ULONG WINAPI httprequest_Safety_Release(IObjectSafety *iface)
1579 httprequest *This = impl_from_IObjectSafety(iface);
1580 return IXMLHTTPRequest_Release((IXMLHTTPRequest *)This);
1583 static HRESULT WINAPI httprequest_Safety_GetInterfaceSafetyOptions(IObjectSafety *iface, REFIID riid,
1584 DWORD *supported, DWORD *enabled)
1586 httprequest *This = impl_from_IObjectSafety(iface);
1588 TRACE("(%p)->(%s %p %p)\n", This, debugstr_guid(riid), supported, enabled);
1590 if(!supported || !enabled) return E_POINTER;
1592 *supported = safety_supported_options;
1593 *enabled = This->safeopt;
1598 static HRESULT WINAPI httprequest_Safety_SetInterfaceSafetyOptions(IObjectSafety *iface, REFIID riid,
1599 DWORD mask, DWORD enabled)
1601 httprequest *This = impl_from_IObjectSafety(iface);
1602 TRACE("(%p)->(%s %x %x)\n", This, debugstr_guid(riid), mask, enabled);
1604 if ((mask & ~safety_supported_options))
1607 This->safeopt = (This->safeopt & ~mask) | (mask & enabled);
1612 static const IObjectSafetyVtbl ObjectSafetyVtbl = {
1613 httprequest_Safety_QueryInterface,
1614 httprequest_Safety_AddRef,
1615 httprequest_Safety_Release,
1616 httprequest_Safety_GetInterfaceSafetyOptions,
1617 httprequest_Safety_SetInterfaceSafetyOptions
1620 /* IServerXMLHTTPRequest */
1621 static HRESULT WINAPI ServerXMLHTTPRequest_QueryInterface(IServerXMLHTTPRequest *iface, REFIID riid, void **obj)
1623 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1625 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), obj);
1627 if ( IsEqualGUID( riid, &IID_IServerXMLHTTPRequest) ||
1628 IsEqualGUID( riid, &IID_IXMLHTTPRequest) ||
1629 IsEqualGUID( riid, &IID_IDispatch) ||
1630 IsEqualGUID( riid, &IID_IUnknown) )
1636 TRACE("Unsupported interface %s\n", debugstr_guid(riid));
1638 return E_NOINTERFACE;
1641 IServerXMLHTTPRequest_AddRef( iface );
1646 static ULONG WINAPI ServerXMLHTTPRequest_AddRef(IServerXMLHTTPRequest *iface)
1648 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1649 ULONG ref = InterlockedIncrement( &This->ref );
1650 TRACE("(%p)->(%u)\n", This, ref );
1654 static ULONG WINAPI ServerXMLHTTPRequest_Release(IServerXMLHTTPRequest *iface)
1656 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1657 ULONG ref = InterlockedDecrement( &This->ref );
1659 TRACE("(%p)->(%u)\n", This, ref );
1663 httprequest_release( &This->req );
1670 static HRESULT WINAPI ServerXMLHTTPRequest_GetTypeInfoCount(IServerXMLHTTPRequest *iface, UINT *pctinfo)
1672 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1674 TRACE("(%p)->(%p)\n", This, pctinfo);
1680 static HRESULT WINAPI ServerXMLHTTPRequest_GetTypeInfo(IServerXMLHTTPRequest *iface, UINT iTInfo,
1681 LCID lcid, ITypeInfo **ppTInfo)
1683 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1685 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
1687 return get_typeinfo(IServerXMLHTTPRequest_tid, ppTInfo);
1690 static HRESULT WINAPI ServerXMLHTTPRequest_GetIDsOfNames(IServerXMLHTTPRequest *iface, REFIID riid,
1691 LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
1693 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1694 ITypeInfo *typeinfo;
1697 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
1700 if(!rgszNames || cNames == 0 || !rgDispId)
1701 return E_INVALIDARG;
1703 hr = get_typeinfo(IServerXMLHTTPRequest_tid, &typeinfo);
1706 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
1707 ITypeInfo_Release(typeinfo);
1713 static HRESULT WINAPI ServerXMLHTTPRequest_Invoke(IServerXMLHTTPRequest *iface, DISPID dispIdMember, REFIID riid,
1714 LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,
1715 EXCEPINFO *pExcepInfo, UINT *puArgErr)
1717 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1718 ITypeInfo *typeinfo;
1721 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1722 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1724 hr = get_typeinfo(IServerXMLHTTPRequest_tid, &typeinfo);
1727 hr = ITypeInfo_Invoke(typeinfo, &This->IServerXMLHTTPRequest_iface, dispIdMember, wFlags,
1728 pDispParams, pVarResult, pExcepInfo, puArgErr);
1729 ITypeInfo_Release(typeinfo);
1735 static HRESULT WINAPI ServerXMLHTTPRequest_open(IServerXMLHTTPRequest *iface, BSTR method, BSTR url,
1736 VARIANT async, VARIANT user, VARIANT password)
1738 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1739 TRACE("(%p)->(%s %s %s)\n", This, debugstr_w(method), debugstr_w(url),
1740 debugstr_variant(&async));
1741 return httprequest_open(&This->req, method, url, async, user, password);
1744 static HRESULT WINAPI ServerXMLHTTPRequest_setRequestHeader(IServerXMLHTTPRequest *iface, BSTR header, BSTR value)
1746 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1747 TRACE("(%p)->(%s %s)\n", This, debugstr_w(header), debugstr_w(value));
1748 return httprequest_setRequestHeader(&This->req, header, value);
1751 static HRESULT WINAPI ServerXMLHTTPRequest_getResponseHeader(IServerXMLHTTPRequest *iface, BSTR header, BSTR *value)
1753 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1754 TRACE("(%p)->(%s %p)\n", This, debugstr_w(header), value);
1755 return httprequest_getResponseHeader(&This->req, header, value);
1758 static HRESULT WINAPI ServerXMLHTTPRequest_getAllResponseHeaders(IServerXMLHTTPRequest *iface, BSTR *respheaders)
1760 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1761 TRACE("(%p)->(%p)\n", This, respheaders);
1762 return httprequest_getAllResponseHeaders(&This->req, respheaders);
1765 static HRESULT WINAPI ServerXMLHTTPRequest_send(IServerXMLHTTPRequest *iface, VARIANT body)
1767 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1768 TRACE("(%p)->(%s)\n", This, debugstr_variant(&body));
1769 return httprequest_send(&This->req, body);
1772 static HRESULT WINAPI ServerXMLHTTPRequest_abort(IServerXMLHTTPRequest *iface)
1774 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1775 TRACE("(%p)\n", This);
1776 return httprequest_abort(&This->req);
1779 static HRESULT WINAPI ServerXMLHTTPRequest_get_status(IServerXMLHTTPRequest *iface, LONG *status)
1781 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1782 TRACE("(%p)->(%p)\n", This, status);
1783 return httprequest_get_status(&This->req, status);
1786 static HRESULT WINAPI ServerXMLHTTPRequest_get_statusText(IServerXMLHTTPRequest *iface, BSTR *status)
1788 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1789 TRACE("(%p)->(%p)\n", This, status);
1790 return httprequest_get_statusText(&This->req, status);
1793 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseXML(IServerXMLHTTPRequest *iface, IDispatch **body)
1795 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1796 TRACE("(%p)->(%p)\n", This, body);
1797 return httprequest_get_responseXML(&This->req, body);
1800 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseText(IServerXMLHTTPRequest *iface, BSTR *body)
1802 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1803 TRACE("(%p)->(%p)\n", This, body);
1804 return httprequest_get_responseText(&This->req, body);
1807 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseBody(IServerXMLHTTPRequest *iface, VARIANT *body)
1809 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1810 TRACE("(%p)->(%p)\n", This, body);
1811 return httprequest_get_responseBody(&This->req, body);
1814 static HRESULT WINAPI ServerXMLHTTPRequest_get_responseStream(IServerXMLHTTPRequest *iface, VARIANT *body)
1816 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1817 TRACE("(%p)->(%p)\n", This, body);
1818 return httprequest_get_responseStream(&This->req, body);
1821 static HRESULT WINAPI ServerXMLHTTPRequest_get_readyState(IServerXMLHTTPRequest *iface, LONG *state)
1823 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1824 TRACE("(%p)->(%p)\n", This, state);
1825 return httprequest_get_readyState(&This->req, state);
1828 static HRESULT WINAPI ServerXMLHTTPRequest_put_onreadystatechange(IServerXMLHTTPRequest *iface, IDispatch *sink)
1830 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1831 TRACE("(%p)->(%p)\n", This, sink);
1832 return httprequest_put_onreadystatechange(&This->req, sink);
1835 static HRESULT WINAPI ServerXMLHTTPRequest_setTimeouts(IServerXMLHTTPRequest *iface, LONG resolveTimeout, LONG connectTimeout,
1836 LONG sendTimeout, LONG receiveTimeout)
1838 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1839 FIXME("(%p)->(%d %d %d %d): stub\n", This, resolveTimeout, connectTimeout, sendTimeout, receiveTimeout);
1843 static HRESULT WINAPI ServerXMLHTTPRequest_waitForResponse(IServerXMLHTTPRequest *iface, VARIANT timeout, VARIANT_BOOL *isSuccessful)
1845 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1846 FIXME("(%p)->(%s %p): stub\n", This, debugstr_variant(&timeout), isSuccessful);
1850 static HRESULT WINAPI ServerXMLHTTPRequest_getOption(IServerXMLHTTPRequest *iface, SERVERXMLHTTP_OPTION option, VARIANT *value)
1852 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1853 FIXME("(%p)->(%d %p): stub\n", This, option, value);
1857 static HRESULT WINAPI ServerXMLHTTPRequest_setOption(IServerXMLHTTPRequest *iface, SERVERXMLHTTP_OPTION option, VARIANT value)
1859 serverhttp *This = impl_from_IServerXMLHTTPRequest( iface );
1860 FIXME("(%p)->(%d %s): stub\n", This, option, debugstr_variant(&value));
1864 static const struct IServerXMLHTTPRequestVtbl ServerXMLHTTPRequestVtbl =
1866 ServerXMLHTTPRequest_QueryInterface,
1867 ServerXMLHTTPRequest_AddRef,
1868 ServerXMLHTTPRequest_Release,
1869 ServerXMLHTTPRequest_GetTypeInfoCount,
1870 ServerXMLHTTPRequest_GetTypeInfo,
1871 ServerXMLHTTPRequest_GetIDsOfNames,
1872 ServerXMLHTTPRequest_Invoke,
1873 ServerXMLHTTPRequest_open,
1874 ServerXMLHTTPRequest_setRequestHeader,
1875 ServerXMLHTTPRequest_getResponseHeader,
1876 ServerXMLHTTPRequest_getAllResponseHeaders,
1877 ServerXMLHTTPRequest_send,
1878 ServerXMLHTTPRequest_abort,
1879 ServerXMLHTTPRequest_get_status,
1880 ServerXMLHTTPRequest_get_statusText,
1881 ServerXMLHTTPRequest_get_responseXML,
1882 ServerXMLHTTPRequest_get_responseText,
1883 ServerXMLHTTPRequest_get_responseBody,
1884 ServerXMLHTTPRequest_get_responseStream,
1885 ServerXMLHTTPRequest_get_readyState,
1886 ServerXMLHTTPRequest_put_onreadystatechange,
1887 ServerXMLHTTPRequest_setTimeouts,
1888 ServerXMLHTTPRequest_waitForResponse,
1889 ServerXMLHTTPRequest_getOption,
1890 ServerXMLHTTPRequest_setOption
1893 static void init_httprequest(httprequest *req)
1895 req->IXMLHTTPRequest_iface.lpVtbl = &XMLHTTPRequestVtbl;
1896 req->IObjectWithSite_iface.lpVtbl = &ObjectWithSiteVtbl;
1897 req->IObjectSafety_iface.lpVtbl = &ObjectSafetyVtbl;
1903 req->uri = req->base_uri = NULL;
1904 req->user = req->password = NULL;
1906 req->state = READYSTATE_UNINITIALIZED;
1911 req->status_text = NULL;
1912 req->reqheader_size = 0;
1913 req->raw_respheaders = NULL;
1914 req->use_utf8_content = FALSE;
1916 list_init(&req->reqheaders);
1917 list_init(&req->respheaders);
1923 HRESULT XMLHTTPRequest_create(IUnknown *outer, void **obj)
1927 TRACE("(%p, %p)\n", outer, obj);
1929 req = heap_alloc( sizeof (*req) );
1931 return E_OUTOFMEMORY;
1933 init_httprequest(req);
1934 *obj = &req->IXMLHTTPRequest_iface;
1936 TRACE("returning iface %p\n", *obj);
1941 HRESULT ServerXMLHTTP_create(IUnknown *outer, void **obj)
1945 TRACE("(%p, %p)\n", outer, obj);
1947 req = heap_alloc( sizeof (*req) );
1949 return E_OUTOFMEMORY;
1951 init_httprequest(&req->req);
1952 req->IServerXMLHTTPRequest_iface.lpVtbl = &ServerXMLHTTPRequestVtbl;
1955 *obj = &req->IServerXMLHTTPRequest_iface;
1957 TRACE("returning iface %p\n", *obj);
1964 HRESULT XMLHTTPRequest_create(IUnknown *pUnkOuter, void **ppObj)
1966 MESSAGE("This program tried to use a XMLHTTPRequest object, but\n"
1967 "libxml2 support was not present at compile time.\n");
1971 HRESULT ServerXMLHTTP_create(IUnknown *outer, void **obj)
1973 MESSAGE("This program tried to use a ServerXMLHTTP object, but\n"
1974 "libxml2 support was not present at compile time.\n");