Fisheye: Tag c8c8851ebc6c34fc0e8e13c8a880fe21fc03b8cc refers to a dead (removed) revision in file `lams_bb_integration/.cvsignore'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_bb_integration/WEB-INF/bb-manifest.xml =================================================================== diff -u -rb1590ce5975020aa0f70e73829abfcb9ef14262a -rc7ac3a070c6c8bc41ded5abe307df2e05b2c39d7 --- lams_bb_integration/WEB-INF/bb-manifest.xml (.../bb-manifest.xml) (revision b1590ce5975020aa0f70e73829abfcb9ef14262a) +++ lams_bb_integration/WEB-INF/bb-manifest.xml (.../bb-manifest.xml) (revision c7ac3a070c6c8bc41ded5abe307df2e05b2c39d7) @@ -5,7 +5,7 @@ - + Index: lams_bb_integration/build.xml =================================================================== diff -u -r8af1746d179f41095b074fef269722c6689b39eb -rc7ac3a070c6c8bc41ded5abe307df2e05b2c39d7 --- lams_bb_integration/build.xml (.../build.xml) (revision 8af1746d179f41095b074fef269722c6689b39eb) +++ lams_bb_integration/build.xml (.../build.xml) (revision c7ac3a070c6c8bc41ded5abe307df2e05b2c39d7) @@ -2,7 +2,7 @@ - + Index: lams_bb_integration/src/org/lamsfoundation/ld/integration/blackboard/LamsSecurityUtil.java =================================================================== diff -u -r8af1746d179f41095b074fef269722c6689b39eb -rc7ac3a070c6c8bc41ded5abe307df2e05b2c39d7 --- lams_bb_integration/src/org/lamsfoundation/ld/integration/blackboard/LamsSecurityUtil.java (.../LamsSecurityUtil.java) (revision 8af1746d179f41095b074fef269722c6689b39eb) +++ lams_bb_integration/src/org/lamsfoundation/ld/integration/blackboard/LamsSecurityUtil.java (.../LamsSecurityUtil.java) (revision c7ac3a070c6c8bc41ded5abe307df2e05b2c39d7) @@ -158,12 +158,14 @@ HttpURLConnection httpConn = (HttpURLConnection)conn; + if (httpConn.getResponseCode() != HttpURLConnection.HTTP_OK) { logger.error("HTTP Response Code: " + httpConn.getResponseCode() + ", HTTP Response Message: " + httpConn.getResponseMessage()); return "error"; } + //InputStream is = url.openConnection().getInputStream(); InputStream is = conn.getInputStream();