Cant access data in console

Hi

I can access everything in the console except the data tab. I receive a timeout error. I also get a timeout in my android application when trying to save data.

Hi Bradley!

This problem still occurs?
Could you provide your application id?
Regards,
Kate.

Hi Kate

Seems as though it was resolved already. Thank you

Ok i think i broke it again. I am trying to save an instance of the following class:

public class University extends BackendlessObject<University>{

private static final String TAG = University.class.getSimpleName();

private String name;
private String nick;
private GeoPoint location;
private String country;
private String city;
private boolean needsImagery;

public University(){
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getNick() {
    return nick;
}

public void setNick(String nick) {
    this.nick = nick;
}

public GeoPoint getLocation() {
    return location;
}

public void setLocation(GeoPoint location) {
    this.location = location;
}

public String getCountry() {
    return country;
}

public void setCountry(String country) {
    this.country = country;
}

public String getCity() {
    return city;
}

public void setCity(String city) {
    this.city = city;
}

public boolean isNeedsImagery() {
    return needsImagery;
}

public void setNeedsImagery(boolean needsImagery) {
    this.needsImagery = needsImagery;
}

}

and the BackendlessObject is a base class:

public abstract class BackendlessObject<T> {

private String objectId;
private Date created;
private Date updated;

public String getObjectId()
{
    return objectId;
}

public void setObjectId( String objectId) {
    this.objectId = objectId;
}

public Date getCreated()
{
    return created;
}

public void setCreated( Date created )
{
    this.created = created;
}

public Date getUpdated()
{
    return updated;
}

public void setUpdated( Date updated )
{
    this.updated = updated;
}

public void save(AsyncCallback&lt;T&gt; saveCallBack) {
    Backendless.Persistence.save((T)this, saveCallBack);
}

}
public abstract class BackendlessObject<T> {

private String objectId;
private Date created;
private Date updated;

public String getObjectId()
{
    return objectId;
}

public void setObjectId( String objectId) {
    this.objectId = objectId;
}

public Date getCreated()
{
    return created;
}

public void setCreated( Date created )
{
    this.created = created;
}

public Date getUpdated()
{
    return updated;
}

public void setUpdated( Date updated )
{
    this.updated = updated;
}

}

My application ID is A4EE2F49-A073-AF04-FF1D-A8B645BE7300

I am having the same problem. I have not changed anything in my request on the front end. It worked an hour ago. Now it just hangs. This is bad news for my startup company that is evaluating the product.

It suddenly just started working without any changes on my part. This is a major concern if this happens to be a normal occurrence.

Yes seems as though mine has also started working again. This seems like a very nice platform, but obviously stability is very important.

There was a brief outage which we quickly took care of. Only a subset of applications was impacted.

Regards,
Mark