我们的网站使用的是http 1.0,在使用https时,Chrome中未处理请求。 但是当在Chrome,Firefox和IE中使用http时,它可以工作。 以下是网络错误消息。
package com.rimikri.smartpedi;
public class UserContact {
public String contactMethod, phoneValue, name;
public UserContact() {
}
public UserContact(String contactMethod, String phoneValue, String name) {
this.contactMethod = contactMethod;
this.phoneValue = phoneValue;
this.name = name;
}
}
有人可以给我一些有关这个问题的建议吗?