Hi all,
I'm using CXF-SE to expose a Web Service in SM 3.3.
When i'm deploying it i get this message:
DEBUG - CxfSeComponent - Unable to inject ComponentContext:
pedro.pt.cxfSE.TesteServiceImpl.setContext(javax.jbi.component.ComponentContext)
it's a normal message or i'm doing something wrong?
my xbean:
<cxfse:endpoint>
<cxfse:pojo>
<bean class="pedro.pt.cxfSE.TesteServiceImpl"/>
</cxfse:pojo>
</cxfse:endpoint>
my TesteServiceImpl Class:
@WebService(targetNamespace = "http://teste/CP/")
public class TesteServiceImpl implements TesteService {
@WebMethod
public int number(int number) {
System.out.println( " ********* TesteServiceImpl -> number:
"+number +
"**");
return number;
}
}
Thank you,
Pedro Araújo
--
View this message in context:
http://www.nabble.com/Unable-to-inject-ComponentContext-tp25366499p25366499.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.