Author: rich
Date: Mon Jan 10 23:52:05 2005
New Revision: 124898
URL: http://svn.apache.org/viewcvs?view=rev&rev=124898
Log:
- Renamed 'pageFlowNamedScope' to 'targetScope' on the Form, Anchor,
ImageAnchor and Button tags.
- Removed all vestiges of code for warning about classloaders
- Fixed an NPE in AutoRegisterActionServlet that occurred when forwarding to a
root-level action when there is no page flow at the root of the webapp.
DRT: netui (WinXP)
BB: self (linux)
Added:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/
- copied from r124829,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/Controller.jpf
- copied, changed from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/a.jpg
- copied unchanged from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/a.jpg
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/b.jpg
- copied unchanged from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/b.jpg
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/current.jpg
- copied unchanged from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/current.jpg
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/default.jpg
- copied unchanged from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/default.jpg
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/display.jsp
- copied unchanged from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/display.jsp
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/index.jsp
- copied, changed from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/index.jsp
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TargetScope.xml
- copied, changed from r124829,
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml
Removed:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java&r1=124897&p2=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/AutoRegisterActionServlet.java
Mon Jan 10 23:52:05 2005
@@ -20,8 +20,11 @@
import org.apache.beehive.netui.pageflow.internal.ContextCache;
import org.apache.beehive.netui.pageflow.internal.InternalConstants;
import org.apache.beehive.netui.pageflow.internal.InternalUtils;
+import org.apache.beehive.netui.pageflow.internal.RequestValues;
+import org.apache.beehive.netui.pageflow.handler.ForwardRedirectHandler;
import org.apache.beehive.netui.util.Bundle;
import org.apache.beehive.netui.util.DiscoveryUtils;
+import org.apache.beehive.netui.util.ServletUtils;
import org.apache.beehive.netui.util.config.ConfigUtil;
import org.apache.beehive.netui.util.config.bean.ModuleConfigLocators;
import org.apache.beehive.netui.util.config.bean.PageflowConfig;
@@ -613,8 +616,13 @@
//
// This is the same as the base process() behavior, but it checks
for a missing module-configuration.
//
- RequestUtils.selectModule( request, servletContext );
- ModuleConfig moduleConfig = getModuleConfig( request );
+ ModuleConfig moduleConfig = null;
+
+ if ( InternalUtils.getModuleConfig( RequestUtils.getModuleName(
request, servletContext ), servletContext ) != null )
+ {
+ RequestUtils.selectModule( request, servletContext );
+ moduleConfig = getModuleConfig( request );
+ }
if ( moduleConfig != null )
{
@@ -623,17 +631,16 @@
else
{
String relativeURI = InternalUtils.getDecodedServletPath(
request );
- /*
+
//
- // If we couldn't find an appropriate module, try raising the
action on the appropriate
- // SharedFlowController, if one exists.
+ // If we couldn't find an appropriate module, try raising the
action on the (deprecated) Global.app.
+ // TODO: have some sort of webapp-wide Shared Flow for this
type of fallback.
//
- SharedFlowController sf =
- FlowControllerFactory.getSharedFlowForRequest(
request, response, servletContext );
+ GlobalApp ga = FlowControllerFactory.getGlobalApp( request,
response, servletContext );
- if ( sf != null )
+ if ( ga != null )
{
- StringBuilder sfActionURI = new StringBuilder(
sf.getModulePath() );
+ StringBuilder sfActionURI = new StringBuilder(
ga.getModulePath() );
sfActionURI.append( '/' );
sfActionURI.append( ServletUtils.getBaseName( relativeURI
) );
RequestValues.setOriginalServletPath( request, relativeURI
);
@@ -641,7 +648,6 @@
frh.forward( sfActionURI.toString(), request, response );
return;
}
- */
if ( _log.isErrorEnabled() )
{
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java&r1=124897&p2=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/FlowControllerFactory.java
Mon Jan 10 23:52:05 2005
@@ -87,7 +87,7 @@
HttpServletResponse response, String relativeURI,
ServletContext
servletContext )
{
- PageFlowController cur = InternalUtils.getCurrentPageFlow( request,
false );
+ PageFlowController cur = PageFlowUtils.getCurrentPageFlow( request );
String parentDir = PageFlowUtils.getModulePathForRelativeURI(
relativeURI );
//
@@ -222,6 +222,9 @@
public static GlobalApp getGlobalApp( HttpServletRequest request,
HttpServletResponse response,
ServletContext servletContext )
{
+ GlobalApp current = PageFlowUtils.getGlobalApp( request );
+ if ( current != null ) return current;
+
try
{
SharedFlowController sf =
@@ -319,7 +322,7 @@
if ( InternalUtils.isLongLived( mc ) )
{
- retVal = InternalUtils.getLongLivedPageFlow( modulePath,
request, false );
+ retVal = PageFlowUtils.getLongLivedPageFlow( modulePath,
request );
if ( _log.isDebugEnabled() )
{
@@ -388,7 +391,7 @@
// Call create() on the newly-created page flow.
//
retVal.create( request, response, servletContext );
- PageFlowController current = InternalUtils.getCurrentPageFlow(
request, false );
+ PageFlowController current = PageFlowUtils.getCurrentPageFlow(
request );
if ( current != null )
{
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java&r1=124897&p2=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/ForwardHandler.java
Mon Jan 10 23:52:05 2005
@@ -87,12 +87,13 @@
// most likely this FlowController, but if it's Global.app,
then we don't want
// to use that.
//
- PageFlowController curJpf = InternalUtils.getCurrentPageFlow(
request, false );
+ PageFlowController curJpf = PageFlowUtils.getCurrentPageFlow(
request );
if ( curJpf == null )
{
PageFlowException ex = new NoCurrentPageFlowException(
actionName, pageFlowFwd );
InternalUtils.throwPageFlowException( ex, request );
+ assert false; // throwPageFlowException() must throw.
}
PreviousPageInfo prevPageInfo;
@@ -298,12 +299,13 @@
// most likely this FlowController, but if it's Global.app, then we
don't want
// to use that.
//
- PageFlowController curJpf = InternalUtils.getCurrentPageFlow( request,
false );
+ PageFlowController curJpf = PageFlowUtils.getCurrentPageFlow( request
);
if ( curJpf == null )
{
PageFlowException ex = new NoCurrentPageFlowException( actionName,
pageFlowFwd );
InternalUtils.throwPageFlowException( ex, request );
+ assert false; // throwPageFlowException() must throw.
}
PreviousActionInfo prevActionInfo = curJpf.getPreviousActionInfo();
@@ -381,7 +383,7 @@
if ( pfStack.isEmpty() )
{
- PageFlowController curJpf = InternalUtils.getCurrentPageFlow(
request, false );
+ PageFlowController curJpf = PageFlowUtils.getCurrentPageFlow(
request );
if ( _log.isInfoEnabled() )
{
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java&r1=124897&p2=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/PageFlowUtils.java
Mon Jan 10 23:52:05 2005
@@ -202,7 +202,6 @@
if ( jpfStack != null && ! jpfStack.isEmpty() )
{
PageFlowController top = jpfStack.peek().getPageFlow();
- InternalUtils.warnAboutClassLoaders( top, request );
return top;
}
@@ -218,7 +217,8 @@
*/
public static final PageFlowController getCurrentPageFlow(
HttpServletRequest request )
{
- return InternalUtils.getCurrentPageFlow( request, true );
+ ActionResolver cur = getCurrentActionResolver( request );
+ return cur != null && cur.isPageFlow() ? ( PageFlowController ) cur :
null;
}
/**
@@ -228,7 +228,24 @@
*/
public static ActionResolver getCurrentActionResolver( HttpServletRequest
request )
{
- return InternalUtils.getCurrentActionResolver( request, true );
+ //
+ // First see if the current page flow is a long-lived, which is stored
in its own attribute.
+ //
+ HttpServletRequest unwrappedRequest = unwrapMultipart( request );
+ String currentLongLivedModulePath =
+ ( String ) ScopedServletUtils.getScopedSessionAttr(
CURRENT_LONGLIVED_ATTR, unwrappedRequest );
+ ActionResolver retVal;
+
+ if ( currentLongLivedModulePath != null )
+ {
+ retVal = getLongLivedPageFlow( currentLongLivedModulePath,
unwrappedRequest );
+ }
+ else
+ {
+ retVal = ( ActionResolver )
ScopedServletUtils.getScopedSessionAttr( CURRENT_JPF_ATTR, unwrappedRequest );
+ }
+
+ return retVal;
}
/**
@@ -319,7 +336,10 @@
*/
public static PageFlowController getLongLivedPageFlow( String modulePath,
HttpServletRequest request )
{
- return InternalUtils.getLongLivedPageFlow( modulePath, request, true );
+ String attr = InternalUtils.getLongLivedFlowAttr( modulePath );
+ PageFlowController retVal = ( PageFlowController )
+ ScopedServletUtils.getScopedSessionAttr( attr,
unwrapMultipart( request ) );
+ return retVal;
}
/**
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java&r1=124897&p2=incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/InternalUtils.java
Mon Jan 10 23:52:05 2005
@@ -43,7 +43,6 @@
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Enumeration;
-import java.util.List;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionError;
@@ -243,102 +242,6 @@
}
/**
- * Get the current ActionResolver ([EMAIL PROTECTED] PageFlowController}).
- *
- * @return the current ActionResolver from the user session, or
<code>null</code> if there is none.
- */
- public static ActionResolver getCurrentActionResolver( HttpServletRequest
request, boolean warnAboutClassLoaders )
- {
- //
- // First see if the current page flow is a long-lived, which is stored
in its own attribute.
- //
- HttpServletRequest unwrappedRequest = PageFlowUtils.unwrapMultipart(
request );
- String currentLongLivedModulePath =
- ( String ) ScopedServletUtils.getScopedSessionAttr(
CURRENT_LONGLIVED_ATTR, unwrappedRequest );
- ActionResolver retVal;
-
- if ( currentLongLivedModulePath != null )
- {
- retVal = getLongLivedPageFlow( currentLongLivedModulePath,
unwrappedRequest, warnAboutClassLoaders );
- }
- else
- {
- retVal = ( ActionResolver )
ScopedServletUtils.getScopedSessionAttr( CURRENT_JPF_ATTR, unwrappedRequest );
- }
-
- if ( warnAboutClassLoaders )
- {
- warnAboutClassLoaders( retVal, request );
- }
-
- return retVal;
- }
-
- public static void warnAboutClassLoaders( Object object,
HttpServletRequest request )
- {
- warnAboutClassLoaders( object, getServletContext( request ) );
- }
-
- public static void warnAboutClassLoaders( Object object, ServletContext
servletContext )
- {
- ReloadableClassHandler rh = ContextCache.get( servletContext
).getReloadableClassHandler();
-
- if ( rh.isReloadEnabled() )
- {
- ClassLoader objectClassLoader = object.getClass().getClassLoader();
-
- if ( objectClassLoader == rh.getClassLoader()
- && objectClassLoader !=
Thread.currentThread().getContextClassLoader() )
- {
- if ( _log.isWarnEnabled() )
- {
- StringBuilder builder = new StringBuilder();
- builder.append( "Object " ).append( object ).append( " was
loaded by ClassLoader " );
- builder.append( objectClassLoader );
- builder.append( ", which is not visible from the current
ClassLoader (" );
- builder.append(
Thread.currentThread().getContextClassLoader() ).append( "). ");
- builder.append( "This will cause a ClassCastException if
the object is cast to a type loaded by " );
- builder.append( "the current ClassLoader. To avoid this,
either interact with the object " );
- builder.append( "through reflection APIs or disable the
fast-reload feature." );
- // TODO: instructions for disabling fast-reload
- _log.warn( builder.toString() );
- }
- }
- }
- }
-
- /**
- * Get the current PageFlowController.
- *
- * @param request the current HttpServletRequest.
- * @return the current PageFlowController from the user session, or
<code>null</code>
- * if there is none.
- */
- public static final PageFlowController getCurrentPageFlow(
HttpServletRequest request,
- boolean
warnAboutClassLoaders )
- {
- ActionResolver cur = getCurrentActionResolver( request,
warnAboutClassLoaders );
- return cur != null && cur.isPageFlow() ? ( PageFlowController ) cur :
null;
- }
-
- /**
- * Get the long-lived page flow instance associated with the given module
(directory) path.
- *
- * @param modulePath the webapp-relative path to the directory containing
the long-lived page flow.
- * @param request the current HttpServletRequest.
- * @return the long-lived page flow instance associated with the given
module, or <code>null</code> if none is found.
- */
- public static PageFlowController getLongLivedPageFlow( String modulePath,
HttpServletRequest request,
- boolean
warnAboutClassLoaders )
- {
- String attr = getLongLivedFlowAttr( modulePath );
- PageFlowController retVal = ( PageFlowController )
- ScopedServletUtils.getScopedSessionAttr( attr,
PageFlowUtils.unwrapMultipart( request ) );
- if ( warnAboutClassLoaders ) warnAboutClassLoaders( retVal, request );
- return retVal;
- }
-
- /**
* Tell whether the given module is a long-lived page flow.
*/
public static boolean isLongLived( ModuleConfig moduleConfig )
@@ -800,7 +703,7 @@
{
if ( PageFlowController.class.isAssignableFrom( fcClass ) )
{
- PageFlowController current = getCurrentPageFlow( request, false );
+ PageFlowController current = PageFlowUtils.getCurrentPageFlow(
request );
if ( current != null && current.getClass().equals( fcClass ) )
{
Modified:
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java&r1=124897&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java
Mon Jan 10 23:52:05 2005
@@ -23,6 +23,7 @@
// internal imports
import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.PageFlowUtils;
import org.apache.beehive.netui.pageflow.internal.InternalUtils;
import org.apache.beehive.netui.util.Bundle;
@@ -126,7 +127,7 @@
/**
* Get the PageFlow for the using JSP's directory. This is an
implementation of the
* [EMAIL PROTECTED] CallMethod#resolveObject()} method that finds the
current PageFlow
- * using the [EMAIL PROTECTED] InternalUtils#getCurrentPageFlow} method.
+ * using the [EMAIL PROTECTED] PageFlowUtils#getCurrentPageFlow} method.
*
* @throws ObjectNotFoundException when an exception occurs ensuring that
a Page Flow is created.
* @return the current PageFlow. If there is no current PageFlow, the
[EMAIL PROTECTED] ObjectNotFoundException} will
@@ -137,7 +138,7 @@
{
try
{
- PageFlowController jpf =
InternalUtils.getCurrentPageFlow((HttpServletRequest)pageContext.getRequest(),
false);
+ PageFlowController jpf =
PageFlowUtils.getCurrentPageFlow((HttpServletRequest)pageContext.getRequest());
if(_logger.isDebugEnabled())
_logger.debug("Found a pageflow of type: " + (jpf != null ?
jpf.getClass().getName() : "null"));
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java&r1=124897&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/AnchorBase.java
Mon Jan 10 23:52:05 2005
@@ -39,7 +39,7 @@
private String _action;
private String _href;
- private String _pageFlowNamedScope; // target page flow scope; see
comments on setPageFlowNamedScope()
+ private String _targetScope; // target page flow scope; see
comments on setTargetScope()
private String _location; // anchor to be added to the end of
the hyperlink.
private Map _params; // Parameters
private Form _form; // the nearest form
@@ -148,14 +148,14 @@
* @param scopeID - the name of the target scope in which the associated
action's page flow resides.
* @jsptagref.attributedescription The target scope in which the
associated action's page flow resides.
* @jsptagref.databindable true
- * @jsptagref.attributesyntaxvalue <i>string_scopeId</i>
+ * @jsptagref.attributesyntaxvalue <i>string_targetScope</i>
* @netui:attribute required="false" rtexprvalue="true"
* description="The target scope in which the associated action's page
flow resides"
* @netui.tldx:attribute category="general"
*/
- public void setPageFlowNamedScope(String scopeID)
+ public void setTargetScope(String scopeID)
{
- _pageFlowNamedScope = scopeID;
+ _targetScope = scopeID;
}
/**
@@ -365,12 +365,12 @@
_state.href = "";
}
else {
- // Add the scope-ID parameter, if the pageFlowNamedScope attribute
is present.
- if (_pageFlowNamedScope != null) {
+ // Add the scope-ID parameter, if the targetScope attribute is
present.
+ if (_targetScope != null) {
if (_params == null) {
_params = new HashMap();
}
- _params.put(ScopedServletUtils.SCOPE_ID_PARAM,
_pageFlowNamedScope);
+ _params.put(ScopedServletUtils.SCOPE_ID_PARAM, _targetScope);
}
// Generate the opening anchor element
@@ -524,7 +524,7 @@
_action = null;
_href = null;
- _pageFlowNamedScope = null;
+ _targetScope = null;
_location = null;
_params = null;
_form = null;
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java&r1=124897&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Button.java
Mon Jan 10 23:52:05 2005
@@ -74,7 +74,7 @@
private String _action; // The action which will override
the action on the form
private String _value; // The text of the button (this
will override any body text).
private Map _params; // Any parameters to the submit
- private String _pageFlowNamedScope; // Target page flow scope; see
comments on setPageFlowNamedScope()
+ private String _targetScope; // Target page flow scope; see
comments on setTargetScope()
/**
* Return the name of the Tag.
@@ -137,14 +137,14 @@
* @param scopeID - the name of the target scope in which the associated
action's page flow resides.
* @jsptagref.attributedescription The target scope in which the
associated action's page flow resides.
* @jsptagref.databindable true
- * @jsptagref.attributesyntaxvalue <i>string_pageFlowNamedScope</i>
+ * @jsptagref.attributesyntaxvalue <i>string_targetScope</i>
* @netui:attribute required="false" rtexprvalue="true"
* description="The target scope in which the associated action's page
flow resides"
* @netui.tldx:attribute category="general"
*/
- public void setPageFlowNamedScope(String scopeID)
+ public void setTargetScope(String scopeID)
{
- _pageFlowNamedScope = scopeID;
+ _targetScope = scopeID;
}
/**
@@ -265,11 +265,11 @@
}
// Add the scope ID parameter if there's one on the tag, or if
there's one in the request.
- if (_pageFlowNamedScope != null) {
+ if (_targetScope != null) {
if (_params == null) {
_params = new HashMap();
}
- _params.put(ScopedServletUtils.SCOPE_ID_PARAM,
_pageFlowNamedScope);
+ _params.put(ScopedServletUtils.SCOPE_ID_PARAM,
_targetScope);
}
String overrideAction = ACTION_OVERRIDE + _action;
@@ -322,7 +322,7 @@
_action = null;
_value = null;
_params = null;
- _pageFlowNamedScope = null;
+ _targetScope = null;
}
/* ==================================================================
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java&r1=124897&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Form.java
Mon Jan 10 23:52:05 2005
@@ -227,7 +227,7 @@
private String _realName = null;
private String _id = null;
private String _formId = null;
- private String _pageFlowNamedScope; // target page flow scope;
see comments on setPageFlowNamedScope()
+ private String _targetScope; // target page flow scope;
see comments on setTargetScope()
private ActionMapping _mapping = null; // The ActionMapping
defining where we will be submitting this form
private ActionServlet _servlet = null; // The ActionServlet
instance we are associated with
@@ -412,14 +412,14 @@
* @param scopeID - the name of the target scope in which the associated
action's page flow resides.
* @jsptagref.attributedescription The target scope in which the
associated action's page flow resides.
* @jsptagref.databindable true
- * @jsptagref.attributesyntaxvalue <i>string_pageFlowNamedScope</i>
+ * @jsptagref.attributesyntaxvalue <i>string_targetScope</i>
* @netui:attribute required="false" rtexprvalue="true"
* description="The target scope in which the associated action's page
flow resides"
* @netui.tldx:attribute category="general"
*/
- public void setPageFlowNamedScope(String scopeID)
+ public void setTargetScope(String scopeID)
{
- _pageFlowNamedScope = scopeID;
+ _targetScope = scopeID;
}
/**
@@ -743,8 +743,8 @@
}
// Add a scope-ID hidden input, if there's one on this tag, or one in
the request.
- String scopeID = _pageFlowNamedScope != null
- ? _pageFlowNamedScope
+ String scopeID = _targetScope != null
+ ? _targetScope
:
request.getParameter(ScopedServletUtils.SCOPE_ID_PARAM);
if (scopeID != null) {
if (_params == null) {
@@ -918,7 +918,7 @@
_focus = null;
_location = null;
- _pageFlowNamedScope = null;
+ _targetScope = null;
_scope = null;
_text = null;
_mapping = null;
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java&r1=124897&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/PageFlowTagUtils.java
Mon Jan 10 23:52:05 2005
@@ -162,7 +162,7 @@
*/
public static boolean isAction(HttpServletRequest request, String action)
{
- FlowController flowController =
InternalUtils.getCurrentPageFlow(request, false);
+ FlowController flowController =
PageFlowUtils.getCurrentPageFlow(request);
if (flowController != null) {
if (action.endsWith(PageFlowConstants.ACTION_EXTENSION)) {
@@ -184,7 +184,7 @@
*/
public static String getToken(HttpServletRequest request, String action)
{
- FlowController flowController =
InternalUtils.getCurrentPageFlow(request, false);
+ FlowController flowController =
PageFlowUtils.getCurrentPageFlow(request);
if (flowController != null) {
MappingAndController mac = getActionMapping(request,
flowController, action);
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/Controller.jpf
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/Controller.jpf?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/Controller.jpf&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/Controller.jpf
Mon Jan 10 23:52:05 2005
@@ -1,4 +1,4 @@
-package miniTests.pageFlowNamedScopes;
+package miniTests.targetScope;
import javax.servlet.http.HttpSession;
import org.apache.beehive.netui.pageflow.PageFlowController;
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/a.jpg
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/a.jpg)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/a.jpg?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/a.jpg&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/a.jpg&r2=124898
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/b.jpg
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/b.jpg)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/b.jpg?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/b.jpg&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/b.jpg&r2=124898
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/current.jpg
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/current.jpg)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/current.jpg?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/current.jpg&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/current.jpg&r2=124898
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/default.jpg
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/default.jpg)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/default.jpg?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/default.jpg&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/default.jpg&r2=124898
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/display.jsp
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/display.jsp)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/display.jsp?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/display.jsp&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/display.jsp&r2=124898
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/index.jsp
(from r124892,
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/index.jsp)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/index.jsp?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/index.jsp&r1=124892&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/index.jsp&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/pageFlowNamedScopes/index.jsp
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/targetScope/index.jsp
Mon Jan 10 23:52:05 2005
@@ -20,15 +20,15 @@
<netui:textBox dataSource="pageFlow.str"/>
<netui:button value="submit to current scope (form)"/>
</netui:form>
- <netui:form action="submit" pageFlowNamedScope="">
+ <netui:form action="submit" targetScope="">
<netui:textBox dataSource="pageFlow.str"/>
<netui:button value="submit to default scope (form)"/>
</netui:form>
- <netui:form action="submit" pageFlowNamedScope="a">
+ <netui:form action="submit" targetScope="a">
<netui:textBox dataSource="pageFlow.str"/>
<netui:button value="submit to scope 'a' (form)"/>
</netui:form>
- <netui:form action="submit" pageFlowNamedScope="b">
+ <netui:form action="submit" targetScope="b">
<netui:textBox dataSource="pageFlow.str"/>
<netui:button value="submit to scope 'b' (form)"/>
</netui:form>
@@ -38,39 +38,39 @@
</netui:form>
<netui:form action="submit">
<netui:textBox dataSource="pageFlow.str"/>
- <netui:button action="submit" pageFlowNamedScope="" value="submit
to default scope (button)"/>
+ <netui:button action="submit" targetScope="" value="submit to
default scope (button)"/>
</netui:form>
<netui:form action="submit">
<netui:textBox dataSource="pageFlow.str"/>
- <netui:button action="submit" pageFlowNamedScope="a" value="submit
to scope 'a' (button)"/>
+ <netui:button action="submit" targetScope="a" value="submit to
scope 'a' (button)"/>
</netui:form>
<netui:form action="submit">
<netui:textBox dataSource="pageFlow.str"/>
- <netui:button action="submit" pageFlowNamedScope="b" value="submit
to scope 'b' (button)"/>
+ <netui:button action="submit" targetScope="b" value="submit to
scope 'b' (button)"/>
</netui:form>
<netui:anchor action="display">display current scope</netui:anchor>
<br/>
- <netui:anchor action="display" pageFlowNamedScope="">display default
scope</netui:anchor>
+ <netui:anchor action="display" targetScope="">display default
scope</netui:anchor>
<br/>
- <netui:anchor action="display" pageFlowNamedScope="a">display scope
'a'</netui:anchor>
+ <netui:anchor action="display" targetScope="a">display scope
'a'</netui:anchor>
<br/>
- <netui:anchor action="display" pageFlowNamedScope="b">display scope
'b'</netui:anchor>
+ <netui:anchor action="display" targetScope="b">display scope
'b'</netui:anchor>
<br/>
<br/>
<netui:imageAnchor action="display" src="current.jpg">display current
scope</netui:imageAnchor>
<br/>
- <netui:imageAnchor action="display" pageFlowNamedScope=""
src="default.jpg">display default scope</netui:imageAnchor>
+ <netui:imageAnchor action="display" targetScope=""
src="default.jpg">display default scope</netui:imageAnchor>
<br/>
- <netui:imageAnchor action="display" pageFlowNamedScope="a"
src="a.jpg">display scope 'a'</netui:imageAnchor>
+ <netui:imageAnchor action="display" targetScope="a"
src="a.jpg">display scope 'a'</netui:imageAnchor>
<br/>
- <netui:imageAnchor action="display" pageFlowNamedScope="b"
src="b.jpg">display scope 'b'</netui:imageAnchor>
+ <netui:imageAnchor action="display" targetScope="b"
src="b.jpg">display scope 'b'</netui:imageAnchor>
<br/>
<br/>
- <netui:anchor action="killMe" pageFlowNamedScope="">remove default
scope</netui:anchor>
+ <netui:anchor action="killMe" targetScope="">remove default
scope</netui:anchor>
<br/>
- <netui:anchor action="killMe" pageFlowNamedScope="a">remove scope
'a'</netui:anchor>
+ <netui:anchor action="killMe" targetScope="a">remove scope
'a'</netui:anchor>
<br/>
- <netui:anchor action="killMe" pageFlowNamedScope="b">remove scope
'b'</netui:anchor>
+ <netui:anchor action="killMe" targetScope="b">remove scope
'b'</netui:anchor>
<br/>
</netui:body>
</netui:html>
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml&r1=124897&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
Mon Jan 10 23:52:05 2005
@@ -3810,19 +3810,6 @@
</features>
</test>
<test>
- <name>PageFlowNamedScopes</name>
- <description>Test of addressing page flows in named 'scopes' within
the session.</description>
- <webapp>coreWeb</webapp>
- <categories>
- <category>bvt</category>
- <category>corePageFlow</category>
- </categories>
- <features>
- <feature>PageFlow</feature>
- <feature>Scoping</feature>
- </features>
- </test>
- <test>
<name>PageFlowUtils</name>
<description>Tests of utility methods in PageFlowUtils</description>
<webapp>coreWeb</webapp>
@@ -5449,6 +5436,19 @@
<feature>TextBox</feature>
<feature>TextArea</feature>
<feature>Databinding</feature>
+ </features>
+ </test>
+ <test>
+ <name>TargetScope</name>
+ <description>Test of addressing page flows in named 'scopes' within
the session.</description>
+ <webapp>coreWeb</webapp>
+ <categories>
+ <category>bvt</category>
+ <category>corePageFlow</category>
+ </categories>
+ <features>
+ <feature>PageFlow</feature>
+ <feature>Scoping</feature>
</features>
</test>
<test>
Deleted:
/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml?view=auto&rev=124897
==============================================================================
Copied:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TargetScope.xml
(from r124829,
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TargetScope.xml?view=diff&rev=124898&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml&r1=124829&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TargetScope.xml&r2=124898
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/PageFlowNamedScopes.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/TargetScope.xml
Mon Jan 10 23:52:05 2005
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
- <ses:sessionName>PageFlowNamedScopes</ses:sessionName>
+ <ses:sessionName>TargetScope</ses:sessionName>
<ses:tester>rich</ses:tester>
<ses:startDate>09 Jan 2005, 10:03:41.157 PM MST</ses:startDate>
<ses:description>Test of addressing page flows in named 'scopes' within the
session.</ses:description>
@@ -12,7 +12,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/Controller.jpf</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters/>
<ses:cookies>
@@ -72,7 +72,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -82,64 +82,64 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a href="/coreWeb/miniTests/pageFlowNamedScopes/display.do">display
current scope</a>
+ <a href="/coreWeb/miniTests/targetScope/display.do">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a href="/coreWeb/miniTests/pageFlowNamedScopes/display.do"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do"><img
src="/coreWeb/miniTests/targetScope/current.jpg"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -153,7 +153,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -218,7 +218,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/Controller.jpf</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/Controller.jpf</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -234,7 +234,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -244,69 +244,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -320,7 +320,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -385,7 +385,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -401,7 +401,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -411,69 +411,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -487,7 +487,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -552,7 +552,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -568,7 +568,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -578,69 +578,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -654,7 +654,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -719,7 +719,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -735,7 +735,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -745,69 +745,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -821,7 +821,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -874,7 +874,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -893,7 +893,7 @@
<br/>
string: <b>default</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -905,7 +905,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -958,7 +958,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -974,7 +974,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -984,69 +984,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -1060,7 +1060,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1113,7 +1113,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1132,7 +1132,7 @@
<br/>
string: <b>a</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -1144,7 +1144,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1197,7 +1197,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1213,7 +1213,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -1223,69 +1223,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -1299,7 +1299,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1352,7 +1352,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1371,7 +1371,7 @@
<br/>
string: <b>still b</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=b">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=b">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -1383,7 +1383,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1436,7 +1436,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1452,7 +1452,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -1462,69 +1462,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -1538,7 +1538,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1607,7 +1607,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=b</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1623,7 +1623,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -1633,69 +1633,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -1709,7 +1709,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1778,7 +1778,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1794,7 +1794,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -1804,69 +1804,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -1880,7 +1880,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -1949,7 +1949,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -1965,7 +1965,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -1975,69 +1975,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -2051,7 +2051,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/submit.do</ses:uri>
<ses:method>POST</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2120,7 +2120,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2136,7 +2136,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -2146,69 +2146,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -2222,7 +2222,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2275,7 +2275,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/submit.do</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/submit.do</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2294,7 +2294,7 @@
<br/>
string: <b>default2</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -2306,7 +2306,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2359,7 +2359,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2375,7 +2375,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -2385,69 +2385,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="default2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -2461,7 +2461,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2514,7 +2514,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2533,7 +2533,7 @@
<br/>
string: <b>a2</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -2545,7 +2545,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2598,7 +2598,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2614,7 +2614,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -2624,69 +2624,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="a2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -2700,7 +2700,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2753,7 +2753,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2772,7 +2772,7 @@
<br/>
string: <b>still b2</b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=b">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=b">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -2784,7 +2784,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2837,7 +2837,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -2853,7 +2853,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -2863,69 +2863,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}" value="still b2">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -2939,7 +2939,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/killMe.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/killMe.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -2992,7 +2992,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=b</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3008,7 +3008,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -3018,69 +3018,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -3094,7 +3094,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/killMe.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/killMe.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3147,7 +3147,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3163,7 +3163,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -3173,69 +3173,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -3249,7 +3249,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/killMe.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/killMe.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3302,7 +3302,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3318,7 +3318,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -3328,69 +3328,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=b"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=b"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=b"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -3404,7 +3404,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3457,7 +3457,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3476,7 +3476,7 @@
<br/>
string: <b></b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -3488,7 +3488,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3541,7 +3541,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3557,7 +3557,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -3567,69 +3567,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID="></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID="></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID="></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -3643,7 +3643,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3696,7 +3696,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3715,7 +3715,7 @@
<br/>
string: <b></b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>
@@ -3727,7 +3727,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
- <ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/begin.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/begin.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3780,7 +3780,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3796,7 +3796,7 @@
<html lang="en">
<head>
- <base
href="http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/index.jsp">
+ <base
href="http://localhost:8080/coreWeb/miniTests/targetScope/index.jsp">
</head>
<body>
<h3>Page Flow Named Scopes</h3>
@@ -3806,69 +3806,69 @@
<br/>
<br/>
<br/>
- <form id="Netui_Form_0"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_0"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to current scope (form)">
</form>
- <form id="Netui_Form_1"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_1"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to default scope (form)">
</form>
- <form id="Netui_Form_2"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_2"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'a' (form)">
</form>
- <form id="Netui_Form_3"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_3"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="b">
<input type="text" name="{pageFlow.str}">
<input type="submit" value="submit to scope 'b' (form)">
</form>
- <form id="Netui_Form_4"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_4"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit" value="submit to
current scope (button)">
</form>
- <form id="Netui_Form_5"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_5"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID="
value="submit to default scope (button)">
</form>
- <form id="Netui_Form_6"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_6"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=a"
value="submit to scope 'a' (button)">
</form>
- <form id="Netui_Form_7"
action="/coreWeb/miniTests/pageFlowNamedScopes/submit.do" method="post">
+ <form id="Netui_Form_7"
action="/coreWeb/miniTests/targetScope/submit.do" method="post">
<input type="hidden" name="jpfScopeID" value="a">
<input type="text" name="{pageFlow.str}">
<input type="submit" name="actionOverride:submit?jpfScopeID=b"
value="submit to scope 'b' (button)">
</form>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
current scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display current
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=">display
default scope</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=">display default
scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a">display
scope 'a'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a">display scope
'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b">display
scope 'b'</a>
+ <a
href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b">display scope
'b'</a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/current.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/current.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/pageFlowNamedScopes/default.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID="><img
src="/coreWeb/miniTests/targetScope/default.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/a.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=a"><img
src="/coreWeb/miniTests/targetScope/a.jpg?jpfScopeID=a"></a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/pageFlowNamedScopes/b.jpg?jpfScopeID=a"></a>
+ <a href="/coreWeb/miniTests/targetScope/display.do?jpfScopeID=b"><img
src="/coreWeb/miniTests/targetScope/b.jpg?jpfScopeID=a"></a>
<br/>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=">remove
default scope</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=">remove
default scope</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=a">remove
scope 'a'</a>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
+ <a href="/coreWeb/miniTests/targetScope/killMe.do?jpfScopeID=b">remove
scope 'b'</a>
<br/>
</body>
@@ -3882,7 +3882,7 @@
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
<ses:port>8080</ses:port>
-
<ses:uri>/coreWeb/miniTests/pageFlowNamedScopes/display.do</ses:uri>
+ <ses:uri>/coreWeb/miniTests/targetScope/display.do</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters>
<ses:parameter>
@@ -3935,7 +3935,7 @@
</ses:header>
<ses:header>
<ses:name>referer</ses:name>
-
<ses:value>http://localhost:8080/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=a</ses:value>
+
<ses:value>http://localhost:8080/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=a</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -3954,7 +3954,7 @@
<br/>
string: <b></b>
<br/>
- <a
href="/coreWeb/miniTests/pageFlowNamedScopes/begin.do?jpfScopeID=b">go to first
page</a>
+ <a href="/coreWeb/miniTests/targetScope/begin.do?jpfScopeID=b">go to
first page</a>
</body>
</html>]]></ses:responseBody>
</ses:response>