• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Axis 2 - control SOAP bindings

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

sorry if it's a stupid question

I'm trying to control the SOAP bindings generated by Axis 2, using the parameters disableSOAP11 as follows:



However, when I start my service the SOAP11 binding is still there.

Does anybody have any inkling of a clue as to what I'm doing wrong here?

Thanks!
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can try using <parameter name="disableSOAP11" locked="true">true</parameter> instead of <parameter name="disableSOAP11">true</parameter> so
that no one overrides the parameter.

Regards,
Amit
 
Luiz Henrique Zambom Santana
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Amit, thanks for the answer.

I tried using , but didn't work as well !

Do you know if there is any limitation to this tag?

Thanks a lot!
 
Ranch Hand
Posts: 78
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


This works fine for me. I am using Axis2-1.5
 
reply
    Bookmark Topic Watch Topic
  • New Topic