Hi,

It seems that Embedded.createConnector doesn't create a HTTP connector. If I do

  connector = embedded.createConnector((String) null, 8080, "http");

connector is null. In fact, I haven't been able to find a way to create it other than do the following:

  connector = new Connector("HTTP/1.1");
  connector.setPort(8080);

Is it how it should be done?

Jacek


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to