Validation complete. Your messages have been delivered.
--- Begin Message ---
>From [EMAIL PROTECTED] Mon Nov 10 15:14:38 2008
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from calista.digitopia.net (calista.digitopia.net [63.240.26.236])
by bsd.inboxlock.com (Postfix) with ESMTP id BDD96B2F05
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:20 -0500 (EST)
Received: from mail.codehaus.org (mail.codehaus.org [63.246.7.187])
by calista.digitopia.net (8.12.8p1/8.12.8) with ESMTP id mAAKEKsw080950
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:20 -0500 (EST)
(envelope-from [EMAIL PROTECTED])
Received: (qmail 16808 invoked by uid 89); 10 Nov 2008 20:14:14 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Post: <http://xircles.codehaus.org/manage_email>
List-Help: <http://xircles.codehaus.org/manage_email>
List-Unsubscribe: <http://xircles.codehaus.org/manage_email>
List-Subscribe: <http://xircles.codehaus.org/manage_email>
List-Id: <dev.xfire.codehaus.org>
Reply-to: dev@xfire.codehaus.org
Delivered-To: mailing list dev@xfire.codehaus.org
Received: (qmail 16788 invoked by uid 89); 10 Nov 2008 20:14:13 -0000
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 10 Nov 2008 14:14:13 -0600 (CST)
From: "Benoit Drolet (JIRA)" <[EMAIL PROTECTED]>
To: dev@xfire.codehaus.org
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Subject: [xfire-dev] [jira] Created: (XFIRE-1133) Unable to create xml element
with a
attribute and a content value using aegis binding.
Unable to create xml element with a attribute and a content value using aegis
binding.
--------------------------------------------------------------------------------------
Key: XFIRE-1133
URL: http://jira.codehaus.org/browse/XFIRE-1133
Project: XFire
Issue Type: Bug
Components: Aegis Module
Affects Versions: 1.2.6
Environment: Windows XP, Eclipse 3.2.0
Reporter: Benoit Drolet
Assignee: Dan Diephouse
I want to create xml element with a attribute and a content value using aegis
binding.
I didn't find a way to create it using actual aegis definition. This is my case:
Fore example, the java class:
public class Employee
{
private String name;
private String title;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getTitle() { return title; }
public void setTitle(String title) { this.title = title; }
}
I have this Aegis Mapping
<mappings xmlns:np="urn:north-pole:operations">
<mapping name="np:Employee">
<property name="name" mappedName="Name" style="attribute" />
<property name="title" mappedName="Title"/>
</mapping>
</mappings>
Actual Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">
<np:Title>Chief Present Officer (CPO)</np:Title>
</np:Employee>
I need to create this xml output format
Expected Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">Chief
Present Officer (CPO)</np:Employee>
there is a way to do this?
Ben
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
--- End Message ---
--- Begin Message ---
>From [EMAIL PROTECTED] Mon Nov 10 15:15:08 2008
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from calista.digitopia.net (calista.digitopia.net [63.240.26.236])
by bsd.inboxlock.com (Postfix) with ESMTP id 92A5BB2F15
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:31 -0500 (EST)
Received: from mail.codehaus.org (mail.codehaus.org [63.246.7.187])
by calista.digitopia.net (8.12.8p1/8.12.8) with ESMTP id mAAKEVsw080953
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:31 -0500 (EST)
(envelope-from [EMAIL PROTECTED])
Received: (qmail 16821 invoked by uid 89); 10 Nov 2008 20:14:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Post: <http://xircles.codehaus.org/manage_email>
List-Help: <http://xircles.codehaus.org/manage_email>
List-Unsubscribe: <http://xircles.codehaus.org/manage_email>
List-Subscribe: <http://xircles.codehaus.org/manage_email>
List-Id: <dev.xfire.codehaus.org>
Reply-to: dev@xfire.codehaus.org
Delivered-To: mailing list dev@xfire.codehaus.org
Received: (qmail 16789 invoked by uid 89); 10 Nov 2008 20:14:13 -0000
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 10 Nov 2008 14:14:13 -0600 (CST)
From: "Benoit Drolet (JIRA)" <[EMAIL PROTECTED]>
To: dev@xfire.codehaus.org
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Subject: [xfire-dev] [jira] Created: (XFIRE-1133) Unable to create xml element
with a
attribute and a content value using aegis binding.
Unable to create xml element with a attribute and a content value using aegis
binding.
--------------------------------------------------------------------------------------
Key: XFIRE-1133
URL: http://jira.codehaus.org/browse/XFIRE-1133
Project: XFire
Issue Type: Bug
Components: Aegis Module
Affects Versions: 1.2.6
Environment: Windows XP, Eclipse 3.2.0
Reporter: Benoit Drolet
Assignee: Dan Diephouse
I want to create xml element with a attribute and a content value using aegis
binding.
I didn't find a way to create it using actual aegis definition. This is my case:
Fore example, the java class:
public class Employee
{
private String name;
private String title;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getTitle() { return title; }
public void setTitle(String title) { this.title = title; }
}
I have this Aegis Mapping
<mappings xmlns:np="urn:north-pole:operations">
<mapping name="np:Employee">
<property name="name" mappedName="Name" style="attribute" />
<property name="title" mappedName="Title"/>
</mapping>
</mappings>
Actual Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">
<np:Title>Chief Present Officer (CPO)</np:Title>
</np:Employee>
I need to create this xml output format
Expected Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">Chief
Present Officer (CPO)</np:Employee>
there is a way to do this?
Ben
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
--- End Message ---
--- Begin Message ---
>From [EMAIL PROTECTED] Mon Nov 10 15:16:12 2008
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from calista.digitopia.net (calista.digitopia.net [63.240.26.236])
by bsd.inboxlock.com (Postfix) with ESMTP id AB5ACB2F05
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:16:10 -0500 (EST)
Received: from mail.codehaus.org (mail.codehaus.org [63.246.7.187])
by calista.digitopia.net (8.12.8p1/8.12.8) with ESMTP id mAAKG9sw081130
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:16:10 -0500 (EST)
(envelope-from [EMAIL PROTECTED])
Received: (qmail 17568 invoked by uid 89); 10 Nov 2008 20:15:41 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Post: <http://xircles.codehaus.org/manage_email>
List-Help: <http://xircles.codehaus.org/manage_email>
List-Unsubscribe: <http://xircles.codehaus.org/manage_email>
List-Subscribe: <http://xircles.codehaus.org/manage_email>
List-Id: <dev.xfire.codehaus.org>
Reply-to: dev@xfire.codehaus.org
Delivered-To: mailing list dev@xfire.codehaus.org
Received: (qmail 17484 invoked by uid 89); 10 Nov 2008 20:15:28 -0000
To: dev@xfire.codehaus.org
From: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
X-Mailer: InboxLock 2.0
X-Message-Type: challenge
X-Control-Key: 620196
Content-Type: multipart/mixed; boundary="==NextPart==130721835==NextPart=="
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 10 Nov 2008 15:15:24 -0500 (EST)
Subject: [xfire-dev] Reply Needed Re: [xfire-dev] [jira] Created: (XFIRE-1133)
Unable to create xml element with a attribute and a content value using aegis
binding.
--==NextPart==130721835==NextPart==
Content-Type: text/plain; charset="iso-8859-1"
Hello:
Thank you for your email.
You have received this automated response because I am using a new type of
software that blocks spam.
I will receive your original email but only if you will please:
- reply to this email by clicking the "reply" button
- copy and paste the following code into the subject line: InboxLock9987011
- click "send"
You only have to do this once -- all future emails you send will be delivered
to my mailbox without any further action.
Thank you for your time.
Sincerely,
[EMAIL PROTECTED]
Unsolicited bulk emailers please: remove [EMAIL PROTECTED] from all lists. I
do not wish to receive any unsolicited bulk email.
Original message attached.
--==NextPart==130721835==NextPart==
Content-Type: message/rfc822;
Content-Disposition: attachment;
>From [EMAIL PROTECTED] Mon Nov 10 15:14:38 2008
Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from calista.digitopia.net (calista.digitopia.net [63.240.26.236])
by bsd.inboxlock.com (Postfix) with ESMTP id BDD96B2F05
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:20 -0500 (EST)
Received: from mail.codehaus.org (mail.codehaus.org [63.246.7.187])
by calista.digitopia.net (8.12.8p1/8.12.8) with ESMTP id mAAKEKsw080950
for <[EMAIL PROTECTED]>; Mon, 10 Nov 2008 15:14:20 -0500 (EST)
(envelope-from [EMAIL PROTECTED])
Received: (qmail 16808 invoked by uid 89); 10 Nov 2008 20:14:14 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Post: <http://xircles.codehaus.org/manage_email>
List-Help: <http://xircles.codehaus.org/manage_email>
List-Unsubscribe: <http://xircles.codehaus.org/manage_email>
List-Subscribe: <http://xircles.codehaus.org/manage_email>
List-Id: <dev.xfire.codehaus.org>
Reply-to: dev@xfire.codehaus.org
Delivered-To: mailing list dev@xfire.codehaus.org
Received: (qmail 16788 invoked by uid 89); 10 Nov 2008 20:14:13 -0000
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 10 Nov 2008 14:14:13 -0600 (CST)
From: "Benoit Drolet (JIRA)" <[EMAIL PROTECTED]>
To: dev@xfire.codehaus.org
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Subject: [xfire-dev] [jira] Created: (XFIRE-1133) Unable to create xml element
with a
attribute and a content value using aegis binding.
Unable to create xml element with a attribute and a content value using aegis
binding.
--------------------------------------------------------------------------------------
Key: XFIRE-1133
URL: http://jira.codehaus.org/browse/XFIRE-1133
Project: XFire
Issue Type: Bug
Components: Aegis Module
Affects Versions: 1.2.6
Environment: Windows XP, Eclipse 3.2.0
Reporter: Benoit Drolet
Assignee: Dan Diephouse
I want to create xml element with a attribute and a content value using aegis
binding.
I didn't find a way to create it using actual aegis definition. This is my case:
Fore example, the java class:
public class Employee
{
private String name;
private String title;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getTitle() { return title; }
public void setTitle(String title) { this.title = title; }
}
I have this Aegis Mapping
<mappings xmlns:np="urn:north-pole:operations">
<mapping name="np:Employee">
<property name="name" mappedName="Name" style="attribute" />
<property name="title" mappedName="Title"/>
</mapping>
</mappings>
Actual Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">
<np:Title>Chief Present Officer (CPO)</np:Title>
</np:Employee>
I need to create this xml output format
Expected Result
<np:Employee xmlns:np="urn:north-pole:operations" name="Santa Claus">Chief
Present Officer (CPO)</np:Employee>
there is a way to do this?
Ben
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
--==NextPart==130721835==NextPart==
Content-Type: text/plain; charset=us-ascii
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
--==NextPart==130721835==NextPart==--
--- End Message ---
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email