CXF Gurus,
If I have a java first web service:
package com.example;
@WebService
FooWebService {
void updateItem(Item item);
}
Where Item lives in:
package com.somewhere.else;
public class Item {
}
If I deploy this web service, Item's namespace is the same as
FooWebService's namespace which is "http://example.com". Is there a global
config which causes the data objects to have their namespace based on their
package?
I know I can have a package-info.java file in the Item's directory that
will override it's namespace - but I am wondering if there is a more
convenient way of achieving this behavior globally?
tia,
rouble