Is there a standard syntax for branding XML content with an image/logo. I have written some Java Webservices that provide data to users. I need to add a url of our company logo at the begining of the XML content. I need to know what is a decent (if not standard) way of doing this.
There is no standard as far as I know. I guess you have two main options: 1) put the URL into a SOAP header (a bit more complex to implement on both ends) 2) put the URL as the first return parameter of each operation (ugly, but easy to implement)