unsubscribe

2009-11-12 Thread heikki
On Thu, Nov 12, 2009 at 2:30 AM, Rahul Rulz ragul...@yahoo.com wrote: Hi Axis2 Users, If anyone has included MULTIREF in the responses from the server,kindly let me know the procedures to do the same...I have created a SimpleInOut MessageReceiver and have created the service from scratch(not

[Axis2] Handler chain question

2006-08-01 Thread heikki
Hi there,a previous posting of mine on this from about two weeks ago was left unanswered that's why I'll give it another try :I would like to know whether it is possible to to stop a handler chain, in the middle, and return a response from the last handler that executed, WITHOUT throwing an

Re: [Axis2] Handler chain question

2006-08-01 Thread heikki
OK, reposted on the dev list -- see http://marc.theaimsgroup.com/?l=axis-devm=115442861331281thanksHeikki Doeleman On 8/1/06, Davanum Srinivas [EMAIL PROTECTED] wrote: Could you please raise this on axis-dev@ list?thanks,dimsOn 8/1/06, heikki [EMAIL PROTECTED] wrote: Hi there, a previous posting

[Axis2] How to return response from handler

2006-07-18 Thread heikki
and HTTPConstants.MC_HTTP_SERVLETRESPONSE, but no such luck (it's null). Does anyone have an idea how to do this ?thank you,Heikki Doeleman

Re: [Axis2] MessageContext w/o any properties

2006-07-17 Thread heikki
() (and not msgCtx.getOperationContext().getProperty() )Otherwise the HttpServletRequest won't be found.Thank you very much ! Heikki DoelemanOn 7/13/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Heikki;I am sorry for my mistake , I thought that you are invoking serviceusing http post ,there was a problem

Re: [Axis2] MessageContext w/o any properties

2006-07-13 Thread heikki
things from outgoing MC at this stage ? Could you explain what is meant here?Does anyone have more advice on how I could obtain the HttpServletContext in a handler that operates on incoming messages? Surely this should be a quite easy task .. thank you and regards,Heikki DoelemanOn 7/13/06, Carsten

Re: [Axis2] MessageContext w/o any properties

2006-07-13 Thread heikki
build I'm using (from about 3 weeks ago) ? As you can guess: any help, tips and advice is very welcome !Heikki DoelemanOn 7/13/06, Carsten Ziegeler [EMAIL PROTECTED] wrote:Just to be sure, are you sure that your handler is only invoked for incomming request? (I did this mistake and then run

Re: [Axis2] Invalid phases please recheck axis2.xml, handler null added

2006-07-12 Thread heikki
element in axis2.xml, modules.xml and services.xml ? What does it mean, for example, if the class attribute in the module or in the phase elements is absent / present ? If it exists, I'd be happy to be pointed to such documentation ..thank you,Heikki DoelemanOn 7/11/06, Deepal Jayasinghe [EMAIL

[Axis2] MessageContext w/o any properties

2006-07-12 Thread heikki
HttpServletRequest is to retrieve URL params from the HTTP GET request. Is there another way to do achieve this?thanks and regards,Heikki Doeleman

Re: [Axis2] MessageContext w/o any properties

2006-07-12 Thread heikki
where did you obtain the msgContext object?brunoOn 7/12/06, heikki [EMAIL PROTECTED] wrote: Hi there, I'm trying to retrieve the HttpServletRequest in a handler, through its MessageContext, like so HttpServletRequest httpServletRequest = (HttpServletRequest) msgContext.getProperty

Re: [Axis2] Plz help adding logging module server-side

2006-07-11 Thread heikki
Hello,I'm still trying to deploy the sample logging module, server-side. Unfortunately no-one has answered my previous post.. I'll try to state my questions very briefly and clear, hopefully someone has some answers : - where can I find a description of exactly what is the meaning of, and relation

Re: [Axis2] Plz help adding logging module server-side

2006-07-11 Thread heikki
what mistake I was making and keep you informed.thanks !HeikkiOn 7/11/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote:Hi, heikki,I can't tell what is your problem though, I sent my configuration to you by another mail.1. logging.mar2. axis2.xml3. MyService2.aar - you can call this byhttp://localhost

Re: [Axis2] Plz help adding logging module server-side

2006-07-11 Thread heikki
revoke(MessageContext msgContext) { log.info(msgContext.getEnvelope().toString()); } public void setName(QName name) { this.name = name; }On 7/11/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote:Hi heikki,It's nice !Check extra white space in your module.xml .I guess maybe that's your problem

[Axis2] Invalid phases please recheck axis2.xml, handler null added

2006-07-10 Thread heikki
Hi there,I'm trying to add the sample logging module to my service (server-side) as described in http://ws.apache.org/axis2/1_0/userguide4.html#MyService_with_a_Logging_Module . However I run into some probelms -- anyone can shed some light on this ? That would be most appreciated.It looks like

[Axis2] REST vs. SOAP and enableREST

2006-06-29 Thread heikki
and REST messages coming in. But I have a distinct feeling that this is fishy; that I shouldn't have to do this; that I'm missing something here; and that the enableREST parameter setting should have some impact on how Axis2 behaves. Anyone care to explain these matters ?thank you !Heikki Doeleman

Re: [Axis2] Does anyone have the working example of sending large file?

2006-06-22 Thread heikki
Hi,at the company where I worked before, we used the following pattern to do this :- client prepares large file and puts in on its filesystem in a place accessible by FTP- client sends SOAP message informing the web service about the file, and about how to access it through FTP - a server-side

Re: [Axis2] Operation Not found WSA Action = null

2006-06-19 Thread heikki
eteroperation name=MyRQ mep=http://www.w3.org/2004/08/wsdl/in-out actionMappingMyAction/actionMapping/operation/service /serviceGroup Does anyone have an idea what I'm missing or doing wrong ?? thank you Heikki Doeleman

[Axis2] Generated MyServiceMessageReceiverInOut using REST causes UnsupportedOperationException

2006-06-19 Thread heikki
applying this fix is a viable solution? thank you, Heikki Doeleman

[Axis2] Release planning for Axis2 ?

2006-06-19 Thread heikki
?Kind regards,Heikki Doeleman

[Axis2] Operation Not found WSA Action = null

2006-06-15 Thread heikki
Hi,I've seen the earlier posts on similar subjects but I have not found my solution ..I have a service that I want to access in REST style. The client code is String toEpr = http://localhost:7001/axis2/rest/MyService; Options options = new Options(); options.setTo(new EndpointReference(toEpr));