Welcome to Siva's Blog

~-Scribbles by Sivananda Hanumanthu
My experiences and learnings on Technology, Leadership, Domains, Life and on various topics as a reference!
What you can expect here, it could be something on Java, J2EE, Databases, or altogether on a newer Programming language, Software Engineering Best Practices, Software Architecture, SOA, REST, Web Services, Micro Services, APIs, Technical Architecture, Design, Programming, Cloud, Application Security, Artificial Intelligence, Machine Learning, Big data and Analytics, Integrations, Middleware, Continuous Delivery, DevOps, Cyber Security, Application Security, QA/QE, Automations, Emerging Technologies, B2B, B2C, ERP, SCM, PLM, FinTech, IoT, RegTech or any other domain, Tips & Traps, News, Books, Life experiences, Notes, latest trends and many more...

Friday, December 17, 2010

XPath Expression Demo Application

XPath Expression Demo Application


http://www.futurelab.ch/xmlkurs/xpath.en.html


Just copy and paste your xml file and then evaluate your XPath expression results here. Enjoy!

Wednesday, December 15, 2010

"Error occurred during initialization of VM" while starting weblogic

"Error occurred during initialization of VM" while starting weblogic


.
.
.
weblogic.Server
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.


I have lowered my heap to below values


set DEFAULT_MEM_ARGS=-Xms768m -Xmx768m
set PORT_MEM_ARGS=-Xms768m -Xmx768m


instead of


set DEFAULT_MEM_ARGS=-Xms512m -Xmx1024m
set PORT_MEM_ARGS=-Xms768m -Xmx1536m


in the file middlweware_home\Oracle\Middleware\user_projects\domains\your_domain\bin\setSOADomainEnv.cmd


Then, start the weblogic and it works fine!