Service Virtualization

 View Only
  • 1.  MakeMar utility throwing error

    Posted Jun 21, 2019 10:26 AM
    Hi,

    I am facing an issue while creating mar file through makemar utility, below is my cmd:

    MakeMar --create --marinfo=C:\Program Files\CASV\Projects\xxxxx_ Virtualization\VirtualServices\VRScenarios\Mar infoFiles\All_VS_Mar.mari --archive=MortVS.mar

    its showing Too many arguments specified: Files\CASV\Projects\projectName 


    CA doc cmd MakeMar --create --marinfo=C:\Lisa\examples\MARInfos\rawSoap.mari --archive=rawSoap.mar 

    when i run this, it throws it also throws same error.

    Can anyone please let me know correct command to run create mar file.



    ------------------------------
    Thanks,
    Sabir Sayyad
    ------------------------------


  • 2.  RE: MakeMar utility throwing error
    Best Answer

    Broadcom Employee
    Posted Jun 23, 2019 10:10 PM
    Hi Sabir,
         Since there is a space in file path which you have specified in marinfo argument, you are getting an error. Please give the file path details with-in double quotes (") and try it again. Sample is as follows

    MakeMar.exe --create --marinfo="C:\Program Files\CA\DevTest\examples\MARInfos\AllTestsSuite.mari" --archive="C:\Program Files\CA\DevTest\examples\MARInfos\AllTestsSuite.mar"

    Locale: en_US
    Setting System.out and System.err to: Cp1252
    LISA_HOME set to C:\PROGRA~1\CA\DevTest\
    DevTest temporary directory is C:\Users\Administrator\lisatmp_10.4.0
    Configuring logging from 'C:\PROGRA~1\CA\DevTest\logging.properties'
    DevTest Solutions, Copyright (c) 2002-2019 CA, All rights reserved.
    MarMaker
    DevTest Solutions Version :: 10.4.0 (10.4.0.366)
    Installed patches: none

    Thanks & Regards
    Srikanth Gajawada


  • 3.  RE: MakeMar utility throwing error

    Posted Jun 24, 2019 04:11 AM
    Thanks, it works