Search found 9 matches

by samwise
Wed Jul 04, 2007 12:17 pm
Forum: General XML Questions
Topic: Check WSI BP & W3C databinding Basic profile compliance?
Replies: 1
Views: 5590

Check WSI BP & W3C databinding Basic profile compliance?

Hi, Apologies for the newbie question. I've written a WSDL which validates OK in Eclipse with WSI-SSBP compliance required and also validates in <oXygen/> 7.2. However, I've been asked to: Make it WSI BP compliant Make it W3C databinding Basic profile compliant I'm afraid the world of web service st...
by samwise
Tue Apr 11, 2006 12:23 pm
Forum: XML Schemas
Topic: Can't duplicate Oxygen's validation using Xerces-J 2.7.0
Replies: 9
Views: 23395

Raj, I think that error may mean that <Oxygen /> (or your java code) isn't finding the schema *and all child schemas* required - at least, that was the problem in my case. By not entering a full path or URL, it will look for XopInclude.xsd in the same directory. Are you sure that you have XopInclude...
by samwise
Thu Aug 25, 2005 11:35 am
Forum: Other Issues
Topic: Generate wsdl from xml schema
Replies: 4
Views: 32958

Hi Sam, We placed a bug to analyse the possibility of creating a stylesheet to transform from XML Schema to a sample WSDL file. As far as I searched there does not seem to be something open source for that. Regards, Radu. Hi, Radu. Thanks very much. It's comforting to note that at least it wasn't j...
by samwise
Wed Aug 24, 2005 6:42 pm
Forum: Other Issues
Topic: Generate wsdl from xml schema
Replies: 4
Views: 32958

Re: Sorry for the delay

No, Oxygen does not posess this feature. Ah, that's a shame. I found this link on the web: http://www.capescience.com/webservices/schema2wsdl/index.shtml Ahh, yes - I will certainly give that a try (though I don't currently have the modified schemas available online). Would you know of a free (open...
by samwise
Wed Aug 17, 2005 6:29 pm
Forum: Other Issues
Topic: Generate wsdl from xml schema
Replies: 4
Views: 32958

Generate wsdl from xml schema

Hi, I'm fairly new to all things XML, so I just wondered if I could ask a vague question and get your thoughts. Can I generate a WSDL direct from an XML Schema, using <oXygen/> :?: I'm specifically looking at the SPML v1.0 standard from OASIS, which is a pretty complex beasty. If this isn't possible...
by samwise
Fri Jul 15, 2005 11:08 pm
Forum: XML Schemas
Topic: Can't duplicate Oxygen's validation using Xerces-J 2.7.0
Replies: 9
Views: 23395

RE: Can't duplicate Oxygen's validation using Xerces-J 2.7.0

Just to conclude this thread. Xerces-J 2.7.0 is the latest at time of writing, as I thought. George has been kind enough to help me outside the forum and we eventually discovered that there two further files that were being downloaded off the web. By setting my proxy host & port on the command l...
by samwise
Thu Jul 14, 2005 12:16 pm
Forum: XML Schemas
Topic: Can't duplicate Oxygen's validation using Xerces-J 2.7.0
Replies: 9
Views: 23395

RE: Can't duplicate Oxygen's validation using Xerces-J 2.7.0

Hi, George, I moved all the XML files to a directory off \ and re-ran the code with: String XmlDocumentUrl = "file:/C:/SPMLXMLSchema/testspml.xml"; This made no difference. Which ever directory I put them in, it seems to be finding the XML message fine, and three of the xml schemas it requ...
by samwise
Wed Jul 13, 2005 3:19 pm
Forum: XML Schemas
Topic: Can't duplicate Oxygen's validation using Xerces-J 2.7.0
Replies: 9
Views: 23395

RE: Can't duplicate Oxygen's validation using Xerces-J 2.7.0

George, I've just sent the code, the XML schemas and the example message I'm trying to validate to the support email address. The XML Schemas I linked to do contain some problems which stop them from validating, which is what I referred to when I detailed the modifications I made. Basically, the DSM...
by samwise
Tue Jul 12, 2005 10:06 pm
Forum: XML Schemas
Topic: Can't duplicate Oxygen's validation using Xerces-J 2.7.0
Replies: 9
Views: 23395

Can't duplicate Oxygen's validation using Xerces-J 2.7.0

Hi, With some help on another online forum, I have modified the SPML schema so I can validate an SPML message against the schema. To do this, I had to specify a namespace in all the <xsd:any> elements like this <xsd:any namespace="##local" processContents="lax" minOccurs="0&...