... Yeah, so I've been pushing internally to get anybody who understands the limits to publish them (totally...not...bitter). Evidently that's hard to do. ... ...
305
Ryan Kennedy
rckenned_at_...
Sep 14, 2007 4:17 am
... Clever monkey. :P Ryan Kennedy Yahoo! Mail Web Service...
304
Wayne
bellingham32
Sep 14, 2007 4:00 am
In case anyone is interested, you can convert a search mid into a true mid, allowing you to search multi-threaded, in .NET: // WWB: Converts the search mid to...
303
Wayne
bellingham32
Sep 14, 2007 4:00 am
Might Want To Give The "infamous Client.999 error" some InnerText to <faultstring> so that it shows up in .NET as an error. Also, it would be nice if it told...
302
Ryan Kennedy
rckenned_at_...
Sep 11, 2007 10:52 pm
... The infamous Client.999 error code means that you've run up against our anti-abuse system. You'll need to back off your requests to the system. Ryan...
301
Wayne
bellingham32
Sep 11, 2007 10:39 pm
I am calling SearchMessages and getting back a SOAP Error without a message. In .NET it looks like this: System.Web.Services.Protocols.SoapHeaderException : ...
300
Wayne
bellingham32
Sep 11, 2007 3:38 pm
"It doesn't deadlock, it will eventually return...." Not Deadlocking on your end, on my end, since my serialized threads are waiting for a slow return (ok not...
299
Ryan Kennedy
rckenned_at_...
Sep 11, 2007 6:26 am
... Yes, unfortunately this is a problem with Mail that isn't likely to be remedied soon. ... It doesn't deadlock, it will eventually return. There's a...
298
Ryan Kennedy
rckenned_at_...
Sep 11, 2007 6:19 am
... Cool, even if your reproduction scenario is just the raw HTTP request/responses, that should be enough for me to get someone to look at what's going on. ...
297
Wayne
bellingham32
Sep 11, 2007 5:57 am
Ryan, Nothing interesting, only a little XML. I will try to get a reproduction scenario. -Wayne ... this...
296
Wayne
bellingham32
Sep 11, 2007 5:57 am
Because SearchMessages puts all the results into a fid called "Search% 20Folder" and because there is only one search folder per token (i.e. user) it appears...
295
Ryan Kennedy
rckenned_at_...
Sep 10, 2007 8:17 pm
... What are you saving in the body of the message? Is there any chance you can send some sample code that produces the same type of message? That might make...
294
Wayne
bellingham32
Sep 10, 2007 5:48 pm
After using the Yahoo Mail APIs (Webservices) on a custom folder, I use the HTML Version of Yahoo Mail to view the folder (http://mail.yahoo.com). Sometime,...
293
Wayne
bellingham32
Sep 6, 2007 3:37 am
So if I do a search and get a different mid and fid back, what should I send to DeleteMessage? If I send the Search Folder fid and mid, will it just delete...
292
Ryan Kennedy
rckenned_at_...
Sep 5, 2007 5:16 pm
... We've been discussing this internally and it does seem that it's a bug. I think you're probably the only person using exact subject matches with these...
291
Wayne Berry
bellingham32
Sep 5, 2007 5:01 pm
Ryan, You have been a great help. -Wayne _____ From: ydn-mail@yahoogroups.com [mailto:ydn-mail@yahoogroups.com] On Behalf Of Ryan Kennedy Sent: Tuesday,...
290
Ryan Kennedy
rckenned_at_...
Sep 5, 2007 4:25 am
... Yeah, you've stumbled on a bit of the underlying implementation leaking through. When you call SearchMessages, the response should include a fid for the...
289
Wayne
bellingham32
Sep 5, 2007 4:19 am
Ryan, Well Almost got it, however still having a little trouble. If I take the mid returned from the SearchMessage and call GetMessage right away with it, It...
288
Wayne Berry
bellingham32
Sep 4, 2007 11:44 pm
Ryan, Thanks for the work around, I am just going to use another delimiter besides colon. I need the exact match to work with my application. However, I ...
287
Ryan Kennedy
rckenned_at_...
Sep 4, 2007 10:54 pm
... An alternative to this would be to use this instead: searchRequest.search.query = "subject:\"name:value92;""; That's almost an identical search. I think the...
286
Ryan Kennedy
rckenned_at_...
Sep 4, 2007 9:25 pm
... The Yahoo! Mail web UIs only let you modify messages in the "Drafts" folder. If you were to save the message there, then you'll be able to update the...
285
Wayne
bellingham32
Sep 4, 2007 8:49 pm
Never mind, I figure out the SearchMessage issue, and the Delete might be my issue, need to investigate further. ... .........
284
Wayne
bellingham32
Sep 4, 2007 8:49 pm
Ryan, I was making you the test application, and figure out the issue. It appears that if you have a subject with a colon ':' in it, that this syntax: ...
283
Wayne
bellingham32
Sep 4, 2007 6:57 pm
My problems with SearchMessages and DeleteMessage Might Be An Issue with the messages I am Saving. i.e. poorly saved message can't be searched or deleted via...
282
Ryan Kennedy
rckenned_at_...
Sep 4, 2007 6:51 pm
Thanks to fellow Yahoo! Sam Pullara, we now have instructions for calling the Yahoo! Mail Web Service using JAX-WS for all you Java programmers: ...
281
Ryan Kennedy
rckenned_at_...
Sep 4, 2007 6:37 pm
... Yeah, that would be good. I can have a look this evening and see what's up. Ryan Kennedy Yahoo! Mail Web Service...
280
Ryan Kennedy
rckenned_at_...
Sep 4, 2007 6:36 pm
... Just to follow up, I'm not ignoring this question. I'm waiting for an answer from someone internally. Ryan Kennedy Yahoo! Mail Web Service...
279
Wayne
bellingham32
Sep 2, 2007 4:19 pm
SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new SearchQuery(); searchRequest.search.subject = key; ...
278
Ryan Kennedy
rckenned_at_...
Sep 1, 2007 10:51 pm
... What happens if you change the first line? searchRequest.startMidSpecified = true; searchRequest.startMid = 0; You're not giving the WS any indication...
277
Wayne
bellingham32
Sep 1, 2007 10:15 pm
Here is the code I have got: ///////////////////////////////////////////////// SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new...