IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

X-Plorer on Tamino 4.2.1 doesn't start up

  • 1.  X-Plorer on Tamino 4.2.1 doesn't start up

    Posted Wed February 08, 2006 02:37 AM

    X-Plorer on windows2K with Tamino 4.2.1 doesn’t come up. When tried executing the inoxplorer.cmd from the cmd shell got the error message: The input line is too long. any help will be highly appreciated. TIA Rahul


    #Tamino
    #API-Management
    #webMethods


  • 2.  RE: X-Plorer on Tamino 4.2.1 doesn't start up

    Posted Wed February 08, 2006 10:02 AM

    In essence this is not a Tamino problem but a limitation of MS Windows. The command line input length of “cmd.exe” is 2047 on Windows 2000 or NT, and 8191 on Win-XP. So it only seems to be a problem with Windows 2000 when the Tamino installation path is large enough to break the limit. The following change will shorten the path: 1. Replace in file INOXPLORER.CMD for %%i in (“%XPL_HOME%\lib*.jar”) do call “%XPL_HOME%\lcp.bat” “%%i” WITH cd /d “%XPL_HOME%” for %%i in (“.\lib*.jar”) do call “lcp.bat” “%%i” 2. Replace in file INOXQUERY.CMD for %%i in (“%XQ_HOME%\lib*.jar”) do call “%XQ_HOME%\lcp.bat” “%%i” WITH cd /d “%XQ_HOME%” for %%i in (“.\lib*.jar”) do call “lcp.bat” “%%i” You get the idea…


    #webMethods
    #Tamino
    #API-Management


  • 3.  RE: X-Plorer on Tamino 4.2.1 doesn't start up

    Posted Thu February 09, 2006 02:45 AM

    Your solution works… Thanks Rahul


    #webMethods
    #API-Management
    #Tamino