Hi
I am learning XML. I have downloded axis-c. I getting following error while restarting the httpd server. I am running redhat8 with Apache 4.1.
Syntax error on line 215 of /etc/httpd/conf/httpd.conf:
Cannot load /etc/httpd/modules/libaxiscpp_mod2.so into server: /etc/httpd/modules/libaxiscpp_mod2.so: undefined symbol: _ZTIN11xercesc_2_214BinInputStreamE
Your help would be highly appreciated
Regards
Nishi
{ STEPS
Now libaxiscpp_mod.so (If you built for apache2 this is libaxiscpp_mod2.so) should have been created in $AXISCPP_HOME/bin directory. Note:- you can give the install path inside the runconfigure script.
Now you need to edit /usr/local/apache/conf/httpd.conf
$ vi /usr/local/apache/conf/httpd.conf
At the bottom of the file you have to include following lines and save it.
LoadModule axis_module libexec/libaxiscpp_mod.so (in apache2 replace libexec with modules and libaxiscpp_mod.so with libaxiscpp_mod2.so)
<Location /axis>
SetHandler axis
</Location>
Copy $AXISCPP_HOME/bin/libaxiscpp_mod.so into /usr/local/Apache/libexec/ (in apache2 replace libexec with modules and libaxiscpp_mod.so with libaxiscpp_mod2.so)
$cp -f $AXISCPP_HOME/bin/libaxiscpp_mod.so /usr/local/apache/libexec (in apache2 replace libexec with modules and libaxiscpp_mod.so with libaxiscpp_mod2.so)
Restart apache
}
Regards,
Nishi
Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender at Wipro or [EMAIL PROTECTED] immediately and destroy all copies of this message and any attachments. |