[jira] [Created] (AXIS2-5108) Axis2 code generator plugin for eclipse

2011-08-02 Thread Samresh Kumar (JIRA)
Axis2 code generator plugin for eclipse --- Key: AXIS2-5108 URL: https://issues.apache.org/jira/browse/AXIS2-5108 Project: Axis2 Issue Type: Bug Components: wsdl Affects Versions: 1.6.0

[jira] [Commented] (AXIS2-5105) Validation fails when the nillable=false in element types in schema

2011-08-02 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5105?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13076277#comment-13076277 ] Hudson commented on AXIS2-5105: --- Integrated in Axis2 #894 (See [https://builds.apache.org/jo

[jira] [Commented] (AXIS2-5106) jaxws-calculator sample does not compile on JDK 1.6

2011-08-02 Thread Sagara Gunathunga (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13076253#comment-13076253 ] Sagara Gunathunga commented on AXIS2-5106: --- This should be something related to

AW: How to get xml string of axis2 object

2011-08-02 Thread Stadelmann Josef
Assumption: If your so called "input object" is of type org.apache.axiom.om.OMElement, then you can look for the toString() method builds the OM Node Tree in Memory and then converts to an xml-string. But it dependes what object type arrives at the service or the client. Josef -Ursprünglich

[jira] [Updated] (AXIS2-5106) jaxws-calculator sample does not compile on JDK 1.6

2011-08-02 Thread Ognjen Blagojevic (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ognjen Blagojevic updated AXIS2-5106: - Priority: Minor (was: Major) Summary: jaxws-calculator sample does not compile on JD

How to read file from META-INF

2011-08-02 Thread Denise Wu
Hi, I have a "mySchema.xsd" located in the META-INF directory in the webservice archive file myService.aar. I would like to read this file "mySchema.xsd" in my webservice class. How to access it at runtime? Thank you. - To unsub

[jira] [Commented] (AXIS2-5107) Axis2 should be able to read MTOM attachments directly from the input stream without building them in memory or a file.

2011-08-02 Thread Andreas Veithen (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13076162#comment-13076162 ] Andreas Veithen commented on AXIS2-5107: As I said in the discussion in the mailin

[jira] [Updated] (AXIS2-5107) Axis2 should be able to read MTOM attachments directly from the input stream without building them in memory or a file.

2011-08-02 Thread Sadeep Jayasumana (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sadeep Jayasumana updated AXIS2-5107: - Attachment: AXIS2-5107.patch Attaching a patch that is consistent with the existing cache

[jira] [Created] (AXIS2-5107) Axis2 should be able to read MTOM attachments directly from the input stream without building them in memory or a file.

2011-08-02 Thread Sadeep Jayasumana (JIRA)
Axis2 should be able to read MTOM attachments directly from the input stream without building them in memory or a file. --- Key: AXIS2-5107 URL: ht

Re: How to get xml string of axis2 object

2011-08-02 Thread Denise Wu
I used the following code and it worked: SOAPFactory factory = OMAbstractFactory.getSOAP11Factory(); OMElement om = myAxisObiect.getOMElement(myAxisObiect.MY_QNAME, factory); System.out.println(" xml string --> " +om.toStringWithConsume()); Thanks On Tue, Aug 2, 2011 a

Re: How to get xml string of axis2 object

2011-08-02 Thread bhima santosh
SOAPFactory factory = OMAbstractFactory.getSOAP11Factory(); OMElement crmAuthenticationTokenOMElement = factory .createOMElement(new QName( "serviceUrl", "serviceName")); On Tue, Aug 2, 2011 at 3:41 PM, Denise Wu wrote: > H

Re: How to get xml string of axis2 object

2011-08-02 Thread Denise Wu
Hi Swapna, I need for that to get the OMElement from the object. Axis2 offers the getOMElement(parentQName, factory) method. My question is how to know the parameters 'parentQName' and 'factory' values needed in my case. Thank you for your help, On Tue, Aug 2, 2011 at 10:38 AM, swapna soni wro

[jira] [Created] (AXIS2-5106) jaxws-calculator sample does not compile

2011-08-02 Thread Ognjen Blagojevic (JIRA)
jaxws-calculator sample does not compile Key: AXIS2-5106 URL: https://issues.apache.org/jira/browse/AXIS2-5106 Project: Axis2 Issue Type: Bug Components: samples Affects Versions: 1.6.0

[jira] [Commented] (AXIS2-5085) Fixing an issue in WSDL generation for the services exposed only in local transport

2011-08-02 Thread Amila Chinthaka Suriarachchi (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5085?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13076112#comment-13076112 ] Amila Chinthaka Suriarachchi commented on AXIS2-5085: - have you added

RE: How to get xml string of axis2 object

2011-08-02 Thread swapna soni
Hi Denise, If it is OMElement, you can just say obj.toString(). Thanks, Swapna Soni. -Original Message- From: Denise Wu [mailto:wadie...@gmail.com] Sent: Tuesday, August 02, 2011 3:01 PM To: java-dev@axis.apache.org Subject: Re: How to get xml string of axis2 object Yes, but that's n

Re: How to get xml string of axis2 object

2011-08-02 Thread bhima santosh
wat is axis2 object On Tue, Aug 2, 2011 at 3:00 PM, Denise Wu wrote: > Yes, but that's not my question. > My question is about converting an axis2 object into its xml > representation. > > > > On Tue, Aug 2, 2011 at 10:28 AM, bhima santosh > wrote: > > > > checkout testskillshome.com for xml to

Re: How to get xml string of axis2 object

2011-08-02 Thread Denise Wu
Yes, but that's not my question. My question is about converting an axis2 object into its xml representation. On Tue, Aug 2, 2011 at 10:28 AM, bhima santosh wrote: > > checkout testskillshome.com for xml to string conversion > > On Tue, Aug 2, 2011 at 2:56 PM, Denise Wu wrote: >> >> Hi, >> >>

Re: How to get xml string of axis2 object

2011-08-02 Thread bhima santosh
checkout testskillshome.com for xml to string conversion On Tue, Aug 2, 2011 at 2:56 PM, Denise Wu wrote: > Hi, > > How to convert the input object of a webservice method into its xml > string representation? > Thank you, > > Denise. > > --

How to get xml string of axis2 object

2011-08-02 Thread Denise Wu
Hi, How to convert the input object of a webservice method into its xml string representation? Thank you, Denise. - To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org For additional commands, e-mail: java-dev-h...@axis

[jira] [Resolved] (AXIS2-5105) Validation fails when the nillable=false in element types in schema

2011-08-02 Thread Amila Chinthaka Suriarachchi (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5105?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Amila Chinthaka Suriarachchi resolved AXIS2-5105. - Resolution: Fixed applied the patch revision 1153072 > Validatio