Search the web
Sign In
New User? Sign Up
ydn-mail · Yahoo! Mail Developer Community
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 277 - 306 of 492   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
277
Here is the code I have got: ///////////////////////////////////////////////// SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new...
Wayne
bellingham32
Offline Send Email
Sep 1, 2007
10:15 pm
278
... What happens if you change the first line? searchRequest.startMidSpecified = true; searchRequest.startMid = 0; You're not giving the WS any indication...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 1, 2007
10:51 pm
279
SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new SearchQuery(); searchRequest.search.subject = key; ...
Wayne
bellingham32
Offline Send Email
Sep 2, 2007
4:19 pm
280
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:36 pm
281
... Yeah, that would be good. I can have a look this evening and see what's up. Ryan Kennedy Yahoo! Mail Web Service...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:37 pm
282
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: ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:51 pm
283
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...
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
6:57 pm
284
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: ...
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
8:49 pm
285
Never mind, I figure out the SearchMessage issue, and the Delete might be my issue, need to investigate further. ... .........
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
8:49 pm
286
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
9:25 pm
287
... An alternative to this would be to use this instead: searchRequest.search.query = "subject:\"name:value\""; That's almost an identical search. I think the...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
10:54 pm
288
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 ...
Wayne Berry
bellingham32
Offline Send Email
Sep 4, 2007
11:44 pm
289
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...
Wayne
bellingham32
Offline Send Email
Sep 5, 2007
4:19 am
290
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 5, 2007
4:25 am
291
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,...
Wayne Berry
bellingham32
Offline Send Email
Sep 5, 2007
5:01 pm
292
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 5, 2007
5:16 pm
293
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...
Wayne
bellingham32
Offline Send Email
Sep 6, 2007
3:37 am
294
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,...
Wayne
bellingham32
Offline Send Email
Sep 10, 2007
5:48 pm
295
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 10, 2007
8:17 pm
296
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...
Wayne
bellingham32
Offline Send Email
Sep 11, 2007
5:57 am
297
Ryan, Nothing interesting, only a little XML. I will try to get a reproduction scenario. -Wayne ... this...
Wayne
bellingham32
Offline Send Email
Sep 11, 2007
5:57 am
298
... 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. ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 11, 2007
6:19 am
299
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 11, 2007
6:26 am
300
"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...
Wayne
bellingham32
Offline Send Email
Sep 11, 2007
3:38 pm
301
I am calling SearchMessages and getting back a SOAP Error without a message. In .NET it looks like this: System.Web.Services.Protocols.SoapHeaderException : ...
Wayne
bellingham32
Offline Send Email
Sep 11, 2007
10:39 pm
302
... 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...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 11, 2007
10:52 pm
303
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...
Wayne
bellingham32
Offline Send Email
Sep 14, 2007
4:00 am
304
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...
Wayne
bellingham32
Offline Send Email
Sep 14, 2007
4:00 am
305
... Clever monkey. :P Ryan Kennedy Yahoo! Mail Web Service...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 14, 2007
4:17 am
306
... 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. ... ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 14, 2007
4:21 am
Messages 277 - 306 of 492   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help