Re: [jibx-users] Debug Info in the modified classes

2007-07-22 Thread Nigel Charman
This could be an issue with Emma. The bytecode generated by JiBX has the synthetic attribute set to indicate that it does not appear in the source code. This was added about a year ago, so ensure you are using a recent version of JiBX. The Emma FAQ does state that it excludes synthetic

Re: [jibx-users] trying to deploy jibxsoap and weblogic

2008-07-01 Thread Nigel Charman
From the jibxsoap code, it looks like either the targetNamespace is null or an element namespace has a null URI in MainSchema.xsd. Fyi, we're planning a release of JiBX/WS, the successor to jibxsoap, after the JiBX 1.2 release. It has additional features, such as the POX (Plain Old XML)

Re: [jibx-users] One or more mapping elements for modifiable classes must be defined in binding

2008-09-15 Thread Nigel Charman
Are You Looking For A More Effective Way To Advertise? For those of us trying to promote our business, service, product or whatever else, it#039;s a constant job to advertise. Some of us have found some really superb ways of advertising and some are still dealing with some trial and error

Re: [jibx-users] Where are the Eclipse plugin sources???

2009-02-04 Thread Nigel Charman
The source is in the JiBX SVN repository at Sourceforge. You can browse the source at http://jibx.svn.sourceforge.net/viewvc/jibx/jibx-eclipse/trunk/, or see the instructions at http://sourceforge.net/svn/?group_id=69358 to download. You'll need to add jibx-eclipse/trunk to the URL to retrieve

Re: [jibx-users] JiBX 1.2 Beta 1

2009-02-18 Thread Nigel Charman
1.2-beta-1 has now been published to the Maven repository. It doesn't appear to have been replicated to the mirror sites yet, but is available at the main http://repo1.maven.org/maven2/org/jibx/ site. nigel. Dennis Sosnoski wrote: I've posted a JiBX 1.2 beta 1 release to the test package on

[jibx-users] How to set namespace prefix with code gen?

2009-03-14 Thread Nigel Charman
Just wondering if there's a way to instruct the schema to code generator to use a specific prefix for a specific namespace in the generated binding? I couldn't see anything in the docs. cheers nigel. -- Apps built

Re: [jibx-users] How to customize the super class of the generated classes with CodeGen ?

2009-05-14 Thread Nigel Charman
Hi Luca This can be acheived using class decorators (http://jibx.sourceforge.net/fromschema/codegen-customs.html#extend). |The org.jibx.schema.codegen.extend.SerializableDecorator class should give you a good starting point. regards nigel. | Luca Buraggi wrote: Hi all, I am just a

Re: [jibx-users] How to customize the super class of the generated classes with CodeGen ?

2009-05-18 Thread Nigel Charman
for ? Thank you. Nigel Charman ha scritto: Hi Luca This can be acheived using class decorators (http://jibx.sourceforge.net/fromschema/codegen-customs.html#extend). |The org.jibx.schema.codegen.extend.SerializableDecorator class should give you a good starting point. regards nigel. | Luca

Re: [jibx-users] How to customize the super class of the generated classes with CodeGen ?

2009-05-18 Thread Nigel Charman
the it.mate.horus.model.BaseEntity class ... I suppose ... I browsed the source code but it looks not so sinple ... What I really need it would be a better knowledge on the code generation mechanism ... do you have any hint on wger to look for ? Thank you. Nigel Charman ha scritto: Hi Luca This can

Re: [jibx-users] xmlns attribute?

2009-06-02 Thread Nigel Charman
HI David You'll need to add a namespace element to your mapping. Try: namespace uri=urn:SmartResults default=all prefix=ls/ as the first child of the mapping element. regards nigel. David Peterson wrote: I'm trying to setup a binding file for XML that contains a xmlns attribute,

[jibx-users] JiBX/WS v0.9-beta

2009-06-22 Thread Nigel Charman
We're pleased to announce the availability of JiBX/WS v0.9-beta. JiBX/WS is a framework for creating fast, simple web services. Features include: * supports SOAP 1.1 and POX (Plain Old XML) protocols, with planned support for REST and SOAP 1.2. * supports HTTP and TCP/IP transports

Re: [jibx-users] JiBX/WS v0.9-beta

2009-06-22 Thread Nigel Charman
for Mule-ESB (and Spring-Integration as well !). Regards 2009/6/22 Nigel Charman We're pleased to announce the availability of JiBX/WS v0.9-beta. JiBX/WS is a framework for creating fast, simple web services. Features include: * supports SOAP 1.1 and POX (Plain Old XML

Re: [jibx-users] JiBX for J2ME

2009-09-30 Thread Nigel Charman
If these changes are made, it would also be useful to have a J2ME build added to a Continuous Integration server so we can ensure that future changes do not break the J2ME build (similar to the jdk1.3 build for JiBX/WS). nigel. Dennis Sosnoski wrote: Hi Adam, It kind of depends on what

Re: [jibx-users] JiBX 1.2.2 test build

2009-10-19 Thread Nigel Charman
Hi Dennis Dennis Sosnoski wrote: Damn, that's annoying. If you can duplicate this I'll track down what's going wrong, but from the stack trace it probably relates to the issues involved in splitting up the bindings as specified by the customizations. This is inherently messy, so it may be

Re: [jibx-users] Namespace binding question

2009-10-28 Thread Nigel Charman
The XML is missing a namespace declaration for the wml prefix. Try changing the first line to: wml:MLWeather xmlns:wml=http://www.navteq.com/schemas/; NAVTEQVersion=1.1.0 serialNumber=1251825849597 feedCreation=2009-10-26T15:51:04.662Z regards. nigel. Harp, George wrote: I have the following

Re: [jibx-users] deploy wsdl and get to it from webapp

2009-11-03 Thread Nigel Charman
Hi Jim Which web service framework are you using? JiBX/WS, Axis, ...? I'm guessing you're using JiBX/WS with Spring. JiBX/WS does not currently expose WSDL, but there are plans to do so using the updated schema generation utilities that Dennis has been working on. It sounds like you already

Re: [jibx-users] deploy wsdl and get to it from webapp

2009-11-03 Thread Nigel Charman
jmpgate-t...@yahoo.com wrote: At this point, using jibx-ws, by itself. However, I have used Spring for a web application before. Does spring-framework have something web service centric, that I should be looking at? Spring Framework does have Spring/WS, which can also be configured to use

Re: [jibx-users] Mapping a Class multiple times in different ways...

2010-03-25 Thread Nigel Charman
Hi Matthias You should be able to work with different bindings in this way. BindingDirectory.getFactory() allows you to explicitly name the binding you wish to use [1]. If you're using an web service framework, you'll need to determine whether the framework allows you to specify the

Re: [jibx-users] how to view the return value from a POX call

2010-06-03 Thread Nigel Charman
To access the return xml, you'll need to configure an InputStreamInterceptor. See http://fisheye3.atlassian.com/browse/jibx/jibxws/trunk/examples/http-servlet-interceptor/build/src/org/jibx/ws/example/interceptor/client/HelloClient.java?r=HEAD for an example. Steel City Phantom wrote: im

Re: [jibx-users] WS client using jibx/ws with HTTP authentication

2010-06-18 Thread Nigel Charman
Hi Robert For HTTP connections, the SoapClient uses the Java HttpURLConnection class. (It is possible to add other implementations by overriding the settings in transport.properties, but only HttpURLConnection is currently implemented). HttpURLConnection supports authentication using the

Re: [jibx-users] need to change headers on soap request

2010-09-22 Thread Nigel Charman
Hi 1. SoapClient has a setOperationName that will set the SOAPAction header. 2. JiBX/WS does not support setting arbitrary content-types. The SOAP 1.1 spec (http://www.w3.org/TR/2000/NOTE-SOAP-2508/) states HTTP applications MUST use the media type text/xml according to

Re: [jibx-users] JIBX WS client POST/GET

2010-10-02 Thread Nigel Charman
Hi Daniel There's no support for HTTP GET requests currently. You would need to implement your own servlet to handle the request, but could use the SoapProcessor,sendMessage() method from JiBX/WS to send the response. You would need to set up some context before calling this method,

Re: [jibx-users] OTA Web Service Error

2010-10-05 Thread Nigel Charman
Please try updating the jibx-run.jar, jibx-extras.jar and jibx-bind.jar to the 1.2.2 version of JiBX. There was a bug fixed in this area in 1.2.2 - http://jira.codehaus.org/browse/JIBX-344. We're planning the 0.9.1 release of JiBX/WS to coincide with JiBX 1.2.3. In hindsight we should have

Re: [jibx-users] Mapping Response to Multiple Domain Objects

2010-10-06 Thread Nigel Charman
Hi Arvind I suggest you read through the binding tutorial at http://jibx.sourceforge.net/binding/tutorial/binding-tutorial.html and create a binding for your SOAP body to domain objects. There are a number of web service frameworks that can be configured with the JiBX binding file - Axis2,

Re: [jibx-users] OTA Web Service Error

2010-10-07 Thread Nigel Charman
Hi Rajesh It looks like an issue with the writer not being reset properly when it's reused. Would you raise a Jira for it please? Rajesh R.V - ESA wrote: I am using JiBX 1.2.2 only and still getting this error

Re: [jibx-users] NoClassDefFoundError

2010-12-20 Thread Nigel Charman
Hi. CodeGen depends on some eclipse jars that are packaged in the distribution. Do you have these on your classpath? On 21/12/10 08:30, Kyksa, Clint wrote: Hello. I am trying to figure out how to change our existing infrastructure using XMLBeans to Jibx and have encountered a setback when

Re: [jibx-users] encodingStyle in SoapClient envelope

2011-01-09 Thread Nigel Charman
Hi Bob, I'll look at adding something to SoapClient to handle this more elegantly. Thanks for the feedback. Nigel On 9 Jan 2011 06:10, Bob Smith ob_tr...@yahoo.fr wrote: Hello, I am using the JiBX-WS SoapClient to talk to a client application. However, I noticed this application would not

Re: [jibx-users] encodingStyle in SoapClient envelope

2011-01-29 Thread Nigel Charman
Hi Bob This has been implemented as a new method SoapClient.setSoapEncodingStyle(). It is in trunk, and will be released in JiBX/WS 0.9.1. Logged as http://jira.codehaus.org/browse/JIBX-417. cheers Nigel On 09/01/11 06:08, Bob Smith wrote: Hello, I am using the JiBX-WS SoapClient to talk

Re: [jibx-users] Starting Jibx

2011-03-14 Thread Nigel Charman
Hi Deepak Since this is a SOAP service, you should use SoapClient rather than PoxClient. The POX interface simply transports Plain Old XML payloads without the additional SOAP constructs (see http://jibx.sourceforge.net/jibxws/pox.html). The following WSDL implies that the SOAP service is

Re: [jibx-users] Starting Jibx

2011-03-14 Thread Nigel Charman
...@lists.sourceforge.net mailto:jibx-users-ow...@lists.sourceforge.net When replying, please edit your Subject line so it is more specific than Re: Contents of jibx-users digest... Today's Topics: 1. Re: Starting Jibx (Nigel Charman

Re: [jibx-users] Jibx-ws SoapFaultException issue

2011-03-15 Thread Nigel Charman
For an overview of XML namespaces, please see http://www.w3schools.com/xml/xml_namespaces.asp. Note that namespaces can be declared in the elements where they are used or in the XML root element. To set namespaces in JiBX, see

Re: [jibx-users] No handlers could be found for unmarshalling the SOAP body payload

2011-03-16 Thread Nigel Charman
Hi Deepak You'll need to add namespace definitions to the binding file for the SOAP response, as well as the SOAP request. Calling SoapClient.setInBodyBindingFactory(..) sets up a handler for the SOAP body using the supplied binding factory. The message is indicating that the SOAP body can

Re: [jibx-users] No handlers could be found for unmarshalling the SOAP body payload

2011-04-15 Thread Nigel Charman
Hi Deepak Please ensure you are binding using the binding.xml file, which includes the other bindings.  and that you are including the generated, compiled, classes directory in the classpath for the bind task. rgds Nigel On 07/04/11 08:08,

Re: [jibx-users] Would like to have empty or simple valued SOAP body

2011-06-16 Thread Nigel Charman
Hi Dmitry Having a service method with a void return type should result in an empty response body. Would you raise a JIRA for this please? In the meantime, it looks like a simpler workaround would be to explicitly specify the binding for the request payload. See

Re: [jibx-users] soapenv:Envelope namespace declaration

2011-11-28 Thread Nigel Charman
Hi Mark Which web service framework are you using? SOAP 1.2 uses http://www.w3.org/2003/05/soap-envelope; for the namespace and SOAP 1.1 uses http://schemas.xmlsoap.org/soap/envelope/;, so you'll want to set your web service framework to use SOAP 1.1. cheers Nigel On 28/11/11 15:13, Mark

Re: [jibx-users] Sourceforge is still down

2015-07-22 Thread Nigel Charman
+1 for Github We recently ported the concordion.org domain to Github Pages, and everything transferred across smoothly. We started with just the plain HTML and are slowly moving to using some Jekyll features for templating. It's useful to be able to have people fork the website and submit