Since upgrading to 7.3, I am getting warnings on my livesite tookit build:
[exec] [javac]

\Interwoven\TeamSite\local\config\lib\content_center\livesite_customer_src\src\com\MYSITE\livesite\component\external\ContactUtils.java:66: warning: [deprecation] getParameterString(java.lang.String,java.lang.String) in com.interwoven.livesite.runtime.RequestContext has been deprecated
It looks like everything related to request parameters has been deprecated in the RequestContext interface. It looks like the only way to get around the deprecated methods would be to call getRequest() to get the actual HTTP request object and call its getParameter() method. Does anyone have an opinion on whether that is the right thing to do, or did the parameter handling stuff in the core livesite libs just get moved to a different class?