Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a .bat file with following content

No Format
titlestart littleIMS.bat
 
start "HSS" /D HSS java -jar start.jar etc\cipango-hss.xml
start "I-CSCF" /D I-CSCF java -jar start.jar etc\cipango-icscf.xml
start "P-CSCF" /D P-CSCF java -jar start.jar etc\cipango-pcscf.xml
start "S-CSCF" /D S-CSCF java -jar start.jar etc\cipango-scscf.xml

Running from source

littleIMS can be running from source folders using the maven-cipango-plugin

To start a component, go to the corresponding module and execute mvn cipango:run.
For instance to start the HSS, execute:

No Format

cd modules/hss
mvn cipango:run

To start the HSS, P-CSCF, I-CSCF and S-CSCF in one click, create a .bat file with the following content in littleIMS source home.

No Format
titlestart littleIMS.bat

start "HSS" /D modules\hss mvn cipango:run
start "I-CSCF" /D modules\icscf mvn cipango:run
start "P-CSCF" /D modules\pcscf mvn cipango:run
start "S-CSCF" /D modules\scscf mvn cipango:run