> <component id="serviceLnk" type="ServiceLink" >
>               <binding name="service" value="pdfService" />
>       </component>

I think you want to use a literal: binding prefix on the value for
service.  What's happening is your expression 'pdfService' is an ognl
expression that resolves to a call to getPdfService() on the class. 
It takes the resulting service and calls toString to generate the
link.  Since the actual object returned from getPdfService is a proxy
(apparently an 'OuterProxy', to be specific) the link is hosed.

Try:
<component id="serviceLnk" type="ServiceLink" >
  <binding name="service" value="literal:pdfService" />
</component>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to