ServerB defines an element like this:
<link rel="import" href="../core-menu/core-menu.html">
<polymer-element name=„elementB“….</polymer-element>
ServerA serves the index.html, which uses element B like this:
<link rel="import" href="../core-menu/core-menu.html">
...
<elementB></elementB>
...
The issue is, that HTML import adds a hostname to the imports at ServerB. So core-menu.html will be imported twice with two different URLs. This results in an polymer „element already registered“ exception.
I think using elements from different URLs pr server is a usual use case, right.
So, what is the correct way to handle this?
best Christopher