Is there a way to specify an @UpnpAction with no associated @UpnpStateVariable in Cling?. I tried something like
public class ApplicationExecutionServer {
@UpnpAction
public void anAction() {
// do something
}
}
but got an error saying that the action "anAction" is not associated to an state variable.
Unfortunately, there is no way to have a 'headless' action. You CAN however have an inert variable. For example, I have a service like this which uses a supposed String setter to simulate an action that really doesn't involve a primitive state variable.
@UpnpStateVariable(defaultValue="0", sendEvents=false)
private String clientHandshakeData = null;
/**
* "Headless" action with ephemeral/transient state variable.
* @param handshakeData
*/
@UpnpAction
public void setClientHandshakeData(@UpnpInputArgument(name="NewClientHandshakeDataValue")String handshakeData){
clientHandshakeData = handshakeData;
processCurrentHandshakeData();
clientHandshakeData = null;
}
Essentially 'clientHandshakeData' is ephemeral and I expect each call to have a new value (with new clients connecting). Each time a new one connects, I 'process' the current handshake data and immediately set it null.