You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Julien HENRY <he...@yahoo.fr> on 2007/04/05 13:25:28 UTC

Re : [Axis2] Axis2 1.2 RC2 Released

Do you plan to provide a Maven 2 repository ?

++

Julien

----- Message d'origine ----
De : Deepal Jayasinghe <de...@opensource.lk>
À : "axis-dev@ws.apache.org" <ax...@ws.apache.org>; "axis-user@ws.apache.org" <ax...@ws.apache.org>
Envoyé le : Mardi, 3 Avril 2007, 12h59mn 49s
Objet : [Axis2] Axis2 1.2 RC2 Released




  

Hi all,



I uploaded Axis2 1.2 RC2 release artifacts. Please help us by
downloading and reviewing them.



Download locations :

binary distributions-

http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2.zip

source distribution 

http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-src.zip

docs distribution

http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-docs.zip

war distribution

http://people.apache.org/~deepal/axis2/1.2-RC2/axis2.war



jars

http://people.apache.org/~deepal/maven/org.apache.axis2/jars/



mars (addressing and soapmonitor)

http://people.apache.org/~deepal/maven/org.apache.axis2/mars/



poms

http://people.apache.org/~deepal/maven/org.apache.axis2/poms/





According to the release plan, I'm expecting to release Axis2 1.2 on

6th   April, 2007.





Features included in the release :

- WSDL 2.0 fully support

(Reading , writing and codegen)

- POJO – annotation 

- JAX-WS integration

- JAX-WS -annotation

- Un-wrapping (Response) 

- ADB - missing schema support 

- Maven2 support

- JSON support 

- Binary serialization (Fast Inforset)

- Multiple services support in code gen 

- HTTP code generation (both WSDL 1.1 and 2.0)

- Fix/update helper mode 

- Custom deployers support

- Message formatters

- Message Builders



In addition to above major features we have fixed numerous JIRA issues.





Thanks,

 Deepal









	

	
		
___________________________________________________________________________ 
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses 
http://fr.answers.yahoo.com

Re: [Axis2] Axis2 1.2 RC2 Released - SOAP problem

Posted by david2 <Da...@l-3comcept.com>.
Alistair,

I just encountered this, too.  My *.aar ran fine in Wondows XP, but gets the
same "First Element must contain the local name, Envelope" error when I
tried to run it under Linux.  However, I am only using a single WSDL with an
imported XSD file.  Is there any was around inserting the XSD into the WSDL?

-David

-- 
View this message in context: http://www.nabble.com/Re-%3A--Axis2--Axis2-1.2-RC2-Released-tf3531026.html#a10401246
Sent from the Axis - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [Axis2] Axis2 1.2 RC2 Released - SOAP problem

Posted by Alistair Young <al...@smo.uhi.ac.uk>.
sorted! was my fault (as usual!).

In the modular WSDL, the messages.wsdl file wasn't importing the
messages-types.xsd. It was imported in the root WSDL file but wasn't
making it's way down to the messages.wsdl file.

Removing the xsd import from the root WSDL and putting it in the
messages.wsdl solved the problem.

must blog that...

Alistair


-- 
mov eax,1
mov ebx,0
int 80h

> The problem only occurs if I split up the WSDL into modular parts:
>
> WSDL_1 includes types from two XSD files
> WSDL_1 imports bindings from WSDL_2
> bindings imports portTypes from WSDL_3
> portTypes imports messages from WSDL_4
>
> if I combine the whole lot into one WSDL file, it works.
>
> In both cases the SOAP on the wire is identical so it must be something to
> do with the generated classes in the service.
>
> Alistair
>
>
>
> --
> mov eax,1
> mov ebx,0
> int 80h
>
>> Using the nightly build.
>>
>> In my MessageReceiverInOut I get this error when invoking a web service:
>>
>> org.apache.axis2.AxisFault: First Element must contain the local name,
>> Envelope
>>
>> I've checked on the wire and this is what comes in:
>>
>> <?xml version='1.0' encoding='UTF-8'?>
>> <soapenv:Envelope
>> xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>> 	<soapenv:Body>
>> 		<GetBriefcaseInput
>> xmlns="uk:ac:ox:oucs:ask:repo:ws:collectionmanager:messages:types">
>> 			<caller />
>> 			<uid />
>> 		</GetBriefcaseInput>
>> 	</soapenv:Body>
>> </soapenv:Envelope>
>>
>> the problem happens when the message receiver calls fromOM():
>>                                                              (GetBriefcaseInputDocument)fromOM(
>> msgContext.getEnvelope().getBody().getFirstElement(),
>> GetBriefcaseInputDocument.class,
>> getEnvelopeNamespaces(msgContext.getEnvelope()));
>>
>> why would it say that Envelope is missing?
>>
>> thanks,
>>
>> Alistair
>>
>>
>>
>>
>> --
>> mov eax,1
>> mov ebx,0
>> int 80h
>>
>>> Hi Deepal
>>>
>>> Let me suggest that the problem arises because Axis2 doesn't take the
>>> service namespace into account. In my opinion services should be
>>> differentiated by both name and namespace. This should be the "key"
>>> for any mapping. Imagine that I have many clients wanting to deploy
>>> services - then it will be guaranteed that there are collisions in
>>> names. If they would use their own company namespace, in addition to
>>> that, this problem would be certainly avoided. Thanks.
>>>
>>> Regards,
>>> Angel
>>>
>>> On 4/6/07, Deepal Jayasinghe <de...@opensource.lk> wrote:
>>>> Hi All;
>>>>
>>>> I think this a major issue AFAIK , if some one generate services for
>>>> two
>>>> wsdls then he will get two services with the same name . Then the
>>>> issue
>>>> is how do you differentiate the two ? you can not deploy the files
>>>> with
>>>> the same name to services directory (only one will be picked up).
>>>> Therefore I think we need to fix this b4 the release and I think we
>>>> should either pick WSDL file name as the service aar name or the one
>>>> of
>>>> the service name in the wsdl as the service aar file name.
>>>>
>>>> Thanks
>>>> Deepal
>>>>
>>>> Alistair Young wrote:
>>>>
>>>> >wsdl2java now creates the service as Service.aar instead of
>>>> >ServiceName.aar. e.g. previously, if your service was called
>>>> >MinervaService, you would get:
>>>> >build/lib/MinervaService.aar
>>>> >
>>>> >now you get:
>>>> >build/lib/Service.aar
>>>> >
>>>> >so you have to rename before deploying (as they're all called
>>>> Service.aar
>>>> >now)
>>>> >
>>>> >Alistair
>>>> >
>>>> >
>>>> >
>>>> >
>>>>
>>>> --
>>>> Thanks,
>>>> Deepal
>>>> ................................................................
>>>> "The highest tower is built one brick at a time"
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> 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
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> 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
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [Axis2] Axis2 1.2 RC2 Released - SOAP problem

Posted by Alistair Young <al...@smo.uhi.ac.uk>.
The problem only occurs if I split up the WSDL into modular parts:

WSDL_1 includes types from two XSD files
WSDL_1 imports bindings from WSDL_2
bindings imports portTypes from WSDL_3
portTypes imports messages from WSDL_4

if I combine the whole lot into one WSDL file, it works.

In both cases the SOAP on the wire is identical so it must be something to
do with the generated classes in the service.

Alistair



-- 
mov eax,1
mov ebx,0
int 80h

> Using the nightly build.
>
> In my MessageReceiverInOut I get this error when invoking a web service:
>
> org.apache.axis2.AxisFault: First Element must contain the local name,
> Envelope
>
> I've checked on the wire and this is what comes in:
>
> <?xml version='1.0' encoding='UTF-8'?>
> <soapenv:Envelope
> xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
> 	<soapenv:Body>
> 		<GetBriefcaseInput
> xmlns="uk:ac:ox:oucs:ask:repo:ws:collectionmanager:messages:types">
> 			<caller />
> 			<uid />
> 		</GetBriefcaseInput>
> 	</soapenv:Body>
> </soapenv:Envelope>
>
> the problem happens when the message receiver calls fromOM():
>                                                              (GetBriefcaseInputDocument)fromOM(
> msgContext.getEnvelope().getBody().getFirstElement(),
> GetBriefcaseInputDocument.class,
> getEnvelopeNamespaces(msgContext.getEnvelope()));
>
> why would it say that Envelope is missing?
>
> thanks,
>
> Alistair
>
>
>
>
> --
> mov eax,1
> mov ebx,0
> int 80h
>
>> Hi Deepal
>>
>> Let me suggest that the problem arises because Axis2 doesn't take the
>> service namespace into account. In my opinion services should be
>> differentiated by both name and namespace. This should be the "key"
>> for any mapping. Imagine that I have many clients wanting to deploy
>> services - then it will be guaranteed that there are collisions in
>> names. If they would use their own company namespace, in addition to
>> that, this problem would be certainly avoided. Thanks.
>>
>> Regards,
>> Angel
>>
>> On 4/6/07, Deepal Jayasinghe <de...@opensource.lk> wrote:
>>> Hi All;
>>>
>>> I think this a major issue AFAIK , if some one generate services for
>>> two
>>> wsdls then he will get two services with the same name . Then the issue
>>> is how do you differentiate the two ? you can not deploy the files with
>>> the same name to services directory (only one will be picked up).
>>> Therefore I think we need to fix this b4 the release and I think we
>>> should either pick WSDL file name as the service aar name or the one of
>>> the service name in the wsdl as the service aar file name.
>>>
>>> Thanks
>>> Deepal
>>>
>>> Alistair Young wrote:
>>>
>>> >wsdl2java now creates the service as Service.aar instead of
>>> >ServiceName.aar. e.g. previously, if your service was called
>>> >MinervaService, you would get:
>>> >build/lib/MinervaService.aar
>>> >
>>> >now you get:
>>> >build/lib/Service.aar
>>> >
>>> >so you have to rename before deploying (as they're all called
>>> Service.aar
>>> >now)
>>> >
>>> >Alistair
>>> >
>>> >
>>> >
>>> >
>>>
>>> --
>>> Thanks,
>>> Deepal
>>> ................................................................
>>> "The highest tower is built one brick at a time"
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> 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
>>
>>
>
>
> ---------------------------------------------------------------------
> 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


Re: [Axis2] Axis2 1.2 RC2 Released - SOAP problem

Posted by Alistair Young <al...@smo.uhi.ac.uk>.
Using the nightly build.

In my MessageReceiverInOut I get this error when invoking a web service:

org.apache.axis2.AxisFault: First Element must contain the local name,
Envelope

I've checked on the wire and this is what comes in:

<?xml version='1.0' encoding='UTF-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<GetBriefcaseInput
xmlns="uk:ac:ox:oucs:ask:repo:ws:collectionmanager:messages:types">
			<caller />
			<uid />
		</GetBriefcaseInput>
	</soapenv:Body>
</soapenv:Envelope>

the problem happens when the message receiver calls fromOM():
                                                             (GetBriefcaseInputDocument)fromOM(
msgContext.getEnvelope().getBody().getFirstElement(),
GetBriefcaseInputDocument.class,
getEnvelopeNamespaces(msgContext.getEnvelope()));

why would it say that Envelope is missing?

thanks,

Alistair




-- 
mov eax,1
mov ebx,0
int 80h

> Hi Deepal
>
> Let me suggest that the problem arises because Axis2 doesn't take the
> service namespace into account. In my opinion services should be
> differentiated by both name and namespace. This should be the "key"
> for any mapping. Imagine that I have many clients wanting to deploy
> services - then it will be guaranteed that there are collisions in
> names. If they would use their own company namespace, in addition to
> that, this problem would be certainly avoided. Thanks.
>
> Regards,
> Angel
>
> On 4/6/07, Deepal Jayasinghe <de...@opensource.lk> wrote:
>> Hi All;
>>
>> I think this a major issue AFAIK , if some one generate services for two
>> wsdls then he will get two services with the same name . Then the issue
>> is how do you differentiate the two ? you can not deploy the files with
>> the same name to services directory (only one will be picked up).
>> Therefore I think we need to fix this b4 the release and I think we
>> should either pick WSDL file name as the service aar name or the one of
>> the service name in the wsdl as the service aar file name.
>>
>> Thanks
>> Deepal
>>
>> Alistair Young wrote:
>>
>> >wsdl2java now creates the service as Service.aar instead of
>> >ServiceName.aar. e.g. previously, if your service was called
>> >MinervaService, you would get:
>> >build/lib/MinervaService.aar
>> >
>> >now you get:
>> >build/lib/Service.aar
>> >
>> >so you have to rename before deploying (as they're all called
>> Service.aar
>> >now)
>> >
>> >Alistair
>> >
>> >
>> >
>> >
>>
>> --
>> Thanks,
>> Deepal
>> ................................................................
>> "The highest tower is built one brick at a time"
>>
>>
>>
>> ---------------------------------------------------------------------
>> 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
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: Re : [Axis2] Axis2 1.2 RC2 Released

Posted by Angel Todorov <at...@gmail.com>.
Hi Deepal

Let me suggest that the problem arises because Axis2 doesn't take the
service namespace into account. In my opinion services should be
differentiated by both name and namespace. This should be the "key"
for any mapping. Imagine that I have many clients wanting to deploy
services - then it will be guaranteed that there are collisions in
names. If they would use their own company namespace, in addition to
that, this problem would be certainly avoided. Thanks.

Regards,
Angel

On 4/6/07, Deepal Jayasinghe <de...@opensource.lk> wrote:
> Hi All;
>
> I think this a major issue AFAIK , if some one generate services for two
> wsdls then he will get two services with the same name . Then the issue
> is how do you differentiate the two ? you can not deploy the files with
> the same name to services directory (only one will be picked up).
> Therefore I think we need to fix this b4 the release and I think we
> should either pick WSDL file name as the service aar name or the one of
> the service name in the wsdl as the service aar file name.
>
> Thanks
> Deepal
>
> Alistair Young wrote:
>
> >wsdl2java now creates the service as Service.aar instead of
> >ServiceName.aar. e.g. previously, if your service was called
> >MinervaService, you would get:
> >build/lib/MinervaService.aar
> >
> >now you get:
> >build/lib/Service.aar
> >
> >so you have to rename before deploying (as they're all called Service.aar
> >now)
> >
> >Alistair
> >
> >
> >
> >
>
> --
> Thanks,
> Deepal
> ................................................................
> "The highest tower is built one brick at a time"
>
>
>
> ---------------------------------------------------------------------
> 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


Re: Re : [Axis2] Axis2 1.2 RC2 Released

Posted by Deepal Jayasinghe <de...@opensource.lk>.
Hi All;

I think this a major issue AFAIK , if some one generate services for two
wsdls then he will get two services with the same name . Then the issue
is how do you differentiate the two ? you can not deploy the files with
the same name to services directory (only one will be picked up).
Therefore I think we need to fix this b4 the release and I think we
should either pick WSDL file name as the service aar name or the one of
the service name in the wsdl as the service aar file name.

Thanks
Deepal

Alistair Young wrote:

>wsdl2java now creates the service as Service.aar instead of
>ServiceName.aar. e.g. previously, if your service was called
>MinervaService, you would get:
>build/lib/MinervaService.aar
>
>now you get:
>build/lib/Service.aar
>
>so you have to rename before deploying (as they're all called Service.aar
>now)
>
>Alistair
>
>
>  
>

-- 
Thanks,
Deepal
................................................................
"The highest tower is built one brick at a time"



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


RE: Problem settin classpath of axis2 jar files --Beginner question

Posted by Peter Gylling Jørgensen <Pe...@frv.dk>.
Check out:
http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html
http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/classpath.html
http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/classpath.html

If anymore help is needed you will have to be specific about how you plan to use the AXIS2 software.

\pgj

> -----Original Message-----
> From: Inder Dhillon [mailto:dhillon@cs.dal.ca] 
> Sent: Friday, April 13, 2007 10:20 PM
> To: axis-user@ws.apache.org; axis-dev@ws.apache.org
> Subject: Problem settin classpath of axis2 jar files 
> --Beginner question
> 
> 
> Hello
> 
> I know this is basic question but I am having problem in 
> setting the axis2
> jar files located in lib folder into classpath. I tried to 
> set but its not
> working. I'll really appreciate if someone can help me with this.
> 
> Inder
> 
> 
> 
> ---------------------------------------------------------------------
> 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


Problem settin classpath of axis2 jar files --Beginner question

Posted by Inder Dhillon <dh...@cs.dal.ca>.
Hello

I know this is basic question but I am having problem in setting the axis2
jar files located in lib folder into classpath. I tried to set but its not
working. I'll really appreciate if someone can help me with this.

Inder



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Problem settin classpath of axis2 jar files --Beginner question

Posted by Inder Dhillon <dh...@cs.dal.ca>.
Hello

I know this is basic question but I am having problem in setting the axis2
jar files located in lib folder into classpath. I tried to set but its not
working. I'll really appreciate if someone can help me with this.

Inder



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


Re: Re : [Axis2] Axis2 1.2 RC2 Released

Posted by Alistair Young <al...@smo.uhi.ac.uk>.
wsdl2java now creates the service as Service.aar instead of
ServiceName.aar. e.g. previously, if your service was called
MinervaService, you would get:
build/lib/MinervaService.aar

now you get:
build/lib/Service.aar

so you have to rename before deploying (as they're all called Service.aar
now)

Alistair


-- 
mov eax,1
mov ebx,0
int 80h

> Snapshots,
> http://people.apache.org/repo/m2-snapshot-repository/
>
> Releases,
> http://people.apache.org/repo/m2-ibiblio-rsync-repository/
>
> ~Thilina
>
> On 4/5/07, Julien HENRY <he...@yahoo.fr> wrote:
>>
>> Do you plan to provide a Maven 2 repository ?
>>
>> ++
>>
>> Julien
>>
>> ----- Message d'origine ----
>> De : Deepal Jayasinghe <de...@opensource.lk>
>> À : "axis-dev@ws.apache.org" <ax...@ws.apache.org>;
>> "axis-user@ws.apache.org" <ax...@ws.apache.org>
>> Envoyé le : Mardi, 3 Avril 2007, 12h59mn 49s
>> Objet : [Axis2] Axis2 1.2 RC2 Released
>>
>>
>>  Hi all,
>>
>>  I uploaded Axis2 1.2 RC2 release artifacts. Please help us by
>> downloading
>> and reviewing them.
>>
>>  Download locations :
>>  binary distributions-
>> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2.zip
>>  source distribution
>> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-src.zip
>>  docs distribution
>> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-docs.zip
>>  war distribution
>>  http://people.apache.org/~deepal/axis2/1.2-RC2/axis2.war
>>
>>  jars
>> http://people.apache.org/~deepal/maven/org.apache.axis2/jars/
>>
>>  mars (addressing and soapmonitor)
>> http://people.apache.org/~deepal/maven/org.apache.axis2/mars/
>>
>>  poms
>> http://people.apache.org/~deepal/maven/org.apache.axis2/poms/
>>
>>
>>  According to the release plan, I'm expecting to release Axis2 1.2 on
>>  6th   April, 2007.
>>
>>
>>  Features included in the release :
>>  - WSDL 2.0 fully support
>>  (Reading , writing and codegen)
>>  - POJO – annotation
>>  - JAX-WS integration
>>  - JAX-WS -annotation
>>  - Un-wrapping (Response)
>>  - ADB - missing schema support
>>  - Maven2 support
>>  - JSON support
>>  - Binary serialization (Fast Inforset)
>>  - Multiple services support in code gen
>>  - HTTP code generation (both WSDL 1.1 and 2.0)
>>  - Fix/update helper mode
>>  - Custom deployers support
>>  - Message formatters
>>  - Message Builders
>>
>>  In addition to above major features we have fixed numerous JIRA issues.
>>
>>
>>  Thanks,
>>   Deepal
>>
>>
>>
>>  ________________________________
>>  Découvrez une nouvelle façon d'obtenir des réponses à toutes vos
>> questions
>> ! Profitez des connaissances, des opinions et des expériences des
>> internautes sur Yahoo! Questions/Réponses.
>
>
> --
> Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com
>
> ---------------------------------------------------------------------
> 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


Re: Re : [Axis2] Axis2 1.2 RC2 Released

Posted by Thilina Gunarathne <cs...@gmail.com>.
Snapshots,
http://people.apache.org/repo/m2-snapshot-repository/

Releases,
http://people.apache.org/repo/m2-ibiblio-rsync-repository/

~Thilina

On 4/5/07, Julien HENRY <he...@yahoo.fr> wrote:
>
> Do you plan to provide a Maven 2 repository ?
>
> ++
>
> Julien
>
> ----- Message d'origine ----
> De : Deepal Jayasinghe <de...@opensource.lk>
> À : "axis-dev@ws.apache.org" <ax...@ws.apache.org>;
> "axis-user@ws.apache.org" <ax...@ws.apache.org>
> Envoyé le : Mardi, 3 Avril 2007, 12h59mn 49s
> Objet : [Axis2] Axis2 1.2 RC2 Released
>
>
>  Hi all,
>
>  I uploaded Axis2 1.2 RC2 release artifacts. Please help us by downloading
> and reviewing them.
>
>  Download locations :
>  binary distributions-
> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2.zip
>  source distribution
> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-src.zip
>  docs distribution
> http://people.apache.org/~deepal/axis2/1.2-RC2/axis2-1.2-RC2-docs.zip
>  war distribution
>  http://people.apache.org/~deepal/axis2/1.2-RC2/axis2.war
>
>  jars
> http://people.apache.org/~deepal/maven/org.apache.axis2/jars/
>
>  mars (addressing and soapmonitor)
> http://people.apache.org/~deepal/maven/org.apache.axis2/mars/
>
>  poms
> http://people.apache.org/~deepal/maven/org.apache.axis2/poms/
>
>
>  According to the release plan, I'm expecting to release Axis2 1.2 on
>  6th   April, 2007.
>
>
>  Features included in the release :
>  - WSDL 2.0 fully support
>  (Reading , writing and codegen)
>  - POJO – annotation
>  - JAX-WS integration
>  - JAX-WS -annotation
>  - Un-wrapping (Response)
>  - ADB - missing schema support
>  - Maven2 support
>  - JSON support
>  - Binary serialization (Fast Inforset)
>  - Multiple services support in code gen
>  - HTTP code generation (both WSDL 1.1 and 2.0)
>  - Fix/update helper mode
>  - Custom deployers support
>  - Message formatters
>  - Message Builders
>
>  In addition to above major features we have fixed numerous JIRA issues.
>
>
>  Thanks,
>   Deepal
>
>
>
>  ________________________________
>  Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions
> ! Profitez des connaissances, des opinions et des expériences des
> internautes sur Yahoo! Questions/Réponses.


-- 
Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org