Nearly aquired line-in name

32 visninger
Gå til det første ulæste opslag

crum...@gmail.com

ulæst,
23. feb. 2005, 20.01.1823.02.2005
til So...@googlegroups.com
Hi all. Not sure how many people read this, but I'm working my way
through figuring out the UPnP API for Sonos. It's pretty slow as I'm
learning C as I go, but I think I have finally sorted out the majority
of my C problems and are now running into Sonos problems.

Well, what I mean to say is that finally I have a program that compiles
(no small feat for me), that connects to a ZonePlayer, and that even
makes a request (sheesh, that took me ages.) I'm just not getting the
desired response. To be specific: UPnP error 401. Which I believe means
"invalid action".

I assume my POST request for information, stored in XML format, is
incorrect. Here is the data I am sending:

*************************************************
char *PostData =
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
" <s:Envelope
s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"
xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
" <s:Body>\n"
" <u:GetAudioInputName
xmlns:u=\"urn:schemas-upnp-org:service:AudioIn:1\" />\n"
" </s:Body>\n"
"</s:Envelope>";
*************************************************

Here is the relevant parts of my code:

*************************************************
// Specify an HTTP server.
if( hSession )
hConnect = WinHttpConnect( hSession, L"10.0.1.136",
1400, 0 );

// Create an HTTP request handle.
if( hConnect )
hRequest = WinHttpOpenRequest( hConnect, L"POST",
L"/AudioIn/Control",
NULL, WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
0);

// Send a request.
if( hRequest )
bResults = WinHttpSendRequest( hRequest,
WINHTTP_NO_ADDITIONAL_HEADERS, 0,
PostData, 0,
0, 0 );
*************************************************

Anyway... from looking at the output of DeviceSpy, it looks like I may
need to include:
SOAPACTION: "urn:schemas-upnp-org:service:AudioIn:1#GetAudioInputName"
Where do I put this? Is this what's causing my 401 error? Has anyone
else enocountered it?

Steve Eisner

ulæst,
23. feb. 2005, 20.21.0923.02.2005
til So...@googlegroups.com
Yep, you need to add the "Soapaction:___" to your request headers...
You'll need to use WinHttpAddRequestHeaders:

http://msdn.microsoft.com/library/en-us/winhttp/http/winhttpaddrequestheaders.asp

or change the "pwszHeaders" from its current value of
WINHTTP_NO_ADDITIONAL_HEADERS

Steve

crum...@gmail.com

ulæst,
23. feb. 2005, 21.09.4423.02.2005
til So...@googlegroups.com
When I change the WINHTTP_NO_ADDITIONAL_HEADERS value, I get
"assignment of pointer to const unsigned short to pointer to char"
(ugh. that is a horrible error.) Here's how I'm implementing it:

char *ExtraHeader = "SOAPACTION:
\"urn:schemas-upnp-org:service:AudioIn:1#GetAudioInputName\"";

And the HTTP request.... (which is the line the error points to)

WinHttpSendRequest( hRequest, ExtraHeader, 256, PostData, 0, 0, 0 );

I put 256 as the length just so it'd have a bit of padding. I guess
I'll have to figure out how to dynamically figure this out later.

Steve Eisner

ulæst,
23. feb. 2005, 21.51.3123.02.2005
til So...@googlegroups.com
Sounds to me like the error is trying to tell you that the char * you
passed in is of 8-bit characters and it's expecting 16-bit, or maybe
vice versa? :) an "unsigned short" is basically a 16-bit number, and
a "char" is 8-bit.

Unfortunately I've never used the WinHttp library so I don't have a
good answer for you.

Here are some google posts that might be relevant
http://groups-beta.google.com/group/comp.os.ms-windows.programmer.networks/browse_frm/thread/1c008367ecfc0f4f/d4b9dcd583cb7d2b?q=WinHttpSendRequest+-WINHTTP_NO_ADDITIONAL_+HEADERS&_done=%2Fgroups%3Fq%3DWinHttpSendRequest+-WINHTTP_NO_ADDITIONAL_+HEADERS%26hl%3Den%26lr%3D%26rls%3DGGLD,GGLD:2004-22,GGLD:en%26sa%3DN%26tab%3Dwg%26&_doneTitle=Back+to+Search&&d#d4b9dcd583cb7d2b
(hints that maybe the string should be an L" " string?)

http://groups-beta.google.com/groups?hl=en&lr=&q=WinHttpSendRequest+-WINHTTP_NO_ADDITIONAL_+HEADERS+headers
(more posts about WinHttpSendRequest)

crum...@gmail.com

ulæst,
25. feb. 2005, 14.59.3625.02.2005
til So...@googlegroups.com
Hmm. Changing this line:

char *ExtraHeader = "SOAPACTION:
\"urn:schemas-upnp-org:service:AudioIn:1#GetAudioInputName\"";
seems to fix it - I just added the word "unsigned" at the start.

Now I'm back to getting Error 87, which I think is due to an incorrect
string lenth being specified to WinHttpSendRequest. I'm trying to
calculate lengths with:
char PostLength = lstrlen(PostData)*sizeof(TCHAR);
but for some reason that gives me a length of 18, when my XML code to
be POST'd is waay longer (like 200 at a guess.) Can that method handle
escape characters? And seperate lines?

crum...@gmail.com

ulæst,
25. feb. 2005, 16.07.1025.02.2005
til So...@googlegroups.com
OK I think I've broken it down some more.

Here's what I need to have in my WinHttpSendRequest statement (from the
MSDN):
pwszHeaders
[in] A pointer to a string that contains the additional headers to
append to the request. This parameter can be
WINHTTP_NO_ADDITIONAL_HEADERS if there are no additional headers to
append.

It seems the POST data is a "pointer to a buffer" (char *postdata =
"post data"; works) but the headers are a "pointer to a string". I
don't know how to make a pointer to a string. God only knows why they
aren't BOTH a "pointer to a buffer". I guess I'll start googling...

Steve Eisner

ulæst,
25. feb. 2005, 16.36.4525.02.2005
til So...@googlegroups.com
It's not too hard to make a pointer to a string (it's just a "char **")
so char *s = "string"
char **p = &s;
but are you sure they really want a "pointer to a string" or is that
just confusing terminology which really means "a string (which is a
pointer)"

I wish I could help more with the lstrlen issue but I left the C++
world before there was any concern about strs vs. lstrs etc. In Java
and C# all strings are unicode so there's no such distinction...

Steve
Svar alle
Svar til forfatter
Videresend
0 nye opslag