I can think of three options:
ProxyPassFigure out how to do what you want using Apache's ProxyPass directive (Apache docs
here, SME Virtual Domain Howto
here, forum post with details for using ProxyPass to access Outlook Web Access
here)
ProxyPass will do what you want, but you'll end up needing some custom template fragments (I think).
Start by editing
/etc/httpd/conf/httpd.conf; once your customizations work, put them into a custom template fragment named something like
/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/95wampserver (the "95" is used by SME to determine where the template fragment will go in the output file; you may need to pick a different number to put the output at an earlier point in httpd.conf).
As long as you are modifying httpd.conf directly, you can easily undo any mods that cause problems using
expand-template /etc/httpd/conf/httpd.conf; sv restart httpd-e-smith
http redirectYou could simply setup an http redirect in the "wampserver" ibay on your SME to redirect local users to the local address of the wampserver; put some code like that shown below into
/home/e-smith/files/ibays/wampserver/html/index.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>nefkho net</title>
<meta http-equiv="REFRESH"
content="0;url=http://wampserver.mydomain.com"></HEAD>
<BODY>
You are being redirected to the wampserver
</BODY>
</HTML>
iframesYou may be able to do something similar using iframes:
<html>
<iframe src ="http://wampserver.mydomain.com" width="1024" height="768" </iframe>
</html>