scheduled tasks - Error in manifest or policy file(Invalid Xml syntax) -
i have .net console app written in c#, supposed setup in task scheduler(as job), have setup task requirements(action, triggers, conditions , settings). when try run job see error reads the application has failed because of side-by-side configuration, when check event logs see error reads invalid xml syntax
below screenshot of error seeing on event viewer , line below actual line(line7 per event viewer) <connectionstrings>
i have since open config file notepad++, set language xml see there amiss in file there nothing wrong in far can see
here more detailed config part(in case asks it)
<?xml version="1.0" encoding="utf-8"?> <configuration> <configsections> <section name="entityframework" type="system.data.entity.internal.configfile.entityframeworksection, entityframework, version=6.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089" requirepermission="false" /> <!-- more information on entity framework configuration, visit http://go.microsoft.com/fwlink/?linkid=237468 --> </configsections> <connectionstrings> <add name="contextname" connectionstring="data source=dbservername;initial catalog=catalogname;user id=trafficfinesuser;password=dbpassword" providername="system.data.sqlclient" providername="system.data.sqlclient" /> </connectionstrings>
what syntax error having here exactly?
Comments
Post a Comment