문제

I have created a sample ATG project in eclipse. This is the way I followed.

File->New->Project-> ...atg wizards->New ATG Module

Next->put project name as MyFirstATGApp and select ed root diretory as C:\ATG\ATG10.1.2 Next->Default atg adaptive senario engine is selected. Next->Next-> changed "Default output folder" value as " MyFirstATGApp /classes" Next->set J2EE application Name= MyFirstATGApp-j2ee, Web application name= MyFirstATGApp-web, Context-root= MyFirstATGApp and selected Target Applicaton Server=Jboss Then Finish.

From command prompt from C:\ATG\ATG10.1.2 \home\bin I tried executing startDynamoOnJBOSS -f MyFirstATGApp
I am getting following error.Also I didn’t find a startDynamoOnJBOSS inside the bin. Why is this happening??

enter image description here

I am new to ATG.Can I have any link with step-by-step ATG-Jboss-Eclipse project available?

도움이 되었습니까?

해결책 2

If you didn't find the startDynamoOnJBOSS then there is some problem with your installation of jboss or atg. but still you can run your project you just need to create ear of your project and paste it in your server deploy folder and start jboss.

For Detail You can read ATG Platform Programming Guide

다른 팁

startDynamoOnJBOSS is no longer available in the ATG 10.2 bin.

To start your server, just create your EAR using runAssembler inside the deploy folder for your JBOSS server and call

run.bat -c <ServerName>

startDynamoOnJBOSS is no longer exists in ATG version 10. Before running your project you need to deploy your project in deploy folder of default or your created server instance using runAssembler

cd C:\ATG\ATG10.1.2\home\bin 
runAssembler C:\jboss-eap-5.1.2\jboss-as\server\default\deploy\MyFirstATGApp.ear -m MyFirstATGApp 

Then run that server instance where ear file of your project is deployed

cd C:\jboss-eap-5.1.2\jboss-as\bin 
run -c default
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top