There is a problem with the solution specified in the JBossWSAndDotNet wiki concerning the HTTP version not supported and a .NET client problem. It it said to add the restrictedUserAgents param present in the server.xml file to the tomcat connector.
<!-- Add this option to the connector to avoid problems with | .NET clients that don't implement HTTP/1.1 correctly | restrictedUserAgents="^.*MS Web Services Client Protocol 1.1.4322.*$" | --> The regex used is partly wrong. In the .NET System.Web.Services.Protocols.HttpWebClientProtocol class documentation, it is stated that method UserAgent // Returns: | // The value of the HTTP protocol user agent header. The default is "MS Web | // Services Client Protocol number ", where number is the version of the common | // language runtime (for example, 1.0.3705.0). Since the solution provided in the wiki and the server.xml is dependant on the client CLR version used, the regex should be changed to this: restrictedUserAgents="^.*MS Web Services Client Protocol.*$" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941353#3941353 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941353 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
