Skip to content

Commit

Permalink
glassfish/issues/23396 address ClassNotFoundException: org.glassfish.…
Browse files Browse the repository at this point in the history
…appclient.client.acc.agent.ACCAgentClassLoader change suggested eclipse-ee4j/glassfish#23396 (comment)

Signed-off-by: Scott Marlow <smarlow@redhat.com>
  • Loading branch information
scottmarlow committed Mar 8, 2021
1 parent be0f667 commit 6e9529c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ public String getAppClientArgs(Properties p) {
sApp = sTSDeploymentDir + File.separator + sAppName + "Client.jar";

if (executeArgs == null) {
executeArgs = sApp + ",arg=-name,arg=" + sClientname + " -jar " + sApp; // +
executeArgs = sApp + ",arg=-name,arg=" + sClientname + " -classpath "+ propMgr.getProperty("javaee.home", "/") + "/lib/gf-client.jar" + ":" + sApp + " org.glassfish.appclient.client.AppClientGroupFacade " ; // +
// "
// -stubs
// "
// +
// sClientClasspath;
} else {
executeArgs = sApp + ",arg=-name,arg=" + sClientname + " -jar " + sApp
executeArgs = sApp + ",arg=-name,arg=" + sClientname + " -classpath "+ propMgr.getProperty("javaee.home", "/") + "/lib/gf-client.jar" + ":" + sApp + " org.glassfish.appclient.client.AppClientGroupFacade "
+ " " + executeArgs; // + " -name " + p.getProperty("client_name"); //
// + " -stubs " + sClientClasspath;
}
Expand Down

0 comments on commit 6e9529c

Please sign in to comment.