hi,
you can share the data between servlets and struts like below...
in servlets set the data::
request.getSession().setAttribute("data","content");
in struts 2 action class get the data:::
using ActionContext
ActionContext actionContext = ActionContext.getContext();
actionContext.getSession.get("data");
I hope it should work..
Thank you