Hi,

I am using xfire's wsdl auto-generation and need to
set the binding verb in the WSDL to GET. Below are my
web.xml and services.xml files. Is there anything I
can set in these configuration files to have this
service use HTTP GET instead of POST (which seems to
be the default since that what it is currently doing).

Any help you can provide is greatly appreciated.

Thanks,
Chris


==============web.xml===============================
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- START SNIPPET: webxml -->
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web
Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd";>
    
<web-app>

  <servlet>
    <servlet-name>XFireServlet</servlet-name>
    <display-name>XFire Servlet</display-name>
    <servlet-class>
       
org.codehaus.xfire.transport.http.XFireConfigurableServlet
    </servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>XFireServlet</servlet-name>
    <url-pattern>/servlet/XFireServlet/*</url-pattern>
  </servlet-mapping>

  <servlet-mapping>
    <servlet-name>XFireServlet</servlet-name>
    <url-pattern>/services/*</url-pattern>
  </servlet-mapping>
</web-app>
<!-- END SNIPPET: webxml -->
==============web.xml===============================


==============services.xml==========================
<beans xmlns="http://xfire.codehaus.org/config/1.0";>
        <service>
                <name>TrackTraceService</name>
        
<namespace>http://ibi.usps.accenture.com/TrackTraceService</namespace>
        
<serviceClass>com.accenture.usps.ibi.webservice.WebService</serviceClass>
        
<implementationClass>com.accenture.usps.ibi.webservice.WebServiceImpl</implementationClass>
                <properties>
                        <property key="mtom-enabled">true</property>
                </properties>
        </service>
</beans>
==============services.xml==========================

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to