我是Jboss的新手,并在我的jboss代码中使用rest easy client进行连接。以下是代码 -
foreach ($all_users as $this_user) {
try {
$stmt = $db->prepare('INSERT INTO fav_colors (name, color, whattime) VALUES (:name, :color, :whattime)');
$stmt->bindValue(':name', $this_user[name]);
$stmt->bindValue(':color', $this_user[color]);
$stmt->bindValue(':whattime', $this_user[time]);
$stmt->execute();
} catch(PDOException $e) {
catchMySQLerror($e);
echo "ERROR writing row to table";
}
}
连接启用SSL的服务器时,获取证书错误" HTTP状态500 - org.jboss.resteasy.spi.UnhandledException:javax.net.ssl.SSLException:证书中的主机名没有匹配&#34 ;
此刻我们无法更改证书,但有没有办法信任任何证书?我搜索了许多帖子,但没有任何帮助。
任何人都可以告诉我这个问题的解决方案是什么。
答案 0 :(得分:0)
我得到了以下解决方案:
select a.time as time1, a.value as value1, b.time as time2, b.value as value2
from my_table as a
inner join my_table as b on a.time = b.time
and a.c_id= 4
and b.c_id= 5;