Search the web
Sign In
New User? Sign Up
ydn-dotnet · CLOSED: Yahoo! .NET Developer Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 233 - 263 of 263   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#263 From: "jobaphiles" <thaironius@...>
Date: Sat Apr 4, 2009 5:36 am
Subject: ASP.net/C# Developers Sought
jobaphiles
Offline Offline
Send Email Send Email
 
Developer Position at the DreamIt Ventures Incubator

Jobaphiles.com is hiring developers (and interns) to join it this summer at
DreamIt Ventures, a seed-stage incubator in Philadelphia. Interested candidates
should have experience developing websites in ASP.net/C#. Housing will be
provided and you will have office space at the Science Center nearby to the
campus of UPenn.

For more information about the DreamIt Ventures incubator program, please visit
their website: http://www.dreamitventures.com

For more information about Jobaphiles.com, please view some of the publicity we
have received recently:

National interview on the Fox News Channel:
http://www.foxnews.com/video/video08.html?maven_referralObject=3606109&maven_ref\
erralPlaylistId=&sRevUrl=http://www.foxnews.com/foxfriends/

Story on NBC:
http://www.woodtv.com/dpp/news/economy/Job_auction_website_like_eBay_for_jobs

Article on TechCrunch:
http://www.techcrunch.com/2009/03/17/two-new-ways-to-find-a-job-auction-yourself\
-off-at-jobaphile-or-do-a-twitterjobsearch/

Article in Wired:
http://blog.wired.com/business/2009/03/ebay-for-jobs-a.html


Story on NECN (New England Cable News Network):
http://www.necn.com/Boston/SciTech/2009/03/18/Where-to-find-a-job-and-where/1237\
379089.html

Developers interested in working remotely should also inquire for more
information.


Inquires should be sent to jobs@....

#262 From: "lanreodedeyi" <lanreodedeyi@...>
Date: Sun Mar 8, 2009 6:27 pm
Subject: Photo, audio web service
lanreodedeyi
Offline Offline
Send Email Send Email
 
Hi everyone,

Is there any online web service that will store audio and photo online that i
can now retrieve and use in my application.

I will also need to know the best way to make a web site chat sysytem i.e

using xml to store the chat
or using a sql database.

#261 From: "docbliny" <tomi@...>
Date: Mon Mar 2, 2009 5:02 pm
Subject: ANNOUNCEMENT: The ydn-dotnet group is moving!
docbliny
Online Now Online Now
Send Email Send Email
 
Hi everyone,

We're going to be moving this group to the new Yahoo! Developer Network
forums. This group will be closing at the end of March.

The forums will make it easier and faster to get answers, as you will
be able to search for answers from other related groups, too. Many of
our questions have been related to APIs such as Mail or authentication
and the forums for those will be neatly in one place.

The new .NET Development Forum is at:
http://developer.yahoo.net/forum/index.php?showforum=72

Please post all future questions and comments there!

Sincerely,

Tomi B.

#260 From: "trendmicrovincent" <vincent90152900@...>
Date: Sun Mar 1, 2009 8:36 am
Subject: How to implement an web service to retrieve email from Yahoo! Mail Web Service?
trendmicrovi...
Offline Offline
Send Email Send Email
 
How do I implement an asp.net web service to find a particular email
in the Yahoo! Mail Web Service and get the content of the mail I found?

#259 From: "vincent" <vincent90152900@...>
Date: Sun Mar 1, 2009 2:59 am
Subject: How do I get a user's token?
vincent90152900
Online Now Online Now
Send Email Send Email
 
I use the code example, http://developer.yahoo.com/mail/code/mail_cs.zip.

I have application ID and shared secret.

I do not know how to get a user's token.

Can anyone tell me how to do that?

#258 From: "basilbanbouk" <bassel.banbouk@...>
Date: Mon Feb 9, 2009 10:02 am
Subject: Re: 403 Error when retrieving Contact Book
basilbanbouk
Offline Offline
Send Email Send Email
 
so any solution for this?

--- In ydn-dotnet@yahoogroups.com, "farid_974" <farid_974@...> wrote:
>
> It's this statement, all others are working fine...
> XmlDocument doc =
> auth.GetAuthenticatedServiceXmlDocu ment(address) ;
>
>
> Thanks for your help :)
>
>
> --- In ydn-dotnet@yahoogroups.com, James Maclory <jamesmaclory@>
wrote:
> >
> > Hi there,
> > When did you get the error, which statement caused this error?
> >
> >
> >
> > ----- Original Message ----
> > From: farid_974 <farid_974@>
> > To: ydn-dotnet@yahoogroups.com
> > Sent: Wednesday, August 6, 2008 3:18:46 PM
> > Subject: [ydn-dotnet] 403 Error when retrieving Contact Book
> >
> >
> > Hi everyone,
> >
> > I'm trying to retrieve all email address for the contact book in
order
> > to invite people on my website.
> >
> > I'm using ASP.NET 2.0, the .NET framework 2.0 and C#
> > When i'm trying to retrieve the XML, i got an error 403...
> >
> > Actually i'm just using these code:
> >
> > Authentication auth = Session["Auth" ] as Authentication;
> > if (Request.QueryStrin g["token" ] != null &&
> > Request.QueryString ["token"] .Length > 0)
> > {
> > if (auth.IsValidSigned Url(Request. Url) == true)
> > {
> > auth.Token = Request.QueryString ["token"] ;
> > auth.UpdateCredenti als();
> > Response.Write( "ok");
> > }
> > else
> > {
> > Response.Write( "error");
> > }
> > }
> >
> > if (auth.IsCredentiale d == true)
> > {
> > string url =
> > "http://address. yahooapis. com/v1/searchCon tacts?format=
> xml&fields= name,email";
> > url += "&appid=" + auth.ApplicationId;
> > url += "&wssid=" + auth.WssId;
> >
> > Uri address = new Uri(url);
> >
> > XmlDocument doc =
> > auth.GetAuthenticatedServiceXmlDocu ment(address) ;
> >
> > }
> > else
> > {
> > Response.Write( "Not authenticated" );
> > }
> >
> > Please, help me to do this because i don't know why i don't have
acces.
> >
>

#257 From: "basilbanbouk" <bassel.banbouk@...>
Date: Mon Feb 9, 2009 8:01 am
Subject: 403 Forbbiden when accessing address book
basilbanbouk
Offline Offline
Send Email Send Email
 
I am using the same page to authenticate and retrieve the data, here's
my code:

// Create an instance of Yahoo.Authentication
Authentication auth = new Authentication("myid",
"mysecret");

bool authenticate = true;

// Check if we are returning from login
if (Request.QueryString["token"] != null &&
Request.QueryString["token"].Length > 0)
{
// Make sure the call is valid
if (auth.IsValidSignedUrl(Request.Url) == true)
{
// Save the user token. It is valid for two weeks
auth.Token = Request.QueryString["token"];
auth.UpdateCredentials();
authenticate = false;

// Call web service and output result into a DIV
tag

if (auth.IsCredentialed)
{
string service =
string.Format("http://address.yahooapis.com/v1/searchContacts?
appid={0}&WSSID={1}", auth.ApplicationId, auth.WssId);


// THIS LINE IS GIVING 403 Forbidden ERROR
Div1.InnerHtml =
auth.GetAuthenticatedServiceString(new System.Uri(service));

}
else
{
authenticate = true;
}
}
}

if (authenticate)
{
// Redirect the user to the use sign-in page

Response.Redirect(auth.GetUserLogOnAddress().ToString());
}


any ideas why I am not being able to retrieve the list of contacts,
although my appID has access to the address book

#256 From: "ali.muslim" <ali.muslim@...>
Date: Tue Feb 3, 2009 6:42 am
Subject: http://listings.local.yahoo.com/, Yahoo Local
ali.muslim
Offline Offline
Send Email Send Email
 
Hello!

Is there any API available to add/list business in yahoo local i.e.
http://listings.local.yahoo.com/?
Need help on this.

Thanks

#254 From: "afahmy@..." <afahmy@...>
Date: Sun Jan 25, 2009 9:46 am
Subject: Using Javascript code to execute a button event in Asp.net C#
afahmy...
Offline Offline
Send Email Send Email
 
Hi everyone, I'm trying to use a javascript code to execute an ASP.net
Button "OnClick" server side event. can any one help me with that.
thanks alot.

#253 From: "yourlandnet" <yourlandnet@...>
Date: Sat Jan 24, 2009 6:59 am
Subject: Re: Try to get contacts using "GetAuthenticatedServiceDataSet" method but error
yourlandnet
Offline Offline
Send Email Send Email
 
But the problem is that "GetAuthenticatedServiceString" works.

What "GetAuthenticatedServiceString" return is like this:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE search-response SYSTEM
"http://l.yimg.com/us.yimg.com/lib/pim/r/abook/xml/2/pheasant.dtd"><search-respo\
nse><contact
cid="1"><nickname fid="2">lan</nickname><email
fid="3">yourlandnet@...</email><name
fid="1"><first>alan</first><last>lan</last></name></contact></search-response><!\
--
web233.address.pim.mud.yahoo.com uncompressed/chunked Fri Jan 23
17:38:39 PST 2009 -->


I think there is something wrong with DTD in the XML, because Ican't
load above XML string to XmlDocument, but it's successful if I only
load the content in  <search-response> node.

Thanks.








--- In ydn-dotnet@yahoogroups.com, "docbliny" <tomi@...> wrote:
>
> > "GetAuthenticatedServiceString" works well, it can return string what
> > The remote server returned an error: (404) Not Found.
> >
> > What happens? Anyone can help me? Thanks~
>
> The server is returning a 404 error code which means that the URL you
> are using is incorrect (page not found). Check the address for
> correctness/typos and try again.
>
> //Tomi B.
>

#252 From: "docbliny" <tomi@...>
Date: Fri Jan 23, 2009 6:23 pm
Subject: Re: Try to get contacts using "GetAuthenticatedServiceDataSet" method but error
docbliny
Online Now Online Now
Send Email Send Email
 
> "GetAuthenticatedServiceString" works well, it can return string what
> The remote server returned an error: (404) Not Found.
>
> What happens? Anyone can help me? Thanks~

The server is returning a 404 error code which means that the URL you
are using is incorrect (page not found). Check the address for
correctness/typos and try again.

//Tomi B.

#251 From: "yourlandnet" <yourlandnet@...>
Date: Fri Jan 23, 2009 7:19 am
Subject: Try to get contacts using "GetAuthenticatedServiceDataSet" method but error
yourlandnet
Offline Offline
Send Email Send Email
 
I am using Asp.net 2.0.

There are several methods in Authentication.dll

"GetAuthenticatedServiceString" works well, it can return string what
I want.
But GetAuthenticatedServiceDataSet and
GetAuthenticatedServiceXmlDocument failed. It Always happen error:
The remote server returned an error: (404) Not Found.


What happens? Anyone can help me? Thanks~

#250 From: "dw71273" <dw71273@...>
Date: Wed Nov 12, 2008 12:09 pm
Subject: asp.net MVC with YUI datasource/datatable
dw71273
Offline Offline
Send Email Send Email
 
Hi - I'm trying to use the YUI datasource with a datatable in an
ASP.NET 3.5 MVC application, and am not having much luck.  I've set up
the javascript to test out a simple JSON Result from a controller
method called GetArtists():

     var myDataSource = new YAHOO.util.DataSource("/Admin/GetArtists");
     myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
     myDataSource.responseSchema = { fields: ["ID", "Name"] };

     var myDataTable = new YAHOO.widget.DataTable("basic",
     myColumnDefs, myDataSource, { caption: "DataTable Caption" });

This example is a sripped down version of the "Basic Example" example
in the YUI datatable page, and works when I use another datasource
with JSARRAY, so I've isolated the issue to the datasource.  My
controller method isn't even getting called and the datatable displays
just "Data error." and I'm wondering if anyone has had any luck
populating a datasource with ASP.NET MVC controller methods?

Thanks, Dennis

#249 From: Pallavi Mishra <careers.catalytic@...>
Date: Wed Nov 12, 2008 6:21 am
Subject: Exciting Opportuities for DOTNET Developers and Team Leads
careers.cata...
Offline Offline
Send Email Send Email
 

 

 

Hi,

 

We have immediate multiple openings for Developers / Sr. Developers / Leads on .NET with 5+ years of experience along with “Silver light”.

 

Job Location – New York

Duration -         6 months (Extendable to 1 year)

Yrs of Exp - 5 to 8 Yrs

Mode -   Corp to Corp

 

Please send your consultants resume to rajan.sammeta@... along with the hourly rate ASAP to proceed forward.

 

For more information about Catalytic Software please log on to www.catalytic.com

 

Regards

Rajan Sammeta



Add more friends to your messenger and enjoy! Invite them now.

#248 From: "Vinit Yadav" <vinit1_yadav2@...>
Date: Tue Sep 23, 2008 4:42 pm
Subject: Get yahoo buddy details
vinit1_yadav2
Offline Offline
Send Email Send Email
 
Hello friends,
I'm developing an application which is just a clone of yahoo
messenger. It is windows application not a website. I get the
buddylist(user id) for a user who logges in. But my problem is I want
full information about a user. Means user's first name, last name etc.

I got the full address book but in that there is no field of user_id
so that I can't map address book directly to my buddy list.

At the end I want user name using its yahoo user_id. Is there any way
of doing same in a windows application.

Thanks
-Vinit

#247 From: "Brian Cantoni" <bcantoni@...>
Date: Mon Sep 22, 2008 4:59 am
Subject: Re: Using the weather rss feed
brian.cantoni
Offline Offline
Send Email Send Email
 
--- In ydn-dotnet@yahoogroups.com, "betheljt" <betheljt@...> wrote:
>
> I'm working on an application that will display current weather
> information. I'm able to be everything I need from the xml rss feed
> except the picture of current weather conditions (sun, sun with a cloud
> in front of it, etc). The xml doesn't seem to return an image or a url
> to an image. Am I missing something? Can anyone explain how to do
> this?

It looks like the image you're looking for is embedded in the item
description element:

<description><![CDATA[
<img src="http://l.yimg.com/us.yimg.com/i/us/we/52/33.gif"/><br />
<b>Current Conditions:</b><br />
Fair, 63 F<BR />
<BR /><b>Forecast:</b><BR />
Sun - Partly Cloudy. High: 69 Low: 57<br />
Mon - Partly Cloudy. High: 77 Low: 57<br />
<br />
<a
href="http://us.rd.yahoo.com/dailynews/rss/weather/Sunnyvale__CA/*http://weather\
.yahoo.com/forecast/USCA1116_f.html">Full
Forecast at Yahoo! Weather</a><BR/>
(provided by The Weather Channel)<br/>
]]></description>

If your code peeks inside the <description> contents, you should be
able to pluck out the first image inside.

Brian Cantoni
YDN Engineering

#246 From: "ivanmfrias" <frias.ivan@...>
Date: Sat Sep 20, 2008 8:59 pm
Subject: get yahoo location id by town name
ivanmfrias
Offline Offline
Send Email Send Email
 
Hi there!
I am programming a client application wich will use yahoo weather API
. My main problem now is to find a way to get the yahoo location id
based in a town name. I will get the town name from the ip of the
local machine, and from there i pretend to know wich is the weather
forecast ...But i don't know how to do that . I've found a way of
doing that for UK, but not for any country I choose ...
Has anyone had the same problem ? Please, share your solution, or give
me some advice in order to proceed :)

Thanks again,
Ivan Frias

#245 From: "betheljt" <betheljt@...>
Date: Fri Sep 19, 2008 9:17 pm
Subject: Using the weather rss feed
betheljt
Offline Offline
Send Email Send Email
 
I'm working on an application that will display current weather
information.  I'm able to be everything I need from the xml rss feed
except the picture of current weather conditions (sun, sun with a cloud
in front of it, etc).  The xml doesn't seem to return an image or a url
to an image.  Am I missing something?  Can anyone explain how to do
this?

Thanks....

#244 From: "farid_974" <farid_974@...>
Date: Wed Aug 6, 2008 10:00 am
Subject: Re: 403 Error when retrieving Contact Book
farid_974
Offline Offline
Send Email Send Email
 
It's this statement, all others are working fine...
XmlDocument doc =
auth.GetAuthenticatedServiceXmlDocu ment(address) ;


Thanks for your help :)


--- In ydn-dotnet@yahoogroups.com, James Maclory <jamesmaclory@...> wrote:
>
> Hi there,
> When did you get the error, which statement caused this error?
>
>
>
> ----- Original Message ----
> From: farid_974 <farid_974@...>
> To: ydn-dotnet@yahoogroups.com
> Sent: Wednesday, August 6, 2008 3:18:46 PM
> Subject: [ydn-dotnet] 403 Error when retrieving Contact Book
>
>
> Hi everyone,
>
> I'm trying to retrieve all email address for the contact book in order
> to invite people on my website.
>
> I'm using ASP.NET 2.0, the .NET framework 2.0 and C#
> When i'm trying to retrieve the XML, i got an error 403...
>
> Actually i'm just using these code:
>
> Authentication auth = Session["Auth" ] as Authentication;
> if (Request.QueryStrin g["token" ] != null &&
> Request.QueryString ["token"] .Length > 0)
> {
> if (auth.IsValidSigned Url(Request. Url) == true)
> {
> auth.Token = Request.QueryString ["token"] ;
> auth.UpdateCredenti als();
> Response.Write( "ok");
> }
> else
> {
> Response.Write( "error");
> }
> }
>
> if (auth.IsCredentiale d == true)
> {
> string url =
> "http://address. yahooapis. com/v1/searchCon tacts?format=
xml&fields= name,email";
> url += "&appid=" + auth.ApplicationId;
> url += "&wssid=" + auth.WssId;
>
> Uri address = new Uri(url);
>
> XmlDocument doc =
> auth.GetAuthenticatedServiceXmlDocu ment(address) ;
>
> }
> else
> {
> Response.Write( "Not authenticated" );
> }
>
> Please, help me to do this because i don't know why i don't have acces.
>

#243 From: James Maclory <jamesmaclory@...>
Date: Wed Aug 6, 2008 9:01 am
Subject: Re: 403 Error when retrieving Contact Book
jamesmaclory
Offline Offline
Send Email Send Email
 
Hi there,
When did you get the error, which statement caused this error?

----- Original Message ----
From: farid_974 <farid_974@...>
To: ydn-dotnet@yahoogroups.com
Sent: Wednesday, August 6, 2008 3:18:46 PM
Subject: [ydn-dotnet] 403 Error when retrieving Contact Book

Hi everyone,

I'm trying to retrieve all email address for the contact book in order
to invite people on my website.

I'm using ASP.NET 2.0, the .NET framework 2.0 and C#
When i'm trying to retrieve the XML, i got an error 403...

Actually i'm just using these code:

Authentication auth = Session["Auth" ] as Authentication;
if (Request.QueryStrin g["token" ] != null &&
Request.QueryString ["token"] .Length > 0)
{
if (auth.IsValidSigned Url(Request. Url) == true)
{
auth.Token = Request.QueryString ["token"] ;
auth.UpdateCredenti als();
Response.Write( "ok");
}
else
{
Response.Write( "error");
}
}

if (auth.IsCredentiale d == true)
{
string url =
"http://address. yahooapis. com/v1/searchCon tacts?format= xml&fields= name,email";
url += "&appid=" + auth.ApplicationId;
url += "&wssid=" + auth.WssId;

Uri address = new Uri(url);

XmlDocument doc =
auth.GetAuthenticat edServiceXmlDocu ment(address) ;

}
else
{
Response.Write( "Not authenticated" );
}

Please, help me to do this because i don't know why i don't have acces.



#242 From: "farid_974" <farid_974@...>
Date: Wed Aug 6, 2008 7:18 am
Subject: 403 Error when retrieving Contact Book
farid_974
Offline Offline
Send Email Send Email
 
Hi everyone,

I'm trying to retrieve all email address for the contact book in order
to invite people on my website.


I'm using ASP.NET 2.0, the .NET framework 2.0 and C#
When i'm trying to retrieve the XML, i got an error 403...

Actually i'm just using these code:

Authentication auth = Session["Auth"] as Authentication;
         if (Request.QueryString["token"] != null &&
Request.QueryString["token"].Length > 0)
         {
             if (auth.IsValidSignedUrl(Request.Url) == true)
             {
                 auth.Token = Request.QueryString["token"];
                 auth.UpdateCredentials();
                 Response.Write("ok");
             }
             else
             {
                 Response.Write("error");
             }
         }

         if (auth.IsCredentialed == true)
         {
             string url =
"http://address.yahooapis.com/v1/searchContacts?format=xml&fields=name,email";
             url += "&appid=" + auth.ApplicationId;
             url += "&wssid=" + auth.WssId;

             Uri address = new Uri(url);

             XmlDocument doc =
auth.GetAuthenticatedServiceXmlDocument(address);

         }
         else
         {
             Response.Write("Not authenticated");
         }


Please, help me to do this because i don't know why i don't have acces.

#241 From: "gpaslanis" <gaslanis@...>
Date: Fri Aug 1, 2008 4:52 pm
Subject: Re: Javascript reformat document?
gpaslanis
Offline Offline
Send Email Send Email
 
--- In ydn-dotnet@yahoogroups.com, James Maclory <jamesmaclory@...>
wrote:
>
> yeah,u can view the IVR.
>
>
>
> ----- Original Message ----
> From: gpaslanis <gaslanis@...>
> To: ydn-dotnet@yahoogroups.com
> Sent: Friday, August 1, 2008 1:06:37 AM
> Subject: [ydn-dotnet] Javascript reformat document?
>
>
> Hello all, I posted this in the YUI group but no response. Maybe it
> belongs here:
>
> Unfortunately we are forced to use VWD 2008 Express that apparently
> does not reformat JavaScript. Already tried
> http://javascript. about.com/ library/blformat .htm, but looking
for
> something better. JSLint does a great job analyzing the code, but
does
> anyone know of a utility to reformat/indent JavaScript?
>
> Any help appreciated, thanks!
>
Thanks for the reply, but we are not looking for another IDE.
Possibly a webservice call or utility just to reformat/indent the
javascript and paste back into VWD2008.

#240 From: James Maclory <jamesmaclory@...>
Date: Fri Aug 1, 2008 1:42 am
Subject: Re: Javascript reformat document?
jamesmaclory
Offline Offline
Send Email Send Email
 
yeah,u can view the IVR.

----- Original Message ----
From: gpaslanis <gaslanis@...>
To: ydn-dotnet@yahoogroups.com
Sent: Friday, August 1, 2008 1:06:37 AM
Subject: [ydn-dotnet] Javascript reformat document?

Hello all, I posted this in the YUI group but no response. Maybe it
belongs here:

Unfortunately we are forced to use VWD 2008 Express that apparently
does not reformat JavaScript. Already tried
http://javascript. about.com/ library/blformat .htm, but looking for
something better. JSLint does a great job analyzing the code, but does
anyone know of a utility to reformat/indent JavaScript?

Any help appreciated, thanks!



#239 From: "Vinit Yadav" <vinit1_yadav2@...>
Date: Thu Jul 31, 2008 7:02 pm
Subject: Re: Invisible buddy.
vinit1_yadav2
Offline Offline
Send Email Send Email
 
Hi James,
I don't know much about the IVR. And my question is also not related to
IVR. So can you help me out with my original question.

And if you want any help from my side then let me know in detail.

#238 From: "gpaslanis" <gaslanis@...>
Date: Thu Jul 31, 2008 5:06 pm
Subject: Javascript reformat document?
gpaslanis
Offline Offline
Send Email Send Email
 
Hello all, I posted this in the YUI group but no response. Maybe it
belongs here:

Unfortunately we are forced to use VWD 2008 Express that apparently
does not reformat JavaScript. Already tried
http://javascript.about.com/library/blformat.htm, but looking for
something better. JSLint does a great job analyzing the code, but does
anyone know of a utility to reformat/indent JavaScript?

Any help appreciated, thanks!

#237 From: James Maclory <jamesmaclory@...>
Date: Tue Jul 29, 2008 6:25 am
Subject: Re: Re: Ask how to get yahoo messenger message using vb .net
jamesmaclory
Offline Offline
Send Email Send Email
 
Yes,an application using C# or VB.NET!

----- Original Message ----
From: yonghan79 <yonghan79@...>
To: ydn-dotnet@yahoogroups.com
Sent: Tuesday, July 29, 2008 1:33:39 PM
Subject: [ydn-dotnet] Re: Ask how to get yahoo messenger message using vb .net

Is it for web application? ?



#236 From: "yonghan79" <yonghan79@...>
Date: Tue Jul 29, 2008 5:33 am
Subject: Re: Ask how to get yahoo messenger message using vb .net
yonghan79
Offline Offline
Send Email Send Email
 
Is it for web application??

#235 From: James Maclory <jamesmaclory@...>
Date: Tue Jul 29, 2008 2:25 am
Subject: Re: Ask how to get yahoo messenger message using vb .net
jamesmaclory
Offline Offline
Send Email Send Email
 
Hi there,
I've create some applications about IVR, which can be used to send message in voice,you can visit these articles:
http://www.codeproject.com/KB/aspnet/IVR.aspx
http://www.codeproject.com/KB/aspnet/IVRAndFacebook.aspx
http://www.codeproject.com/KB/aspnet/IVRAndGoogleCalendar.aspx

----- Original Message ----
From: yonghan79 <yonghan79@...>
To: ydn-dotnet@yahoogroups.com
Sent: Friday, July 25, 2008 9:55:42 PM
Subject: [ydn-dotnet] Ask how to get yahoo messenger message using vb .net

Hi all, i want to ask how to get message that are sent by my friend
from yahoo messenger by using vb.net.Can someone teach me
please..Thanks a lot..



#234 From: James Maclory <jamesmaclory@...>
Date: Tue Jul 29, 2008 2:22 am
Subject: Re: Invisible buddy.
jamesmaclory
Offline Offline
Send Email Send Email
 
Hi there,
I've read your artilce,I've been working on IVR now,what is your suggestion?

----- Original Message ----
From: Vinit Yadav <vinit1_yadav2@...>
To: ydn-dotnet@yahoogroups.com
Sent: Saturday, July 26, 2008 3:03:59 AM
Subject: [ydn-dotnet] Invisible buddy.

Hello friends.
I'm developing an application that is the exact clone of the Yahoo
Messenger
with some added functionality.

In that added functionality I want to show which of the Buddy is
online/Offline/ Invisible.
The online and offline was done and here is the path to get that thing
wokring http://opi.yahoo. com/online? u=userid& m=g&t=2(replace userid by
urs)

But I'm having hard time in finding any way which will let me get the
user's status who is Invisible.

I'm using .Net and C# for my application.

Thanks
-Vinit



#233 From: "Vinit Yadav" <vinit1_yadav2@...>
Date: Fri Jul 25, 2008 7:03 pm
Subject: Invisible buddy.
vinit1_yadav2
Offline Offline
Send Email Send Email
 
Hello friends.
I'm developing an application that is the exact clone of the Yahoo
Messenger with some added functionality.

In that added functionality I want to show which of the Buddy is
online/Offline/Invisible.
The online and offline was done and here is the path to get that thing
wokring http://opi.yahoo.com/online?u=userid&m=g&t=2(replace userid by
urs)

But I'm having hard time in finding any way which will let me get the
user's status who is Invisible.

I'm using .Net and C# for my application.

Thanks
-Vinit

Messages 233 - 263 of 263   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

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