Hi,
I want to write my own provider so I have access to the entire
message context. But what does the WSDD look like? I tried:
===== deploy.wsdd:
<service name="BetaService" provider="java:alphapk.BetaHandler">
</service>
===== BetaHandler.java:
public class BetaHandler extends BasicHandler {
public void invoke( MessageContext mc)
throws AxisFault
{...}
}
But I get:
Exception: The AXIS engine could not find a target service to invoke! targetService
is null
Should I somehow specify the pivot also?
I'm running axis beta 1.
Many thanks,
Steve