webservices: Add traces.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2018-10-31 14:21:28 +01:00 committed by Alexandre Julliard
parent 26008a7b82
commit 3b7fd4ffed

View file

@ -395,6 +395,11 @@ static HRESULT create_channel( WS_CHANNEL_TYPE type, WS_CHANNEL_BINDING binding,
for (i = 0; i < count; i++)
{
TRACE( "property id %u value ptr %p size %u\n", properties[i].id, properties[i].value,
properties[i].valueSize );
if (properties[i].valueSize == sizeof(ULONG) && properties[i].value)
TRACE( " value %08x\n", *(ULONG *)properties[i].value );
switch (properties[i].id)
{
case WS_CHANNEL_PROPERTY_ENCODING:
@ -623,6 +628,8 @@ static HRESULT open_channel( struct channel *channel, const WS_ENDPOINT_ADDRESS
return E_NOTIMPL;
}
TRACE( "endpoint %s\n", debugstr_wn(endpoint->url.chars, endpoint->url.length) );
if (!(channel->addr.url.chars = heap_alloc( endpoint->url.length * sizeof(WCHAR) ))) return E_OUTOFMEMORY;
memcpy( channel->addr.url.chars, endpoint->url.chars, endpoint->url.length * sizeof(WCHAR) );
channel->addr.url.length = endpoint->url.length;