How can I increase memory in WebRatio?
From Wiki
It can happen that in the model generation lifecycle you get an OutOfMemory error. To solve this problem you have to change the memory options in the WebRatio.ini file. This file is placed in the WebRatio installation directory and it looks like the following
1: -vmargs
2: -Xms40m
3: -Xmx384m
4: -XX:PermSize=64m
5: -XX:MaxPermSize=128m
If you see java.lang.OutOfMemoryError: PermGen space error, you need to increase the permanent generation space available to WebRatio.
PermGen is the permanent generation of objects in the VM (Class names, internalized strings, objects that will never get garbage-collected). To increase this memory you have to change the variable MaxPermSize at the line 5 of the WebRatio.ini file using a higher value (e.g 192m). If you see an OutOfMemoryError without the PermGen indication, then you have to increase the value of the variable mx at the line 3 of the WebRatio.ini file.
