Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
5 replies
Subscribers
7 subscribers
Views
2272 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Administration
Hi I have installed Appain 7.2 but while running the jboss server I am getting t
sunnya
over 11 years ago
Hi I have installed Appain 7.2 but while running the jboss server I am getting the error as below. I have also checked my appian-ds.xml file for any trailing space or any typo and also checked the characterset to utf8 in mysql DB.
the error shown below in created in appian-ds.xml.failed file in deployment folder for jboss
{"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014671: Failed services" => {"jboss.deployment.unit.\\"appian-ds.xml\\".PARSE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\\"appian-ds.xml\\".PARSE: Failed to process phase PARSE of deployment \\"appian-ds.xml\\""}}}}
What I understand from the error is it is not able to parse the xml but I have cross-checked my xml file. I am also attaching my appian-ds.xml file. ...
appian-ds.xml
OriginalPostID-93391
OriginalPostID-93391
Discussion posts and replies are publicly visible
0
Eduardo Fuentes
Appian Employee
over 11 years ago
For this type of errors my suggestion is to use an XML Validation online tool. By passing the content of your file to one of this tools:
www.validome.org/.../
I could easily spot the syntax error. See how lines 8, 10, 33 and 35 have a typo in the closing tag.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Eduardo Fuentes
Appian Employee
over 11 years ago
You can also use this more basic one
www.w3schools.com/.../xml_validator.asp
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
priyaj
over 11 years ago
Hi Sunny,
The XML tags are not properly configured for server name and database name in your appian-ds.xml
Tags in your appian-ds.xml:
<xa-datasource-property name="serverName">localhost</xa-datasourceproperty>
<xa-datasource-property name="databaseName">mySQL_for_appian</xa-datasourceproperty>
Actual Tags should be given as below:
<xa-datasource-property name="serverName">localhost</xa-datasource-property>
<xa-datasource-property name="databaseName">mySQL_for_appian</xa-datasource-property>
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Eduardo Fuentes
Appian Employee
over 11 years ago
If you decide to use the first link ignore the "Can not find declaration of element 'datasources'." the rest of the errors will be actual errors.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
shelzle
over 11 years ago
Line 8
<xa-datasource-property name="serverName">localhost</xa-datasourceproperty>
should be
<xa-datasource-property name="serverName">localhost</xa-datasource-property>
There are some more of these lines.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel