Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Jetty to serve a rest and websocket based webapp with a client built from Dart web components. During development, my rest api is served from a root context via maven's jetty plugin, so for example, the handler I've bound to api/load in my Guice servlet context listener will be available at http://localhost:8080/api/load with mvn jetty:run.

To work around Dart Editor's serving of pages from localhost:3030, I run Dartium with --disable-web-security to allow cross-origin requests to localhost:8080 and I just bind the right development server handlers as static strings inside of my web components:

<x-my-component 
    load-url="{{'http://localhost:8080/api/load'}}" 
    updates-url="{{'ws://localhost:8080/ws/updates'}}">
</x-my-component>
...
<element name="x-my-component" constructor="MyComponent">
  <script type="application/dart">
    class MyComponent extends WebComponent {
      String loadUrl, updatesUrl;
      inserted() {
        new WebSocket(updatesUrl).onMessage.listen((e) => ...);
        new HttpRequest.get(loadUrl,(req) => ...);
      }
    }
  </script>
</element>

This works great for rapid development of clientside Dart widgets against my Jetty server launched with maven. But how do I serve the client widgets from a war file placed in /var/lib/jetty8/webapps/ with correct relative context path handlers? I can place the static output files generated by dwc and dart2js in src/main/webapp/, and then build a war (for example, foo.war) containing those files, but first I need to fix up a few paths in the output files using sed, like stripping out the ../s from the dwc/dart2js output:

<link href="../mystylesheet.css" rel="stylesheet">
<script type="text/javascript" src="../packages/browser/dart.js"></script>

because when jetty serves foo.war I need those paths to actually point to e.g. http://myserver/foo/mystylesheet.css instead of the nonexistent http://myserver/mystylesheet.css

So, that's easy. But in the generated javascript, I still have those static strings to my path handles which were bound to loadUrl and updatesUrl above. For HttpRequest.get() calls, I can again use sed to replace all instances of http://localhost:8080/ with the empty string in the generated javascript, so that now loadUrl is just bound to "api/load", and HttpRequest.get() will correctly perform a request relative to the context path defined by my war file's name, to http://myserver/foo/api/load, but what do I do about the websocket urls?

If I use sed to replace ws://localhost:8080/ with the empty string, the generated javascript incorrectly prepends http: as the protocol to the url. I could instead use window.location to construct a ws: uri inside of my webcomponent which points to the correct relative path when served from jetty, e.g. "ws:" + window.location ("//myserver/foo/") + updatesUrl ("ws/updates"), but then I'll lose my ability to rapidly develop from the Dart Editor, since window.location points to localhost:3030 instead of localhost:8080 (unless I also add some sort of dev-mode hack into my Dart code).

Is the only workaround that will preserve my development environment to extract the war file into /var/lib/jetty8/webapps/root? In that case I'd no longer have to depend on sed to fix up all those paths, but I really want the ability to package up a ready-to-go war file instead. Is there a jetty configuration setting that could help me out?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.