File tree 2 files changed +7
-8
lines changed
src/main/java/life/qbic/portal/portlet
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >life.qbic</groupId >
8
8
<artifactId >portlet-parent-pom</artifactId >
9
- <version >3.1.0 </version >
9
+ <version >3.1.4 </version >
10
10
</parent >
11
11
<artifactId >user-db-portlet</artifactId >
12
- <version >1.8.1 </version >
12
+ <version >1.8.2 </version >
13
13
<name >User Database Portlet</name >
14
14
<url >http://github.com/qbicsoftware/user-db-portlet</url >
15
15
<packaging >war</packaging >
56
56
<dependency >
57
57
<groupId >life.qbic</groupId >
58
58
<artifactId >portal-utils-lib</artifactId >
59
- <version >2.2.1 </version >
59
+ <version >1.6.0 </version >
60
60
</dependency >
61
61
<dependency >
62
62
<groupId >life.qbic</groupId >
63
63
<artifactId >core-utils-lib</artifactId >
64
- <version >1.7.0 </version >
64
+ <version >1.7.1 </version >
65
65
</dependency >
66
66
<dependency >
67
67
<groupId >life.qbic</groupId >
68
68
<artifactId >openbis-client-lib</artifactId >
69
- <version >1.4.0 </version >
69
+ <version >1.4.1 </version >
70
70
</dependency >
71
71
<dependency >
72
72
<groupId >life.qbic</groupId >
Original file line number Diff line number Diff line change @@ -88,7 +88,6 @@ protected Layout getPortletContent(final VaadinRequest request) {
88
88
boolean success = true ;
89
89
manager = ConfigurationManagerFactory .getInstance ();
90
90
tmpFolder = manager .getTmpFolder ();
91
-
92
91
if (PortalUtils .isLiferayPortlet ()) {
93
92
// read in the configuration file
94
93
@@ -109,9 +108,9 @@ protected Layout getPortletContent(final VaadinRequest request) {
109
108
// establish connection to the OpenBIS API
110
109
try {
111
110
logger .debug ("trying to connect to openbis" );
112
-
111
+ final String openbisURL = manager . getDataSourceUrl () + "/openbis/openbis" ;
113
112
this .openbis = new OpenBisClient (manager .getDataSourceUser (), manager .getDataSourcePassword (),
114
- manager . getDataSourceUrl () );
113
+ openbisURL );
115
114
this .openbis .login ();
116
115
} catch (Exception e ) {
117
116
success = false ;
You can’t perform that action at this time.
0 commit comments