Update of /cvsroot/asterisk-java/asterisk-java/xdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13461/xdocs
Modified Files:
tutorial.xml
Log Message:
Fixed links to javadoc
Index: tutorial.xml
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/xdocs/tutorial.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -p -r1.10 -r1.11
--- tutorial.xml 20 Apr 2005 20:43:43 -0000 1.10
+++ tutorial.xml 20 Apr 2005 23:56:41 -0000 1.11
@@ -133,7 +133,7 @@ INFO: End AGIScript HelloAGIScript on AG
If you want to use commands that do not yet have a corresponding method in
AbstractAGIScript or if you want to extend the FastAGI protocol by adding your
own commands you can also use the
- <a href="apidocs/net/sf/asterisk/fastagi/AGIChannel.html">channel</a>.sendCommand(<a href="apidocs/net/sf/asterisk/fastagi/AGICommand.html">AGICommand</a>)
+ <a href="apidocs/net/sf/asterisk/fastagi/AGIChannel.html">channel</a>.sendCommand(<a href="apidocs/net/sf/asterisk/fastagi/command/AGICommand.html">AGICommand</a>)
method to send arbitrary commands.</p>
<p>You can pass parameters to your scripts by including them in the URL used with
the AGI command. These parameters can be read by the getParameter(String) and
@@ -222,7 +222,7 @@ write=system,call,log,verbose,agent,comm
<a href="apidocs/net/sf/asterisk/manager/ManagerConnection.html">ManagerConnection</a>
providing the hostname Asterisk is running on and the username and password
as configured in <code>manager.conf</code>. Next we log in and send an
- <a href="apidocs/net/sf/asterisk/manager/action/OriginateCallAction.html">OriginateCallAction</a>
+ <a href="apidocs/net/sf/asterisk/manager/action/OriginateAction.html">OriginateAction</a>
and finally we disconnect.</p>
<p>An example that does this is shown below.</p>
<source><![CDATA[
|