version 1.2, 2002/10/24 02:12:34 |
version 1.4, 2002/10/24 05:42:00 |
|
|
%% $OpenXM: OpenXM/src/kan96xx/Doc/httpd-rpc.sm1,v 1.1 2002/10/23 13:38:50 takayama Exp $ |
%% $OpenXM: OpenXM/src/kan96xx/Doc/httpd-rpc.sm1,v 1.3 2002/10/24 02:48:59 takayama Exp $ |
%% http server by sm1. Used for RPC. Generic example. |
%% http server by sm1. Used for RPC. Generic example. |
|
|
[(parse) (httpd.sm1) pushfile] extension pop |
[(parse) (httpd.sm1) pushfile] extension pop |
|
|
[ |
[ |
ox.win.start.0 aload pop |
ox.win.start.0 aload pop |
(iexplore) %% Starting internet explorer (TM). |
(iexplore) %% Starting internet explorer (TM). |
[(http://localhost:) httpd.port toString] cat |
[(http://) [(sm1.socket) (gethostname) []] extension |
|
(:) httpd.port toString] cat |
] |
] |
[ ] |
[ ] |
3] extension |
3] extension |
}{ |
}{ |
%% On unix. |
%% On unix. |
[(sleep 3 ; netscape http://localhost:) httpd.port toString ( & ) ] cat |
[(sleep 3 ; netscape http://) |
|
[(sm1.socket) (gethostname) []] extension |
|
(:) httpd.port toString ( & ) ] cat |
system |
system |
} ifelse |
} ifelse |
|
|
|
|
/httpd_action { |
/httpd_action { |
[/in-httpd /ff /httpd.com /httpd.result /sss |
[/in-httpd /ff /httpd.com /httpd.result /sss |
/sss.engine /sss.web /err |
/sss.engine /sss.web /err |
/oxserver.vname |
/oxserver.vname /scheck |
] pushVariables |
] pushVariables |
[ |
[ |
{ |
{ |
|
|
httpd.com metaCommand { |
httpd.com metaCommand { |
httpd.textarea.valid { |
httpd.textarea.valid { |
|
|
|
%%% Security check |
|
[(regionMatches) httpd.com |
|
httpd.refusedCommands] extension /scheck set |
|
scheck 0 get -1 eq { |
|
}{ |
|
httpd.refusedCommands scheck 2 get get message |
|
(Command is refused.) message |
|
[ |
|
httpd.refusedCommands scheck 2 get get |
|
httpd.com |
|
] |
|
send-page-refused exit |
|
} ifelse |
|
|
%%% Executing command, here. |
%%% Executing command, here. |
oxasir.ccc |
oxasir.ccc |
httpd.com cookedCommand |
httpd.com cookedCommand |
|
|
/result arg1 def |
/result arg1 def |
(HTTP/0.9 200 OK) sendln |
(HTTP/0.9 200 OK) sendln |
(Connection: close) sendln |
(Connection: close) sendln |
(Content-Type: text/html) sendln |
[(Content-length: ) result length toString ] cat sendln |
|
(Content-Type: text/plain) sendln |
0 sendln |
0 sendln |
|
|
result sendln |
result sendln |
|
|
popVariables |
popVariables |
} def |
} def |
|
|
|
/send-page-refused { |
|
/arg1 set |
|
[/in-send-page-refused /reason] pushVariables |
|
[ |
|
/reason arg1 def |
|
(HTTP/0.9 200 OK) sendln |
|
(Connection: close) sendln |
|
(Content-Type: text/html) sendln |
|
0 sendln |
|
|
|
(<H2> Your request is refused. </H2> <br> ) sendln |
|
(Because your input contains the key word <font color="red">) sendln |
|
reason 0 get sendln |
|
( </font> ) sendln |
|
(<br> <br>) sendln |
|
(Your input is <br> ) sendln |
|
(<pre> ) sendln |
|
reason 1 get sendln |
|
(</pre> ) sendln |
|
|
|
0 sendln |
|
[(flush)] extension |
|
] pop |
|
popVariables |
|
} def |
|
|
%% **** Overwrites the definition in httpd.sm1 |
%% **** Overwrites the definition in httpd.sm1 |
/httpd_startserver { |
/httpd_startserver { |
(httpd server accessible outside localhost.) message |
(httpd server accessible outside localhost.) message |
|
|
popVariables |
popVariables |
arg1 |
arg1 |
} def |
} def |
|
/httpd.refusedCommands |
|
[(shell) (eval_str) (ox_) (sm1_) (m_) |
|
(connect) (load) |
|
] |
|
def |