ok,
Actually I had already built application with those libraries getting used
with it.Nowhere I had installed or used Xerces in my application.
Just 3 days back I got new requirement where I have to work with Xerces for
XML interface and since then I am seeing these linking issue.The file name
in linking error you are seeing is one I am compiling.
For your second pointer, I am also seeing this anomaly.Just not getting how
on earth it is trying to link with 2.8 version even when that library is not
present in my machine.I even did a cross check and I can reiterate that
xerces libraries I shown you are the only one present here.
is there something I am unintentionally mentioning in code which is putting
me in this situation ?Do I need to define something in my makefile for
that.Also How can I check that my compiler have NAMESPACE support(as
mentioned in one of links of xerces for that support).
Follwouing is the gccversion details from my machine.

Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-libgcj-multifile
--enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk
--disable-dssi --enable-plugin
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic
--host=i386-redhat-linux
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-44)


Regards,
Parveen Jain



On Tue, Mar 23, 2010 at 2:25 PM, Kun Niu <[email protected]> wrote:

> For me, your code seems fine. But your code seems to link against xercesc
> 2.8. I can't see why if no other code depends on xerces-c in your project.
>
> Parveen Kumar Jain writes:
>
>> Thanks Kun,
>>   Samples are very well compiled along with source files.I can see there
>> binaries on system and they are running pretty well.
>> Also no other library I am using have the dependency over xerces.Mine is
>> the only code which is referring to Xerces.
>> Can you see that code I am using should have any other macro or any other
>> definition.
>>
>> Regards,
>> Parveen Jain
>>
>> On Tue, Mar 23, 2010 at 2:10 PM, Kun Niu <[email protected] <mailto:
>> [email protected]>> wrote:
>>
>>    It seems that some other libraries you're using depends on the old
>>    xerces-c library.
>>    Did you try the sample projects bundled with xerces?
>>    Do they work fine on your system?
>>
>>    Parveen Kumar Jain writes:
>>
>>        Hi All,
>>         I am trying to use xerces_3.1.0 on Linux Platform version
>>        redhat 5.0.I Cal
>>        compile the source code without any problem.And also I can see
>>        the resultant
>>        .lib files in "/usr/local/lib".Following are the lib files I
>>        can see at this
>>        path after compilation
>>
>>        libxerces-c-3.1.so <http://libxerces-c-3.1.so>
>>         libxerces-c.a
>>        libxerces-c.la <http://libxerces-c.la>
>>        libxerces-c.so -> libxerces-c-3.1.so <http://libxerces-c-3.1.so>
>>
>>
>>        Now I had written a small basic application for using the XML
>>        library for
>>        parsing the XML strings.But whenever I try to link this
>>        library I am getting
>>        linking errors.I had included the path of this library and
>>        also linked the
>>        library using command "-lxerces-c".The path of library should
>>        not be a
>>        trouble as I am also linking some other libraries for my
>>        program which lies
>>        at this location.
>>
>>        Here I am seriously not getting the issue behind it.After some
>>        digging on
>>        Xerces document I found that I need to add
>>        XERCES_CPP_NAMESPACE_USE.I did
>>        this but still getting the same linking issues.
>>
>>        Following are the lining issues:
>>        /ASXmlHandler.cpp:22: undefined reference to
>>        `xercesc_2_8::XMLString::transcode(unsigned short const*)'
>>        /ASXmlHandler.cpp:26: undefined reference to
>>        `xercesc_2_8::XMLString::release(char**)'
>>        /ASXmlHandler.cpp:31: undefined reference to
>>        `xercesc_2_8::XMLString::transcode(unsigned short const*)'
>>        /ASXmlHandler.cpp:33: undefined reference to
>>        `xercesc_2_8::XMLString::release(char**)'
>>        /ASXmlHandler.cpp:35: undefined reference to
>>        `xercesc_2_8::XMLString::transcode(unsigned short const*)'
>>        /ASXmlHandler.cpp:37: undefined reference to
>>        `xercesc_2_8::XMLString::release(char**)'
>>
>>        And following is the contents of my .h file for inheriting the
>>        base file:
>>        #include <string>
>>        #include "xercesc/sax/HandlerBase.hpp"
>>        #include <map>
>>
>>        using namespace xercesc;
>>        using namespace std;
>>        //XERCES_CPP_NAMESPACE_USE
>>        //XERCES_CPP_NAMESPACE_BEGIN
>>         namespace ElementTypes
>>        {
>>           const std::string ACTION = "ACTION|action";
>>           const std::string NAME   = "NAME|name";
>>           const std::string PARAMS = "PARAMS|params";
>>           const std::string PARAM  = "PARAM|param";
>>           const std::string VAL    = "VAL|val";
>>        };
>>
>>        namespace Actions
>>        {
>>           const std::string DIAL   = "DIAL|dial";
>>        };
>>
>>        typedef enum eXmlPositions
>>        {
>>           BEGIN,
>>           INSIDE_ACTION,
>>           INSIDE_ACTION_NAME,
>>           INSIDE_ACTION_PARAMS,
>>           INSIDE_ACTION_PARAMS_PARAM,
>>           INSIDE_ACTION_PARAMS_PARAM_NAME,
>>           INSIDE_ACTION_PARAMS_PARAM_VAL
>>        }XmlPosition;
>>
>>        class XmlHandler : public HandlerBase
>>        {
>>        public:
>>           std::string currAction;
>>           std::map<std::string,std::string> currParams;
>>           XmlPosition pos;
>>
>>           XmlHandler();
>>           ~XmlHandler();
>>
>>           //
>>
>>  -----------------------------------------------------------------------
>>           //  Handlers for the SAX DocumentHandler interface
>>           //
>>
>>  -----------------------------------------------------------------------
>>           void startElement(const XMLCh* const name, AttributeList&
>>        attributes);
>>           void endElement(const XMLCh* const name);
>>           void characters(const XMLCh* const chars, const XMLSize_t
>>        length);
>>           void ignorableWhitespace(const XMLCh* const chars, const
>>        XMLSize_t
>>        length);
>>           void resetDocument();
>>
>>
>>           //
>>
>>  -----------------------------------------------------------------------
>>           //  Handlers for the SAX ErrorHandler interface
>>           //
>>
>>  -----------------------------------------------------------------------
>>           void warning(const SAXParseException& exc);
>>           void error(const SAXParseException& exc);
>>           void fatalError(const SAXParseException& exc);
>>
>>        };
>>
>>        Any help will be highly appreciated.
>>
>>        Regards,
>>        Parveen Jain
>>
>>        On Tue, Mar 23, 2010 at 1:52 PM,
>>        <[email protected]
>>        <mailto:[email protected]>> wrote:
>>
>>
>>            Hi! This is the ezmlm program. I'm managing the
>>            [email protected]
>>            <mailto:[email protected]> mailing list.
>>
>>
>>            I'm working for my owner, who can be reached
>>            at [email protected]
>>            <mailto:[email protected]>.
>>
>>
>>            Acknowledgment: I have added the address
>>
>>             [email protected] <mailto:[email protected]>
>>
>>
>>            to the c-users mailing list.
>>
>>            Welcome to [email protected]
>>            <mailto:[email protected]>!
>>
>>
>>            Please save this message so that you know the address you are
>>            subscribed under, in case you later want to unsubscribe or
>>            change your
>>            subscription address.
>>
>>
>>            --- Administrative commands for the c-users list ---
>>
>>            I can handle administrative requests automatically. Please
>>            do not send them to the list address! Instead, send
>>            your message to the correct command address:
>>
>>            To subscribe to the list, send a message to:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            To remove your address from the list, send a message to:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            Send mail to the following for info and FAQ for this list:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>             <[email protected]
>>
>>            <mailto:[email protected]>>
>>
>>            Similar addresses exist for the digest list:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            To get messages 123 through 145 (a maximum of 100 per
>>            request), mail:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            To get an index with subject and author for messages
>>            123-456 , mail:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            They are always returned as sets of 100, max 2000 per request,
>>            so you'll actually get 100-499.
>>
>>            To receive all messages with the same subject as message
>>            12345,
>>            send a short message to:
>>             <[email protected]
>>            <mailto:[email protected]>>
>>
>>            The messages should contain one line or word of text to
>>            avoid being
>>            treated as s...@m, but I will ignore their content.
>>            Only the ADDRESS you send to is important.
>>
>>            You can start a subscription for an alternate address,
>>            for example "[email protected]", just add a hyphen and your
>>            address (with '=' instead of '@') after the command word:
>>            <[email protected]
>>            <mailto:[email protected]>>
>>
>>            To stop subscription for this address, mail:
>>            <[email protected]
>>            <mailto:[email protected]>>
>>
>>            In both cases, I'll send a confirmation message to that
>>            address. When
>>            you receive it, simply reply to it to complete your
>>            subscription.
>>
>>            If despite following these instructions, you do not get the
>>            desired results, please contact my owner at
>>            [email protected]
>>            <mailto:[email protected]>. Please be
>>
>>            patient, my owner is a
>>            lot slower than I am ;-)
>>
>>            --- Enclosed is a copy of the request I received.
>>
>>            Return-Path: <[email protected]
>>            <mailto:[email protected]>>
>>            Received: (qmail 49219 invoked by uid 99); 23 Mar 2010
>>            08:22:02 -0000
>>            Received: from athena.apache.org
>>            <http://athena.apache.org> (HELO athena.apache.org
>>            <http://athena.apache.org>) (140.211.11.136)
>>              by apache.org <http://apache.org> (qpsmtpd/0.29) with
>>
>>            ESMTP; Tue, 23 Mar 2010 08:22:02
>>            +0000
>>            X-ASF-Spam-Status: No, hits=4.2 required=10.0
>>
>>
>> tests=HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_DNSWL_NONE,SPF_PASS
>>            X-Spam-Check-By: apache.org <http://apache.org>
>>
>>            Received-SPF: pass (athena.apache.org
>>            <http://athena.apache.org>: domain of
>>
>>            [email protected] 209.85.223.181 as
>>            permitted sender)
>>
>>            Received: from [209.85.223.181] (HELO
>>            mail-iw0-f181.google.com <http://mail-iw0-f181.google.com>)
>>            (209.85.223.181)
>>              by apache.org <http://apache.org> (qpsmtpd/0.29) with
>>
>>            ESMTP; Tue, 23 Mar 2010 08:21:56
>>            +0000
>>            Received: by iwn11 with SMTP id 11so5193418iwn.11
>>                  for
>>            <c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain=
>>            one97.net <http://one97.net>@xerces.apache.org
>>            <http://xerces.apache.org>>; Tue, 23 Mar 2010 01:21:34
>>
>>            -0700 (PDT)
>>            MIME-Version: 1.0
>>            Received: by 10.231.147.16 with SMTP id
>>            j16mr1015391ibv.42.1269332494144;
>>            Tue,
>>                  23 Mar 2010 01:21:34 -0700 (PDT)
>>            X-Originating-IP: [122.160.208.58]
>>            In-Reply-To: <[email protected]
>>            <mailto:[email protected]>>
>>
>>            References: <[email protected]
>>            <mailto:[email protected]>>
>>
>>            From: Parveen Kumar Jain <[email protected]
>>            <mailto:[email protected]>>
>>            Date: Tue, 23 Mar 2010 13:51:14 +0530
>>            Message-ID:
>>            <[email protected]
>>            <mailto:
>> [email protected]>>
>>
>>            Subject: Re: confirm subscribe to
>>            [email protected] <mailto:[email protected]>
>>
>>            To:
>>            c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain=
>> one97.net
>>            <http://one97.net>@
>>            xerces.apache.org <http://xerces.apache.org>
>>
>>            Content-Type: multipart/alternative;
>>            boundary=001485e7c8066a56ef04827380e3
>>
>>            --001485e7c8066a56ef04827380e3
>>            Content-Type: text/plain; charset=windows-1252
>>            Content-Transfer-Encoding: quoted-printable
>>
>>            On Tue, Mar 23, 2010 at 1:49 PM,
>>            <[email protected]
>>            <mailto:[email protected]>> wrote:
>>
>>
>>                Hi! This is the ezmlm program. I'm managing the
>>                [email protected]
>>                <mailto:[email protected]> mailing list.
>>
>>
>>                I'm working for my owner, who can be reached
>>                at [email protected]
>>                <mailto:[email protected]>.
>>
>>
>>                To confirm that you would like
>>
>>                 [email protected] <mailto:[email protected]>
>>
>>
>>                added to the c-users mailing list, please send
>>                a short reply to this address:
>>
>>
>> c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain=3Done97.net@
>>                xerces.apache.org <http://xerces.apache.org>
>>
>>
>>                Usually, this happens when you just hit the "reply"
>>                button.
>>                If this does not work, simply copy the address and
>>                paste it into
>>                the "To:" field of a new message.
>>
>>                or click here:
>>                                     mailto:
>> c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain
>>                <mailto:
>> c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain>=3D
>>                one97.net <http://one97.net>@xerces.apache.org
>>                <http://xerces.apache.org>
>>
>>
>>                This confirmation serves two purposes. First, it
>>                verifies that I am able
>>                to get mail through to you. Second, it protects you in
>>                case someone
>>                forges a subscription request in your name.
>>
>>                Some mail programs are broken and cannot handle long
>>                addresses. If you
>>                cannot reply to this request, instead send a message to
>>                <[email protected]
>>                <mailto:[email protected]>> and put the
>>
>>                entire address listed above into the "Subject:" line.
>>
>>
>>                --- Administrative commands for the c-users list ---
>>
>>                I can handle administrative requests automatically. Please
>>                do not send them to the list address! Instead, send
>>                your message to the correct command address:
>>
>>                To subscribe to the list, send a message to:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                To remove your address from the list, send a message to:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                Send mail to the following for info and FAQ for this list:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>                 <[email protected]
>>
>>                <mailto:[email protected]>>
>>
>>                Similar addresses exist for the digest list:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                To get messages 123 through 145 (a maximum of 100 per
>>                request), mail:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                To get an index with subject and author for messages
>>                123-456 , mail:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                They are always returned as sets of 100, max 2000 per
>>                request,
>>                so you'll actually get 100-499.
>>
>>                To receive all messages with the same subject as
>>                message 12345,
>>                send a short message to:
>>                 <[email protected]
>>                <mailto:[email protected]>>
>>
>>                The messages should contain one line or word of text
>>                to avoid being
>>                treated as s...@m, but I will ignore their content.
>>                Only the ADDRESS you send to is important.
>>
>>                You can start a subscription for an alternate address,
>>                for example "[email protected]", just add a hyphen and your
>>                address (with '=3D' instead of '@') after the command
>>                word:
>>                <[email protected]
>>                <mailto:[email protected]>>
>>
>>
>>                To stop subscription for this address, mail:
>>                <[email protected]
>>                <mailto:[email protected]>>
>>
>>
>>                In both cases, I'll send a confirmation message to
>>                that address. When
>>                you receive it, simply reply to it to complete your
>>                subscription.
>>
>>                If despite following these instructions, you do not
>>                get the
>>                desired results, please contact my owner at
>>                [email protected]
>>                <mailto:[email protected]>. Please be
>>
>>                patient, my owner is a
>>                lot slower than I am ;-)
>>
>>                --- Enclosed is a copy of the request I received.
>>
>>                Return-Path: <[email protected]
>>                <mailto:[email protected]>>
>>                Received: (qmail 48238 invoked by uid 99); 23 Mar 2010
>>                08:19:32 -0000
>>                Received: from nike.apache.org
>>                <http://nike.apache.org> (HELO nike.apache.org
>>                <http://nike.apache.org>) (192.87.106.230)
>>                  by apache.org <http://apache.org> (qpsmtpd/0.29)
>>
>>                with ESMTP; Tue, 23 Mar 2010 08:19:32
>>                +0000
>>                X-ASF-Spam-Status: No, hits=3D2.2 required=3D10.0
>>
>>
>>
>>
>> tests=3DASF_LIST_OPS,HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_DNSWL_N=
>>            ONE,SPF_PASS
>>
>>                X-Spam-Check-By: apache.org <http://apache.org>
>>
>>                Received-SPF: pass (nike.apache.org
>>                <http://nike.apache.org>: domain of
>>
>>
>>            [email protected]=
>>            gnates 209.85.223.181 as permitted sender)
>>
>>                Received: from [209.85.223.181] (HELO
>>                mail-iw0-f181.google.com
>>                <http://mail-iw0-f181.google.com>)
>>                (209.85.223.181)
>>                  by apache.org <http://apache.org> (qpsmtpd/0.29)
>>
>>                with ESMTP; Tue, 23 Mar 2010 08:19:23
>>                +0000
>>                Received: by iwn11 with SMTP id 11so5191671iwn.11
>>                      for <[email protected]
>>                <mailto:[email protected]>>; Tue, 23
>>
>>                Mar 2010
>>                01:19:01 -0700 (PDT)
>>                MIME-Version: 1.0
>>                Received: by 10.231.154.207 with SMTP id
>>
>>            p15mr2027557ibw.91.1269332341142=
>>            ;
>>
>>                      Tue, 23 Mar 2010 01:19:01 -0700 (PDT)
>>                X-Originating-IP: [122.160.208.58]
>>                From: Parveen Kumar Jain <[email protected]
>>                <mailto:[email protected]>>
>>                Date: Tue, 23 Mar 2010 13:48:41 +0530
>>                Message-ID:
>>                <
>> [email protected]
>>                <mailto:
>> [email protected]>
>>
>>
>>                Subject:
>>                To: [email protected]
>>                <mailto:[email protected]>
>>                Content-Type: multipart/alternative;
>>
>>            boundary=3D0050450140c44bb5a20482737=
>>            7c1
>>
>>                X-Virus-Checked: Checked by ClamAV on apache.org
>>                <http://apache.org>
>>
>>
>>                --0050450140c44bb5a204827377c1
>>                Content-Type: text/plain; charset=3Dwindows-1252
>>                Content-Transfer-Encoding: quoted-printable
>>
>>                --=3D20
>>                Parveen Jain
>>                Technical Lead =3D96 Network Engineering
>>                One97 Communications (P) Ltd
>>                B121, Sector 5, Noida, UP 201301
>>
>>                P:  + 91 120 4770770      Extn:352
>>                M: + 91   9212708203
>>                W: www.one97world.com <http://www.one97world.com>
>>
>>
>>                --0050450140c44bb5a204827377c1
>>                Content-Type: text/html; charset=3Dwindows-1252
>>                Content-Transfer-Encoding: quoted-printable
>>
>>                <br clear=3D3D"all"><br>-- <br>Parveen
>>                Jain<br>Technical Lead =3D96
>>
>>            Netwo=
>>            rk
>>
>>                Eng=3D
>>                ineering                 <br>One97 Communications (P)
>>                Ltd =3DA0 =3DA0
>>
>>            =3D=
>>            A0 =3DA0
>>
>>                =3DA0 =3DA0 =3DA0 =3DA0=3D
>>                 =3DA0 =3DA0 =3DA0 =3DA0<br>B121, Sector 5, Noida, UP
>>                201301 =3DA0 =3DA0
>>
>>            =
>>            =3DA0 =3DA0 =3DA0 =3D
>>
>>                =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0
>>                =3DA0 =3DA0 =3DA0 =
>>
>>            =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0
>>
>>                =3DA0=3D
>>                 =3DA0 =3DA0 =3DA0 <br>
>>
>>                P: =3DA0+ 91 120 4770770 =3DA0 =3DA0
>>                =3DA0Extn:352<br>M: + 91 =3DA0
>>
>>            92127=
>>            08203<br>W:
>>
>>                =3D
>>                <a
>>                href=3D3D"http://www.one97world.com";>www.one97world.com
>>                <http://www.one97world.com></a> <br><br>
>>
>>
>>                --0050450140c44bb5a204827377c1--
>>
>>
>>
>>            --=20
>>            Parveen Jain
>>            Technical Lead =96 Network Engineering
>>            One97 Communications (P) Ltd
>>            B121, Sector 5, Noida, UP 201301
>>
>>            P:  + 91 120 4770770      Extn:352
>>            M: + 91   9212708203
>>            W: www.one97world.com <http://www.one97world.com>
>>
>>
>>            --001485e7c8066a56ef04827380e3
>>            Content-Type: text/html; charset=windows-1252
>>            Content-Transfer-Encoding: quoted-printable
>>
>>            <br><br><div class=3D"gmail_quote">On Tue, Mar 23, 2010 at
>>            1:49 PM,  <span
>>            =
>>            dir=3D"ltr">&lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-h=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;</span>
>>
>>            wrote:<br><blockquote
>>            class=3D"gmail_q=
>>            uote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc
>>            solid;padding-left:1e=
>>            x;">
>>
>>            Hi! This is the ezmlm program. I&#39;m managing the<br>
>>            <a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>">[email protected]
>>            <mailto:[email protected]></a>
>>
>>            =
>>            mailing list.<br>
>>            <br>
>>            I&#39;m working for my owner, who can be reached<br>
>>            at <a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-ow...@xerces.=
>>            apache.org <http://apache.org></a>.<br>
>>
>>            <br>
>>            To confirm that you would like<br>
>>            <br>
>>             =A0 <a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>">[email protected]
>>            <mailto:[email protected]>
>>            </a><b=
>>            r>
>>            <br>
>>            added to the c-users mailing list, please send<br>
>>            a short reply to this address:<br>
>>            <br>
>>             =A0
>>            c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.jain=3D<a
>>            href=3D"h=
>>            ttp://one97.net <http://one97.net>"
>>            target=3D"_blank">one97.net <http://one97.net></a>@<a href=3D"
>>            http://xerces.a=
>>            pache.org <http://pache.org>"
>>
>>            target=3D"_blank">xerces.apache.org
>>            <http://xerces.apache.org></a><br>
>>
>>            <br>
>>            Usually, this happens when you just hit the
>>            &quot;reply&quot; button.<br>
>>            If this does not work, simply copy the address and paste
>>            it into<br>
>>            the &quot;To:&quot; field of a new message.<br>
>>            <br>
>>            or click here:<br>
>>             =A0 =A0 =A0 =A0mailto:<a href=3D"mailto:
>>            c-users-sc.1269332373.nopjolemield=
>>
>>
>>  mofdbicn-parveen.jain">c-users-sc.1269332373.nopjolemieldmofdbicn-parveen.j=
>>            ain</a>=3D<a href=3D"http://one97.net";
>>            target=3D"_blank">one97.net <http://one97.net></a>@<a
>>
>>            h=
>>            ref=3D"http://xerces.apache.org";
>>            target=3D"_blank">xerces.apache.org <http://xerces.apache.org>
>>
>>            </a><br=
>>               <br>
>>            This confirmation serves two purposes. First, it verifies
>>            that I am
>>            able<br=
>>               to get mail through to you. Second, it protects you in
>>            case someone<br>
>>            forges a subscription request in your name.<br>
>>            <br>
>>            Some mail programs are broken and cannot handle long
>>            addresses. If you<br>
>>            cannot reply to this request, instead send a message to<br>
>>            &lt;<a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-requ...@xe=
>>            rces.apache.org <http://rces.apache.org></a>&gt; and put
>>
>>            the<br>
>>            entire address listed above into the &quot;Subject:&quot;
>>            line.<br>
>>            <br>
>>            <br>
>>            --- Administrative commands for the c-users list ---<br>
>>            <br>
>>            I can handle administrative requests automatically. Please<br>
>>            do not send them to the list address! Instead, send<br>
>>            your message to the correct command address:<br>
>>            <br>
>>            To subscribe to the list, send a message to:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-sub=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            To remove your address from the list, send a message to:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-u=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            Send mail to the following for info and FAQ for this list:<br>
>>             =A0 &lt;<a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-i...@xer=
>>            ces.apache.org <http://ces.apache.org></a>&gt;<br>
>>
>>             =A0 &lt;<a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-...@xerce=
>>            s.apache.org <http://s.apache.org></a>&gt;<br>
>>
>>            <br>
>>            Similar addresses exist for the digest list:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-us=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-=
>>            [email protected]
>>            <mailto:[email protected]
>> ></a>&gt;<br>
>>
>>            <br>
>>            To get messages 123 through 145 (a maximum of 100 per
>>            request), mail:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-g=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            To get an index with subject and author for messages
>>            123-456 , mail:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            They are always returned as sets of 100, max 2000 per
>>            request,<br>
>>            so you&#39;ll actually get 100-499.<br>
>>            <br>
>>            To receive all messages with the same subject as message
>>            12345,<br>
>>            send a short message to:<br>
>>             =A0 &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-=
>>            [email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            The messages should contain one line or word of text to
>>            avoid being<br>
>>            treated as s...@m, but I will ignore their content.<br>
>>            Only the ADDRESS you send to is important.<br>
>>            <br>
>>            You can start a subscription for an alternate address,<br>
>>            for example &quot;[email protected]&quot;, just add a
>>            hyphen and your<br>
>>            address (with &#39;=3D&#39; instead of &#39;@&#39;) after
>>            the command
>>            word:=
>>            <br>
>>            &lt;c-users-subscribe-john=3D<a href=3D"mailto:
>>            [email protected]=
>>            g">[email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            To stop subscription for this address, mail:<br>
>>            &lt;c-users-unsubscribe-john=3D<a href=3D"mailto:
>>            [email protected].=
>>            org">[email protected]
>>            <mailto:[email protected]></a>&gt;<br>
>>
>>            <br>
>>            In both cases, I&#39;ll send a confirmation message to
>>            that address.
>>            When<b=
>>            r>
>>            you receive it, simply reply to it to complete your
>>            subscription.<br>
>>            <br>
>>            If despite following these instructions, you do not get
>>            the<br>
>>            desired results, please contact my owner at<br>
>>            <a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">[email protected]=
>>            che.org <http://che.org></a>. Please be patient, my owner
>>
>>            is a<br>
>>            lot slower than I am ;-)<br>
>>            <br>
>>            --- Enclosed is a copy of the request I received.<br>
>>            <br>
>>            Return-Path: &lt;<a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">parveen.j...@one=
>>            97.net <http://97.net></a>&gt;<br>
>>
>>            Received: (qmail 48238 invoked by uid 99); 23 Mar 2010
>>            08:19:32 -0000<br>
>>            Received: from <a href=3D"http://nike.apache.org";
>>            target=3D"_blank">nike.ap=
>>            ache.org <http://ache.org></a> (HELO <a
>>
>>            href=3D"http://nike.apache.org";
>>            target=3D"_blank">nik=
>>            e.apache.org <http://e.apache.org></a>) (192.87.106.230)<br>
>>
>>             =A0 =A0by <a href=3D"http://apache.org";
>>            target=3D"_blank">apache.org <http://apache.org></a>
>>
>>            (=
>>            qpsmtpd/0.29) with ESMTP; Tue, 23 Mar 2010 08:19:32 +0000<br>
>>            X-ASF-Spam-Status: No, hits=3D2.2 required=3D10.0<br>
>>             =A0 =A0 =A0
>>            =A0tests=3DASF_LIST_OPS,HTML_MESSAGE,RCVD_IN_BL_SPAMCOP_NET,RC=
>>            VD_IN_DNSWL_NONE,SPF_PASS<br>
>>            X-Spam-Check-By: <a href=3D"http://apache.org";
>>            target=3D"_blank">
>>            apache.org <http://apache.org>=
>>
>>            </a><br>
>>            Received-SPF: pass (<a href=3D"http://nike.apache.org";
>>            target=3D"_blank">ni=
>>            ke.apache.org <http://ke.apache.org></a>: domain of <a
>>
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">parv=
>>            [email protected] <mailto:[email protected]></a>
>>
>>            designates 209.85.223.181 as permitted sender)<br>
>>            Received: from [209.85.223.181] (HELO <a href=3D"
>>            http://mail-iw0-f181.googl=
>>            e.com <http://e.com>"
>>
>>            target=3D"_blank">mail-iw0-f181.google.com
>>            <http://mail-iw0-f181.google.com></a>)
>>
>>            (209.85.223.181)<br>
>>             =A0 =A0by <a href=3D"http://apache.org";
>>            target=3D"_blank">apache.org <http://apache.org></a>
>>
>>            (=
>>            qpsmtpd/0.29) with ESMTP; Tue, 23 Mar 2010 08:19:23 +0000<br>
>>            Received: by iwn11 with SMTP id 11so5191671iwn.11<br>
>>             =A0 =A0 =A0 =A0for &lt;<a href=3D"mailto:
>>            [email protected]=
>>            rg">[email protected]
>>            <mailto:[email protected]></a>&gt;; Tue,
>>
>>            23 Mar 2010 01:19:01
>>            =
>>            -0700 (PDT)<br>
>>            MIME-Version: 1.0<br>
>>            Received: by 10.231.154.207 with SMTP id
>>            p15mr2027557ibw.91.1269332341142;<=
>>            br>
>>             =A0 =A0 =A0 =A0Tue, 23 Mar 2010 01:19:01 -0700 (PDT)<br>
>>            X-Originating-IP: [122.160.208.58]<br>
>>            From: Parveen Kumar Jain &lt;<a
>>            href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">parv=
>>            [email protected] <mailto:[email protected]></a>&gt;<br>
>>
>>            Date: Tue, 23 Mar 2010 13:48:41 +0530<br>
>>            Message-ID: &lt;<a href=3D"mailto:
>>            4f5bece41003230118o42937ef2g31c01e18ebc1c=
>>            [email protected] <mailto:[email protected]>
>>
>>            ">[email protected]=
>>            .com</a>&gt;<br>
>>            Subject:<br>
>>            To: <a href=3D"mailto:[email protected]
>>            <mailto:[email protected]>
>>            ">c-users-subscrib=
>>            [email protected] <mailto:[email protected]></a><br>
>>
>>            Content-Type: multipart/alternative;
>>            boundary=3D0050450140c44bb5a204827377c=
>>            1<br>
>>            X-Virus-Checked: Checked by ClamAV on <a
>>            href=3D"http://apache.org";
>>            target=
>>            =3D"_blank">apache.org <http://apache.org></a><br>
>>
>>            <br>
>>            --0050450140c44bb5a204827377c1<br>
>>            Content-Type: text/plain; charset=3Dwindows-1252<br>
>>            Content-Transfer-Encoding: quoted-printable<br>
>>            <br>
>>            --=3D20<br>
>>            Parveen Jain<br>
>>            Technical Lead =3D96 Network Engineering<br>
>>            One97 Communications (P) Ltd<br>
>>            B121, Sector 5, Noida, UP 201301<br>
>>            <br>
>>            P: =A0+ 91 120 4770770 =A0 =A0 =A0Extn:352<br>
>>            M: + 91 =A0 9212708203<br>
>>            W: <a href=3D"http://www.one97world.com";
>>            target=3D"_blank">www.one97world.c=
>>            om</a><br>
>>            <br>
>>            --0050450140c44bb5a204827377c1<br>
>>            Content-Type: text/html; charset=3Dwindows-1252<br>
>>            Content-Transfer-Encoding: quoted-printable<br>
>>            <br>
>>            &lt;br clear=3D3D&quot;all&quot;&gt;&lt;br&gt;--
>>            &lt;br&gt;Parveen
>>            Jain&lt;=
>>            br&gt;Technical Lead =3D96 Network Eng=3D<br>
>>            ineering =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 &lt;br&gt;One97
>>            Communications
>>            (P)=
>>             Ltd =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0=3D<br>
>>            =A0=3DA0 =3DA0 =3DA0 =3DA0&lt;br&gt;B121, Sector 5, Noida,
>>            UP 201301 =3DA0
>>            =
>>            =3DA0 =3DA0 =3DA0 =3DA0 =3D<br>
>>            =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0
>>            =3DA0 =3DA0 =3DA0
>>            =3D=
>>            A0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0 =3DA0=3D<br>
>>            =A0=3DA0 =3DA0 =3DA0 &lt;br&gt;<br>
>>            <br>
>>            P: =3DA0+ 91 120 4770770 =3DA0 =3DA0
>>            =3DA0Extn:352&lt;br&gt;M: + 91 =3DA0
>>            9=
>>            212708203&lt;br&gt;W: =3D<br>
>>            &lt;a href=3D3D&quot;<a href=3D"http://www.one97world.com";
>>            target=3D"_blank=
>>            ">http://www.one97world.com</a>&quot;&gt;<a href=3D"
>>            http://www.one97world.c=
>>            om" target=3D"_blank">www.one97world.com
>>            <http://www.one97world.com></a>&lt;/a&gt;
>>
>>            &lt;br&gt;&lt;br&gt;=
>>            <br>
>>            <br>
>>            --0050450140c44bb5a204827377c1--<br>
>>            </blockquote></div><br><br clear=3D"all"><br>-- <br>Parveen
>>            Jain<br>Technic=
>>            al Lead =96 Network Engineering          <br>One97
>>            Communications (P) Ltd
>>            =A0 =A0 =
>>            =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0<br>B121, Sector 5,
>>            Noida, UP
>>            201301=
>>             =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
>>            =A0 =A0 =A0 =A0 =
>>            =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 <br>
>>
>>            P: =A0+ 91 120 4770770 =A0 =A0 =A0Extn:352<br>M: + 91 =A0
>>            9212708203<br>W:
>>            =
>>            <a href=3D"http://www.one97world.com";>www.one97world.com
>>            <http://www.one97world.com></a> <br><br>
>>
>>
>>            --001485e7c8066a56ef04827380e3--
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> --
>> Parveen Jain
>> Technical Lead – Network Engineering
>> One97 Communications (P) Ltd                        B121, Sector 5, Noida,
>> UP 201301                                                      P:  + 91 120
>> 4770770      Extn:352
>> M: + 91   9212708203
>> W: www.one97world.com <http://www.one97world.com>
>>
>>


-- 
Parveen Jain
Technical Lead – Network Engineering
One97 Communications (P) Ltd
B121, Sector 5, Noida, UP 201301

P:  + 91 120 4770770      Extn:352
M: + 91   9212708203
W: www.one97world.com

Reply via email to