JAXBContext withoutXmlContext = JAXBContext.newInstance(ShiporderType.class);
Marshaller witoutMarshaller = withoutXmlContext.createMarshaller();
JAXBElement<ShiporderType> object = new JAXBElement<ShiporderType>(
new QName("", "RootElement"), ShiporderType.class, new ShiporderType());
witoutMarshaller.marshal(object, System.out);
ObjectFactory of = new ObjectFactory();
JAXBElement<ShiporderType> secondObject = of.createShiporder(new ShiporderType());
witoutMarshaller.marshal(secondObject, System.out);
}