Sendhil K.

  • 5 questions asked
  • 2 answers
  • 0 best answers (0%)
  • File Variable input fromat

    Hi, I created a file variable which basically takes a Json String. The strings is in a specific format, with a lot of escape characters. when I load it to the file variable...
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    Can you provide more detail? the example string and some screen shots
  • Access File Variables from within Javascript action?

    Hi, I have a CSV file which I want to read in the javascript file. The file variable is named as AUTHDATA. This is how Im accessing it in java script. var authData...
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    Figured out by other post: var hostname=context.variableManager.getValue("AUTHDATA.hostname"); logger.info("Host Name:"+hostname );
  • Load Generator Not Executing the script as expected

    Hi, I have a very peculiar problem, I have developed a java code and tested with 6.9 and also tested locally with 6.5.1. In the local load generator I tested with 100 users...
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    The issue was , if you are having files which are locally referenced in your code and using this value in the variable in NeoLoad. you need to place the respective files on all...
  • Java code does not return any value, but shows scuessfull

    Hi, I'm trying to run the below code `` logger.info("START"); var composedRegMessage = Packages.scale.service.MessageComposerService.composeRegistrationMsg("id", "cd", "br"...
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
  • how to create a java object and use it

    i have created a jar file and placed it in the lib. Now I need to create a obect, intialize the value and the call the method to do some processing. How can i do it. I'm...
    Sendhil K.
    Sendhil K.

    Sendhil K.

    Level
    0
    25 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    try this... var someObj = new com.play.thing(); var result = someObj.method(param)