Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/slb/__init__.py
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/slb/__init__.py	(revision 38581)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/slb/__init__.py	(working copy)
@@ -514,6 +514,7 @@
             self.cli.set_config()
             on_or_off = 'on' if instance.syncache else 'off'
             self.cli.cmd('slb directfwd syncache ' + on_or_off,
+                         RegexParser('It is recomended to keep directfwd syncache off when webagent service is configured. If webagent traffic reaches SLB VIP with directfwd syncache on, forwarded packets might have issues.', MATCHONE, match_exception=CLICmdWarning,exclusive=True),
                          BlankParser(nonblank_exception=CLICmdError, supplement=True))
         
         def _update_statistics(self, instance):
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/webagent/__init__.py
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/webagent/__init__.py	(revision 38581)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/loadbalancing/webagent/__init__.py	(working copy)
@@ -58,6 +58,7 @@
             self.cli.set_config()
             result = self.cli.cmd('webagent service "%(service_name)s" %(ip)s %(port)u %(max_conn)u' % data,
                                   RegexParser('it will be associated with the first', MATCHONE, match_exception=CLICmdWarning,exclusive=True),
+                                  RegexParser('It is recomended not to use webagent when directfwd syncache is on. If webagent traffic reaches SLB VIP with directfwd syncache on, forwarded packets might have issues.', MATCHONE, match_exception=CLICmdWarning,exclusive=True),
                                   BlankParser(nonblank_exception=CLICmdError, supplement=True))
             return result
             
