Hi all, Well, I have a solution to this particular error. Part of the error message looked like this:
<P> >> Squid does not support all request methods for all access protocols. >> For example, you can not POST a Gopher request. >> <P>Your cache administrator is <A HREF="mailto:root">root</A>. >> >> Which was not obvious to me at the start. However, once I saw it, I remembered that for CXF in some cases the client user will need to add the following to their cxf.xml file inside the beans tags: <!-- If you get an error message that includes messages about a Squid proxy, and that gives a 501 "Unsupported Request Method and Protocol", the following http-conf:conduit element should be uncommented to disable chunking. Otherwise, it should be commented out. --> <http-conf:conduit name="*.http-conduit"> <http-conf:client AllowChunking="false"/> </http-conf:conduit> I'll class this as the solution to this thread, and move on. However, this solution has exposed another question I have, which I will put in the start of another thread. Hope this helps others! :) allyson
