unexpected element (uri:\"\", local:\"Group\"). Expected elements are <{}group>
Meet an exception when unmarshalling from xml
I had the same issue.
I added following attributes to
elementFormDefault="qualified" attributeFormDefault="unqualified"
and re-generated java classes by running xjc, which corrected package-info.java.
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.example.com/schemas/ArrayOfMarketWithStations", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
This fixed the issue for me.