NullPointerException when ?wsdl url contains extra parameters.

2007-08-27 Thread Ray Krueger
I opened bug CXF-948 for this, but anyway; here's the problem. Deploying CXF via the CXFServlet, you will get a NullPointerException when your URL contains extra parameters... This URL http://localhost:8181/ws/soap/CurrencyExchange?wsdl&username=TEST&password=password Causes this stack trace...

Re: NullPointerException when ?wsdl url contains extra parameters.

2007-08-28 Thread Willem Jiang
Hi Ray, I traced the code and found that WSDLQueryHandler will take the string behind ?wsdl as the wsdl name. So when you query the wsdl from the service with the below url. http://localhost:8181/ws/soap/CurrencyExchange?wsdl&username=TEST&password=password WSDLQuery will try to retrieve th

Re: NullPointerException when ?wsdl url contains extra parameters.

2007-08-28 Thread Ray Krueger
Yeah that's why I opened the bug. I'm passing a properly formatted query string, the default WSDLQuery handler should respect that. It shouldn't require custom code to handle standard URLs. On 8/28/07, Willem Jiang <[EMAIL PROTECTED]> wrote: > Hi Ray, > > I traced the code and found that WSDLQuery