|
Re: Error when deploying code
Sorry this is late but I have dealt with Build.xml and various other XML files provided in sunspotfrcsdk.
You CAN access the files themselves via netbeans BUT to save you MUST have the program used to open it, open in Adminstrator, even if you jsut use "Open as Administrator". You seem to be missing the part of a line where is says, This is the end of an Element Declaration. Hopefully you will resolve that issue. If you open it and at the line specified you dont see an '>' or '/> at the end of an element specifcation then just add it in and try.
Example:
Normal:
<target name = ... >
<mkdir ... />
....
Problem:
<target name = ...
<mkdir ... />
or
<target name = ... >
<mkdir ... > //Or non at all
or some permutation of that.
Hope I helped somewhat.
|