@echo off

rem ----- B2B/Federation Standalone Deployment Test

echo.
echo ------------------------------------- 
echo B2B/Federation Standalone Client Test
echo ------------------------------------- 
echo.    
SETLOCAL ENABLEDELAYEDEXPANSION

if !%1==! goto usage

call "%~dp0%fiperenv.bat"

rem V6 FIX FIX FIX to use Launchpad!
java -classpath %FIPER_HOME%\docs\java\SMAFIPpse.jar;%FIPER_HOME%\docs\javacommon\axis.jar com.engineous.system.pse.b2b.ModelAgentClient %1 %2
goto end

:usage
echo Usage: b2btest URL
echo   where URL is: protocol+host+port
echo   for example, http://MyHost:8000
echo.

:end
