Quote:
Originally Posted by numberwhun
I understand that you have a difficult situation, but if you are going to do this in Perl, then you are going to have to learn some Perl one way or the other. This is a learning forum, not an answers forum.
So, you have an XML file and you say you need to "send it to the Unix server"? Can you please be more specific? Are you saying that you need to have Perl write the file over to the directory on the server so it can be served by Apache, or are you saying you need to simply "move" the file over there? Your explanation is not completely clear.
Perl can do a lot of things, especially with regards to dealing with files. Please be more specific as to what exactly you are wanting to do.
In the future though, I would not bite off more than you can chew for a project without first letting your boss know whether you know the technology or not. Either way, it will not end up good for you, especially when you either don't meet your date, or you cannot do what was asked.
Regards,
Jeff
Thank you for answer
i have searched and found how to write xml in perl
and i have created an xml file so
for example aa.xml
inside of aa.xml
<?xml version='1.0'?>
<employees>
<employee>
<name>John Doe</name>
<age>43</age>
<sex>M</sex>
<department>Operations</department>
</employee>
<employee>
<name>Jane Doe</name>
<age>31</age>
<sex>F</sex>
<department>Accounts</department>
</employee>
<employee>
<name>Be Goode</name>
<age>32</age>
<sex>M</sex>
<department>Human Resources</department>
</employee>
</employees>
i need to post aa.xml's inside codes to http://mydomain/cgi-bin/chn1.cgi
then chn1.cgi uses it in our program
it can read only xml format
so i need to post things in xml
my output.xml's inside must be posted
what i m exactly trying to do is this
thanks for your interests.