https://bz.apache.org/bugzilla/show_bug.cgi?id=63422
Bug ID: 63422
Summary: : Operator: '"<"' inappropriate for objects
Product: JMeter
Version: 5.2
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: JMETER_5.1.1
i was trying to authentication Oath2 , Adal4j jar
Following functions methods not working
JSR223 script also not working
Error : Operator: '"<<"' inappropriate for objects
Option #1 tried
import com.microsoft.aad.adal4j.AuthenticationContext;
import com.microsoft.aad.adal4j.AuthenticationResult;
import com.microsoft.aad.adal4j.ClientCredential;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
AuthenticationContext context;
AuthenticationResult result = null;
ExecutorService service = null;
Future<AuthenticationResult> objFuture; - issue here
Option #2 tried
service = Executors.newFixedThreadPool(1);
context = new AuthenticationContext(loginUrl + tenant + "/", true, service);
Future<AuthenticationResult> future = context.acquireToken(resource, null, new
ClientCredential(clientId, clientSecret), null); --- - issue here
result = future.get();
--
You are receiving this mail because:
You are the assignee for the bug.