<html>
<head>
<style>
P
{
margin:0px;
padding:0px
}
body
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body>
(Taken and modified from http://www.shaffer-consulting.com/david/Seaside/GettingSoftware/index.html)<br><br><pre class="code">"Start a new server on port 9090 servering both static content and seaside apps"<br>| ma soap |<br>soap := MySoapClass new.<br>ma := ModuleAssembly core.<br>ma serverRoot: (FileDirectory default directoryNamed: 'FileRoot') fullName.<br>ma alias: '/soap' to: [ma addPlug: [:request | soap process: request]].<br>ma documentRoot: (FileDirectory default directoryNamed: 'FileRoot') fullName.<br>ma directoryIndex: 'index.html index.htm'.<br>ma serveFiles.<br>(HttpService startOn: 9090 named: 'httpd') plug: ma rootModule<br><br><br>Then just make an empty class called MySoapClass and see what breaks! :)  But it sounds like there is already a soap module, you should be able to plug that in there.<br></pre><br><br>&gt; Date: Mon, 18 Jun 2007 11:43:47 +0900<br>&gt; From: chunsj@embian.com<br>&gt; To: squeak-dev@lists.squeakfoundation.org<br>&gt; Subject: [Q] Adding SOAP as module of KomHttpService(like Seaside)<br>&gt; <br>&gt; -----BEGIN PGP SIGNED MESSAGE-----<br>&gt; Hash: SHA1<br>&gt; <br>&gt; Hi,<br>&gt; <br>&gt; How can I add soap processing module to KomHttpService as Seaside so<br>&gt; that I can assign "/soap" as url for soap. For example Seaside<br>&gt; uses "/seaside" for its service url for KomHttpService. What I want to<br>&gt; do is use same port number for seaside and soap, only url be different.<br>&gt; <br>&gt; Sorry for my poor English and Thanks in advance.<br>&gt; -----BEGIN PGP SIGNATURE-----<br>&gt; Version: GnuPG v1.4.2.2 (GNU/Linux)<br>&gt; Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org<br>&gt; <br>&gt; iD8DBQFGdfFiQqspS1+XJHgRAgVfAKCdPVOOniDHS/R9scE6Bbg+85YpSwCeJcUL<br>&gt; b4R37ckhk7NHV2RZc8ZR/is=<br>&gt; =0U51<br>&gt; -----END PGP SIGNATURE-----<br>&gt; <br><br /><hr />Live Earth is coming.  Learn more about the hottest summer event - only on MSN. <a href='http://liveearth.msn.com?source=msntaglineliveearthwlm' target='_new'>Check it out!</a></body>
</html>