Problems with hotmail

2 views
Skip to first unread message

DanielAL

unread,
Jun 1, 2008, 11:44:08 AM6/1/08
to ContactsReader
First of all... congratulations!, great job!!

But I'm trying to use your web service but I have some problems with
hotmail accounts.The error is: "Application error! Try Later.

What may I do?!

Thanks!

swapo

unread,
Jul 19, 2008, 5:44:20 PM7/19/08
to ContactsReader
this was a language problem; the hotmail reader did not support
hotmail spanish.
that has been fixed now.
Cheers

Harry

unread,
Aug 19, 2008, 4:47:00 AM8/19/08
to ContactsReader
I downloaded the source code from http://www.ideabubbling.com/contactsreader.aspx.

Still I see errors in below 2 email clients:
1. Hotmail
Error: Input array is longer than the number of columns in this table

2. AOL
Error: Application error! Try later..

Would you be so kind to post latest code or help me to resolve above
issues?

Thanks,

Harry

YSRB

unread,
Aug 28, 2008, 7:02:30 PM8/28/08
to ContactsReader
Hi,

We are having the same problem as well. We've tried using Live and MSN
accounts and it doesn't work.

Hope you can fix this soon.



On Aug 19, 6:47 pm, Harry <vachhan...@gmail.com> wrote:
> I downloaded the source code fromhttp://www.ideabubbling.com/contactsreader.aspx.

swapo

unread,
Sep 10, 2008, 7:35:55 AM9/10/08
to ContactsReader
Hi,
sorry i've not been able to reply to your concerns.
The problems you were having with the webservice at www.vokacom.net
have been fixed.
however, those codes are with ideabubbling and they chose when to
release the next version of the dll with the updates. the role of
www.vokacom.net is to work with idleabubbling.com, not to be in
competition and release rival dlls. only ideabubbling.com releases new
codes and dlls and they decide when, not vokacom.net.
Vokacom is just happy to be a minor player in the release of the dlls
Cheers

On Aug 19, 9:47 am, Harry <vachhan...@gmail.com> wrote:
> I downloaded the source code fromhttp://www.ideabubbling.com/contactsreader.aspx.
> > Cheers- Hide quoted text -
>
> - Show quoted text -

Harry

unread,
Sep 11, 2008, 6:09:17 AM9/11/08
to ContactsReader
Thank you for your reply.

HotMail problem is fixed but AOL problem (Application error! Try
later...) is still there.

I used below code to get aol contacts:

Dim dt As New DataTable
Dim wsC As New net.vokacom.www.ContactsService
dt = wsC.GetContacts("UserName", "Password", "aol.com").Tables(0)

Can you please suggest me what I am doing wrong?

Thanks,

Haresh


On Sep 10, 4:35 pm, swapo <nanafr...@yahoo.co.uk> wrote:
> Hi,
> sorry i've not been able to reply to your concerns.
> The problems you were having with the webservice atwww.vokacom.net
> have been fixed.
> however, those codes are with ideabubbling and they chose when to
> release the next version of the dll with the updates. the role ofwww.vokacom.netis to work with idleabubbling.com, not to be in
> competition and release rival dlls. only ideabubbling.com releases new
> codes and dlls and they decide when, not vokacom.net.
> Vokacom is just happy to be a minor player in the release of the dlls
> Cheers
>
> On Aug 19, 9:47 am, Harry <vachhan...@gmail.com> wrote:
>
>
>
> > I downloaded the source code fromhttp://www.ideabubbling.com/contactsreader.aspx.
>
> > Still I see errors in below 2 email clients:
> > 1. Hotmail
> > Error: Input array is longer than the number of columns in this table
>
> > 2. AOL
> > Error: Application error! Try later..
>
> > Would you be so kind to post latest code or help me to resolve above
> > issues?
>
> > Thanks,
>
> > Harry
>
> > On Jul 20, 2:44 am, swapo <nanafr...@yahoo.co.uk> wrote:
>
> > > this was a language problem; the hotmail reader did not support
> > > hotmail spanish.
> > > that has been fixed now.
> > > Cheers- Hide quoted text -
>
> > - Show quoted text -- Hide quoted text -

sandy sharma

unread,
Oct 4, 2008, 3:57:51 AM10/4/08
to ContactsReader
Hot mail is not working well so can anyone have an idea to sort it.

On Aug 19, 1:47 pm, Harry <vachhan...@gmail.com> wrote:
> I downloaded the source code fromhttp://www.ideabubbling.com/contactsreader.aspx.

Hgear

unread,
Oct 12, 2008, 2:53:45 PM10/12/08
to ContactsReader
I have attached hotmail.cs to this post which is 20.1 kb. The fix was
in the last section. INstead of doing a post we are going to do a get
on the GetContacts page on hotmail. Please feel free to clean up the
code as needed.

I have hardcoded the GetCOntacts url with the n= value which seems to
be time generated random number. In my testing it worked all the time
so I have left it as a hardcoded value : ) . Again the entire
hotmail.cs file is attached to the group.

string strCSVUrl = "http://by126w.bay126.mail.live.com/
mail/GetContacts.aspx?n=1967317953";


//http://by112w.bay112.mail.live.com/mail/options.aspx?
subsection=26&n=938064379
//string strCSVUrl = strContactsCSV;
string strCSVUrl = "http://by126w.bay126.mail.live.com/
mail/GetContacts.aspx?n=1967317953";
HttpWebRequest webReqCSVASPX =
(HttpWebRequest)WebRequest.Create(strCSVUrl);
string strCSVBody = strVIEWSTATE + "&" + strmt + "&" +
strExportButton + "&" + strEVENTVALIDATION;
webReqCSVASPX.Method = Utility.Get ;
webReqCSVASPX.UserAgent = Utility.UserAgent;
webReqCSVASPX.KeepAlive = true;
webReqCSVASPX.Referer = strExpContactsUrl;
webReqCSVASPX.AllowAutoRedirect = true;
webReqCSVASPX.ContentType = Utility.ContentTypeUrlEncoded;
webReqCSVASPX.UseDefaultCredentials = true;
webReqCSVASPX.CookieContainer = new CookieContainer();
webReqCSVASPX.CookieContainer.Add(ccWebResLogin);

webReqCSVASPX.CookieContainer.Add(ccWebResMailLiveComASPX);
webReqCSVASPX.CookieContainer.Add(ccWebResByBayASPX);

// StreamWriter sw4 = new
StreamWriter(webReqCSVASPX.GetRequestStream());
//sw4.Write(strCSVBody); sw4.Close();

Harry

unread,
Oct 13, 2008, 6:27:15 AM10/13/08
to ContactsReader
Hello swapo,

Thank you very much for your help regarding HotMail. HotMail problem
is fixed, but I am facing error in AOL. Below is the code I am using
to fetch AOL contacts:

Dim dt As New DataTable
Dim wsC As New net.vokacom.www.ContactsService
dt = wsC.GetContacts("UserName", "Password", "aol.com").Tables(0)

I am getting "Application error! try later..." error.

Would you be so kind to update me if its resolved in vokacom
webservice or not. If its resolved there then can you please tell me
what I am doing wrong in the code?

Thanks,

Haresh


On Sep 10, 4:35 pm, swapo <nanafr...@yahoo.co.uk> wrote:
> Hi,
> sorry i've not been able to reply to your concerns.
> The problems you were having with the webservice atwww.vokacom.net
> have been fixed.
> however, those codes are with ideabubbling and they chose when to
> release the next version of the dll with the updates. the role ofwww.vokacom.netis to work with idleabubbling.com, not to be in
> competition and release rival dlls. only ideabubbling.com releases new
> codes and dlls and they decide when, not vokacom.net.
> Vokacom is just happy to be a minor player in the release of the dlls
> Cheers
>
> On Aug 19, 9:47 am, Harry <vachhan...@gmail.com> wrote:
>
>
>
> > I downloaded the source code fromhttp://www.ideabubbling.com/contactsreader.aspx.
>
> > Still I see errors in below 2 email clients:
> > 1. Hotmail
> > Error: Input array is longer than the number of columns in this table
>
> > 2. AOL
> > Error: Application error! Try later..
>
> > Would you be so kind to post latest code or help me to resolve above
> > issues?
>
> > Thanks,
>
> > Harry
>
> > On Jul 20, 2:44 am, swapo <nanafr...@yahoo.co.uk> wrote:
>
> > > this was a language problem; the hotmail reader did not support
> > > hotmail spanish.
> > > that has been fixed now.
> > > Cheers- Hide quoted text -
>
> > - Show quoted text -- Hide quoted text -
Reply all
Reply to author
Forward
0 new messages