Android Question Http legacy

Andre Luiz Dominiquini

Member
Licensed User
Hi , I happened compile the following error:

Compiling generated Java code. Error
B4A line: 55
Log(Response.GetString(\
javac 1.8.0_66
src\anywheresoftware\b4a\samples\mysql\httputils2service.java:162: error: cannot access ParseException
anywheresoftware.b4a.keywords.Common.Log(_response.GetString("UTF8"));
^
class file for org.apache.http.ParseException not found


Has anyone experienced this problem? Can you help ?

Thank's
 

Johan Schoeman

Expert
Licensed User
Longtime User
Hi , I happened compile the following error:

Compiling generated Java code. Error
B4A line: 55
Log(Response.GetString(\
javac 1.8.0_66
src\anywheresoftware\b4a\samples\mysql\httputils2service.java:162: error: cannot access ParseException
anywheresoftware.b4a.keywords.Common.Log(_response.GetString("UTF8"));
^
class file for org.apache.http.ParseException not found


Has anyone experienced this problem? Can you help ?

Thank's
Seems as if you might be missing a library (jar) in your project. Either missing from your additional library folder or the B4A project expects the #Additionaljar statement...your project is looking for Class org.apache.http.ParseException which will in all probability be in an external jar file.
 
Upvote 0

MarcoRome

Expert
Licensed User
Longtime User
Hi , I happened compile the following error:

Compiling generated Java code. Error
B4A line: 55
Log(Response.GetString(\
javac 1.8.0_66
src\anywheresoftware\b4a\samples\mysql\httputils2service.java:162: error: cannot access ParseException
anywheresoftware.b4a.keywords.Common.Log(_response.GetString("UTF8"));
^
class file for org.apache.http.ParseException not found


Has anyone experienced this problem? Can you help ?

Thank's
Pls Andre the next time send this Thread in "B4A Question".
Thank you
Marco
 
Upvote 0
Top