Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 2679 invoked from network); 7 Sep 2006 19:42:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Sep 2006 19:42:26 -0000 Received: (qmail 84569 invoked by uid 500); 7 Sep 2006 19:42:19 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 83551 invoked by uid 500); 7 Sep 2006 19:42:17 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 83540 invoked by uid 99); 7 Sep 2006 19:42:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 12:42:17 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of ajith.ranabahu@gmail.com designates 64.233.182.189 as permitted sender) Received: from [64.233.182.189] (HELO nf-out-0910.google.com) (64.233.182.189) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2006 12:42:16 -0700 Received: by nf-out-0910.google.com with SMTP id x29so482836nfb for ; Thu, 07 Sep 2006 12:41:54 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jGjZtS/3WsDw7LwCQdenBE97B7sFankMeqOVMtbOdc9F2/W2j2zC3YCC2klmUadL6BstPTouI17o23gsRNZyO2paiCaWTDrNH6iwohXkDtzFOZZ9BP2ng8x/SAusrLfTzVCQXbR2hGrBexOT//n5e1e6Wlfo3V3rvbvbLXAE7f0= Received: by 10.49.92.18 with SMTP id u18mr3101478nfl; Thu, 07 Sep 2006 12:41:54 -0700 (PDT) Received: by 10.48.163.5 with HTTP; Thu, 7 Sep 2006 12:41:54 -0700 (PDT) Message-ID: Date: Thu, 7 Sep 2006 15:41:54 -0400 From: "Ajith Ranabahu" To: axis-user@ws.apache.org Subject: Re: [Axis2] Purpose of resource files generated with Xmlbeans databinding In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <22C5A81B3491F241BF9447DC9C79E24D02C4596D@modmsx011.network.local> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, This is what I found in the XMLBeans site "An XSB file contains schema meta information needed to perform tasks such as binding and validation. "XSB" stands for XML Schema Binary." So my undertanding is that these xsb files are needed to when binding is done and hence a must to be generated. When you invoke scomp usually things are jarred and the xsbs will be conveniently hidden from view :) XMLBeans also has a tool that lets you inspect the content of an xsb file [1] HTH Ajith [1] http://xmlbeans.apache.org/docs/2.0.0/guide/tools.html#dumpxsb On 9/7/06, robert lazarski wrote: > I've also never used xmlbeans outside of axis2 databinding ... but I > do know that the schemaorg_apache_xmlbeans* dependancy is due to the > TypeSystemHolder.class that is strangely created when also creating > the *.java files when invoking wsdl2java . The whole thing never made > sense to me or a lot of other people ... the question comes up > frequently on the list. IIRC the TypeSystemHolder.class is indeed > created outside of axis2 , as I wrote some of the first docs showing > how to overcome the problem via searching on the xmlbeans list. > > HTH, > Robert > > On 9/7/06, Ajith Ranabahu wrote: > > Hi, > > XMLBeans does not generate them when invoked standalone ?? I'm not > > really sure about this but XMLBeans depends on these xsb files to > > parse the XMLs properly and it cannot do without them. > > > > Ajith > > > > On 9/7/06, Spies, Brennan wrote: > > > Actually, the latest nightly build solved my problem, so it's not an issue > > > for me anymore--but am still curious about what these files are...XmlBeans > > > itself does not generate them, and they are very short files, > > > > > > "schemaorg_apache_xmlbeans.system.s4455233DA64B38DEA9E660649ACE1E73" with > > > some unreadable chars (raw bytes?) leading and trailing. > > > > > > Just curious, > > > > > > Brennan > > > > > > > > > -----Original Message----- > > > From: jeff.greif@gmail.com [mailto:jeff.greif@gmail.com] On Behalf Of Jeff > > > Greif > > > Sent: Thursday, September 07, 2006 10:41 AM > > > To: axis-user@ws.apache.org > > > Subject: Re: [Axis2] Purpose of resource files generated with Xmlbeans > > > databinding > > > > > > I'm using XmlBeans to go back and forth between object and dom > > > representations in a service deployed as a message service (so axis is > > > not used to generate any code) I just use XmlBeans outside axis and > > > embed the generated classes in WEB-INF/lib of the webapp containing > > > axis. Just download the latest xmlbeans distribution and run scomp on > > > the schemas and wsdls in question with some appropriate .xsdconfig > > > file you write. The .xsb files can be generated into the same tree > > > that the compiled generated classes go in, and jar'ed up into the > > > resulting archive. The xmlbeans docs explain it well enough so it can > > > be done without much thrashing around. > > > > > > Jeff > > > > > > On 9/7/06, Spies, Brennan wrote: > > > > Is there a way to generate these manually, since I am currently having a > > > > problem with not all of my schemas being generated as XmlBeans classes > > > > (https://issues.apache.org/jira/browse/AXIS2-1116)? > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org > > > For additional commands, e-mail: axis-user-help@ws.apache.org > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org > > > For additional commands, e-mail: axis-user-help@ws.apache.org > > > > > > > > > > > > -- > > Ajith Ranabahu > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org > > For additional commands, e-mail: axis-user-help@ws.apache.org > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org > For additional commands, e-mail: axis-user-help@ws.apache.org > > -- Ajith Ranabahu --------------------------------------------------------------------- To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org For additional commands, e-mail: axis-user-help@ws.apache.org