That is very strange. Are you setting the value as a BigDecimal? Some sample code would help.
Radu On Wed, 2008-03-12 at 10:46 -0600, Joe White wrote: > I have a very simple schema that I would like to return a price from > (below). However when I generate output the prices are returned in > scientific notation. Is there a way to suppress the scientific > notation output? > > > > Thank you for your help > > Joe > > > > > > > > <xs:schema xmlns="urn:rt"xmlns:xs="http://www.w3.org/2001/XMLSchema" > > targetNamespace="urn:rt"elementFormDefault="qualified"> > > <xs:simpleType name="money"> > > <xs:restrictionbase="xs:decimal"> > > <xs: > > <xs:fractionDigitsvalue="2" /> > > </xs:restriction> > > </xs:simpleType> > > <xs:simpleType name="price"> > > <xs:restrictionbase="xs:decimal"> > > <xs:fractionDigitsvalue="2"/> > > </xs:restriction> > > </xs:simpleType> > > </xs:schema> > > Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named in this message. If you are not the intended recipient, and have received this message in error, please immediately return this by email and then delete it. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

