How to Call webservice of Yahoo to get the Contact list.. I have created the Application ID and i am able to get the token value.. I need help to get the Webservice Session ID (wssid) to call webservice.. the code is as follows: Dim auth As New Yahoo.Authentication("XXXXXXXXX-", "XXXXXXXXXX") Session("Auth") = auth Dim success As Boolean = False If Not Session("Auth") Is Nothing Then auth = DirectCast(Session("Auth"), Yahoo.Authentication) End If If (Not Request.QueryString("token") Is Nothing) _ AndAlso Request.QueryString("token").Length > 0 Then ' Make sure the call is valid If auth.IsValidSignedUrl(Request.Url) = True Then success = True ' Save the user token. It is valid for two weeks auth.Token = Request.QueryString("token")
kokilaB
Posts
-
Web service call to get Yahoomail contacts -
grab contacts from Social networkThanks. Third party tools are available for this but i want to do it by own.. as you said i have to develop one for each site.. searching for the API or code to implement it. Till now i dint get any solution for this. So i posted here.. Thanks for your help.. Kokila
-
grab contacts from Social networkHi thanks for your reply.. Need to develop web application to grab the contacts from Facebook,gamil,myspace...site if the userID and password is given in application. Thanks Kokila
-
grab contacts from Social networkNeed to develop web application to grab the contacts from Facebook,gamil,myspace...site if the userID and password is given in application.
-
grab contacts from Social networkPlease give me some idea to grab the contacts from myspace,Linkedin account.
-
Language settings(Culture info)Calender control is showing the month names in some other language , Culture information was set with some other language, Can we change the settings?
-
want to read a field line by line.Ya I got the result Dim a() As Char = {"" & Chr(10) & ""} ds = bl.GetStepDS(record(0)) Dim strtest As String = Nothing strtest = ds.Tables(0).Rows(0).Item(0).ToString() Dim strarray() As String = strtest.Split(a) You will get each line in array strarray. Thanks, Kokila
-
want to read a field line by line.Thanks for your immediate help.. Storing the data is not through Program its from another DB. so i cant concenrate on insert part.. Kokila B
-
want to read a field line by line.Hi, I having a column named Steps which has more than five steps in it with line break now i want to read it line by line. Example: Steps has the following data in one field. 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. i need to read it as 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. Can anybody help me please very urgent... kokila B
-
Problem in Integer array in VB.netMy code is like this to assign values to an integer array but i am getting an error like Object reference not set to an instance of an object... Dim StepNumber() As Integer = Nothing Dim Aindx As Integer = 0 ds = bl.GetStepDS(Session.Item("TestCase").ToString()) For Each record As DataRow In ds.Tables(0).Rows StepNumber(Aindx) = Aindx StepNameList(Aindx) = record.Item(0).ToString() Aindx = Aindx + 1 Next Can anybody please help me how to create and use Integer array? Thanks in advance
-
how to set ActiveViewIndex?I wrongly placed the code in page load. it should be in MyWizard.Init. Now its working. Thank you.:-D kokila B
-
how to set ActiveViewIndex?Hello Can anybody help me how to set ActiveViewIndex in Wizard control? I am getting this error while binding the wizard dynamically.. ActiveViewIndex is being set to '2'. It must be smaller than the current number of View controls '2'. For dynamically added views, make sure they are added before or in Page_PreInit event. Parameter name: value Thank in advance kokila