I need to know the programming language that normally generates files
with the '.so' file extention and a link that points to a tutorial. |
Request for Question Clarification by
maniac-ga
on
08 Aug 2005 09:10 PDT
Hello Sergio19,
Are you using a Linux (or Unix) system? The .so file type refers to
shared object files generated by the linker (ld). If this is the case,
I can certainly point you to a tutorial on building shared object
files (as well as the advanages / disadvantages of them).
Please indicate the operating system you are using and if possible the
file name / location of the files you are referring to.
--Maniac
|
Clarification of Question by
sergio19-ga
on
08 Aug 2005 12:19 PDT
Hello and thanks for your reply. I can not point to the exact
location, but can tell you that the following urls are involved:
http://www.domain.com:8080/dir/default.do?requestPage=promo.page
http://www.domain.com:8080/dir/default.do?requestPage=user.update.page
http://www.domain.com:8080/dir/default.do?requestPage=customerservice.page
Is there a special relation from ".so" files and jsp? Or is perhapps
that I can generate ".so" files from any programming language, like
php?
Regards,
Sergio19
|
Request for Question Clarification by
maniac-ga
on
08 Aug 2005 19:52 PDT
Hello Sergio19,
Alas, none of those URL's appear to work for me (I tried a few
different paths / ISPs but no response).
Let me repeat my previous request
- please indicate the operating system you are using.
- please indicate the path on your system to the .so files
If using a Unix (or Linux) system, the first could be answered by the output of
uname
or
uname -sr
and the second could be answered by the output of
whereis libc.so
or something like (replace /usr/lib with the directory and replace
libc.so with your filename)
find /usr/lib -name "libc.so" -print
depending on the type of OS and utilities present on your system.
To answer the last question - if on a Unix system, the .so can be
generated for code from any compiled language. Java code (or JSP -
Java Server Pages) is usually interpreted (not complied) and so is PHP
- so neither could be in an .so file. But code from languages like
Ada, C, C++, and FORTRAN could be included in a properly generated .so
file.
--Maniac
|
Clarification of Question by
sergio19-ga
on
09 Aug 2005 11:24 PDT
I do not have access to the server, but I can tell you that it shows
to have Apache / Tomcat installed on it.
Regards,
sergio19
|
Request for Question Clarification by
justaskscott-ga
on
09 Aug 2005 12:17 PDT
Does this information help?
"File Extension Details for .SO"
FILExt
http://www.filext.com/detaillist.php?extdetail=so
|
Clarification of Question by
sergio19-ga
on
21 Aug 2005 10:37 PDT
I need to verify that the files with either the '.so' or the '.do'
file extention can be generated from the Java programming language on
the Linux Operating System and need to know of a link that points to a
tutorial.
|