Hi List:I was wondering why, under certain conditions the developer used the "remove" method to get a value from the context instead of the "get" method. For example, why do this?
String webSiteId = (String) serviceContext.remove("webSiteId");
Instead of this?
String webSiteId = (String) serviceContext.get("webSiteId");
What should I be looking for when I'm trying to decide to use either
"get" or "remove"?
TIA Ruth
