![]() |
2012-02-14
, 15:40
|
Posts: 246 |
Thanked: 2,574 times |
Joined on Jan 2010
@ Egypt, Cairo
|
#111
|
![]() |
2012-02-14
, 16:03
|
Posts: 262 |
Thanked: 206 times |
Joined on May 2010
|
#112
|
Hi DataGhost, do you know what is the return value of
WhatsAppBG.getInstance().getAppProperty(Constants. MIDLET_VERSION) ?
![]() |
2012-02-14
, 21:23
|
Posts: 63 |
Thanked: 37 times |
Joined on Jul 2010
|
#113
|
![]() |
2012-02-14
, 23:59
|
Posts: 323 |
Thanked: 209 times |
Joined on Oct 2011
@ Tampico, México
|
#114
|
![]() |
2012-02-15
, 00:51
|
|
Posts: 288 |
Thanked: 175 times |
Joined on Oct 2010
@ Petaling Jaya, Selangor, Malaysia
|
#115
|
The Following User Says Thank You to ajack For This Useful Post: | ||
![]() |
2012-02-15
, 05:11
|
Posts: 49 |
Thanked: 9 times |
Joined on Oct 2010
@ Borneo
|
#116
|
Its no need for that , it returns the version of the whatsapp client i think , its not used anywhere (user-agent maybe ... useless)
public void login() throws IOException, FunXMPP.LoginFailureException, FunXMPP.CorruptStreamException {
this.out.streamStart(this.connection.domain, this.connection.resource);
System.err.println("sent stream start");
sendFeatures();
System.err.println("sent features");
sendAuth();
System.err.println("sent auth");
this.in.streamStart();
System.err.println("read stream start");
String challengeData = readFeaturesAndChallenge();
System.err.println("read features and challenge");
sendResponse(challengeData);
System.err.println("sent response");
readSuccess();
}
![]() |
2012-02-15
, 05:39
|
|
Posts: 1,079 |
Thanked: 1,019 times |
Joined on Mar 2010
|
#117
|
The Following 4 Users Say Thank You to stickymick For This Useful Post: | ||
![]() |
2012-02-15
, 07:17
|
Posts: 27 |
Thanked: 2 times |
Joined on Feb 2012
@ Lebanon
|
#118
|
The Following User Says Thank You to whatsappneeder For This Useful Post: | ||
![]() |
2012-02-15
, 08:07
|
Posts: 28 |
Thanked: 28 times |
Joined on Mar 2011
@ Hong Kong
|
#119
|
any email client? its much closer to what you are describing than whatsapp(dont really get the deal with whatsapp anyway, its just another messenger, and not even all that good...)
and doesnt whatsapp start to charge 2$ a year the first year? if so, unlike email its not free
![]() |
2012-02-15
, 08:48
|
Posts: 642 |
Thanked: 486 times |
Joined on Aug 2008
|
#120
|
but if we look at the
this.out.streamStart() will send the resource right? i'm still trying to get a connection to the server, whatever data i send, the server will close the connection after 10 seconds.. have you managed to get an active connection to WA server?