You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2019/05/11 16:29:23 UTC

[Bug 63422] New: : Operator: '"<"' inappropriate for objects

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: issues@jmeter.apache.org
          Reporter: vijaychowthri@gmail.com
  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.

[Bug 63422] : Operator: '"<"' inappropriate for objects

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=63422

Felix Schumacher <fe...@internetallee.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All
             Status|NEW                         |NEEDINFO

--- Comment #1 from Felix Schumacher <fe...@internetallee.de> ---
What language have you selected in the JSR 223 Sampler?

Can you post a minimal test plan, that reproduces your issue?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 63422] : Operator: '"<"' inappropriate for objects

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=63422

Philippe Mouawad <p....@ubik-ingenierie.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |p.mouawad@ubik-ingenierie.c
                   |                            |om
         Resolution|---                         |INVALID
             Status|NEEDINFO                    |RESOLVED

--- Comment #2 from Philippe Mouawad <p....@ubik-ingenierie.com> ---
No answer ,closing

-- 
You are receiving this mail because:
You are the assignee for the bug.