<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Facing problem with M3UA library in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337383#M683652</link>
    <description>&lt;!--!*#--&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;First of all, I don't know about OAMM3UA.&lt;BR /&gt;&lt;BR /&gt;Looking at your link line, you are using 64-bit library without -DD64&lt;BR /&gt;option. I'm sure /opt/OC/lib/hpux64/libM3UAOamAPIWBB.so is 64-bit, not 32-bit.&lt;BR /&gt;&lt;BR /&gt;Does the folloging works ?&lt;BR /&gt;&lt;BR /&gt;% /opt/aCC/bin/aCC +DD64 -g -AA -z -v +z -I. \&lt;BR /&gt;    -L/opt/OC/lib/hpux64 -lM3UAOamAPIWBB test.c -o tested&lt;BR /&gt;&lt;BR /&gt;Shinji</description>
    <pubDate>Thu, 15 Jan 2009 04:22:12 GMT</pubDate>
    <dc:creator>Shinji Teragaito_1</dc:creator>
    <dc:date>2009-01-15T04:22:12Z</dc:date>
    <item>
      <title>Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337379#M683648</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am facing problem with OAMM3UA API.&lt;BR /&gt;This is my sample code:&lt;BR /&gt;//Test.c&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;STRING.H&gt;&lt;BR /&gt;#include &lt;FAILURES.H&gt;&lt;BR /&gt;#include "ss7errors.h"&lt;BR /&gt;#include "m3uaOamDefs.h"&lt;BR /&gt;#include "ss7_if.h"&lt;BR /&gt;&lt;BR /&gt;int main(){&lt;BR /&gt;&lt;BR /&gt;    int ret_val;&lt;BR /&gt;    int m3uaCnxId=0;&lt;BR /&gt;    ret_val=SS7_ifclose(m3uaCnxId);&lt;BR /&gt;    printf("%d",ret_val);&lt;BR /&gt;    return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;When I am trying to make binary for this code with the help of OAMM3UA shared library Then I am facing these errors:&lt;BR /&gt;==========&lt;BR /&gt;For making Binary of these sample code.&lt;BR /&gt;&lt;BR /&gt;bash-2.05b# /opt/aCC/bin/aCC -g -AA -z -v +z -I. -L/opt/OC/lib/hpux64/libM3UAOamAPIWBB.so test.c -o tested&lt;BR /&gt;&lt;BR /&gt;These error I am getting:&lt;BR /&gt;bash-2.05b# /opt/aCC/bin/aCC -g -AA -z -v +z -I. -L/opt/OC/lib/hpux64/libM3UAOamAPIWBB.so test.c -o tested&lt;BR /&gt; /opt/aCC/lbin/ecom -architecture 32 -ia64abi all -inst compiletime -sysdir /usr/include -test namespaces -koenig_lookup on -ansi_for_scope on -inline_power 1 -link_type dynamic -fpeval float -fpevaldec _Decimal32 -tls_dyn on -target_os 11.23 -I. --sys_include /opt/aCC/include_std --sys_include /opt/aCC/include_std/iostream_compat --sys_include /usr/include --sys_include /usr -D_HP_IA64ABI -D_BIND_LIBCALLS -D_Math_errhandling=MATH_ERREXCEPT -D__hpux -D__unix -D__ia64=1 -D__ia64__=1 -D_BIG_ENDIAN=1 -D__STDCPP__ -D_HP_NAMESPACE_STD -D_ILP32 -D__cplusplus=199711L -D_INCLUDE__STDC_A1_SOURCE -D__HP_aCC=62000 -D_HP_INSTANTIATE_T_IN_LIB -D_INLINE_ASM -D_FLT_EVAL_METHOD=0 -D_DEC_EVAL_METHOD=0 -debug debugG1 -ucode hdriver=optlevel%1% -plusolistoption -Ol06all! -plusolistoption -Ol13moderate! -plusooption -Oq01,al,ag,cn,sz,ic,vo,Mf,Po,es,rs,Rf,Pr,sp,in,cl,om,vc,pi,fa,pe,rr,pa,pv,nf,cp,lx,Pg,ug,lu,lb,uj,dn,sg,pt,kt,em,np,ar,rp,dl,fs,bp,wp,pc,mp,lr,cx,cr,pi,so,Rc,fa,ft,fe,ap,st,lc,Bl,sr,Qs,do,ib,pl,sd,ll,rl,dl,Lt,ol,fl,lm,ts,rd,dp,If! test.c&lt;BR /&gt;LPATH=/usr/lib/hpux32:/opt/langtools/lib/hpux32&lt;BR /&gt; /usr/ccs/bin/ld -z -o tested -u___exit -umain -L/opt/aCC/lib/hpux32 -L /opt/OC/lib/hpux64/libM3UAOamAPIWBB.so test.o -lstd_v2 -lCsup -lm -lunwind -lCsup -lc -ldl &amp;gt;/var/tmp/AAAa01604 2&amp;gt;&amp;amp;1&lt;BR /&gt; /opt/aCC/bin/c++filt &amp;amp;2&lt;BR /&gt;ld: Unsatisfied symbol "SS7_ifclose" in file test.o&lt;BR /&gt;1 errors.&lt;BR /&gt; removing /var/tmp/AAAa01604&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I also checked libM3UAOamAPIWBB.so file and I got that SS7_ifclose() function is present in that shared library.&lt;BR /&gt;&lt;BR /&gt;Expert, Could yoy tell me why this problem is comming and what would be the resoultion of this problem.&lt;BR /&gt;&lt;BR /&gt;TIA&lt;BR /&gt;-Amit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FAILURES.H&gt;&lt;/STRING.H&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Wed, 14 Jan 2009 10:03:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337379#M683648</guid>
      <dc:creator>astra</dc:creator>
      <dc:date>2009-01-14T10:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337380#M683649</link>
      <description>You are missing the library containing the routine SS7_ifclose in the commandline somewhere. It should be something like '-l ss7'</description>
      <pubDate>Wed, 14 Jan 2009 11:43:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337380#M683649</guid>
      <dc:creator>Elmar P. Kolkman</dc:creator>
      <dc:date>2009-01-14T11:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337381#M683650</link>
      <description>Hi,&lt;BR /&gt;Thanks for your quick reply.&lt;BR /&gt;but my exact question is for SS7_ifclose()api which library file would be include. As I mentioned in my mail I used libM3UAWBB.so library but I can not able to link that library . For verify that which shared file is using this library i checked by using nm command in /opt/oc/lib folder but i did not get the definition of this function.&lt;BR /&gt;&lt;BR /&gt;have you have any idea which of the so file I should used.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Amit</description>
      <pubDate>Wed, 14 Jan 2009 12:18:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337381#M683650</guid>
      <dc:creator>astra</dc:creator>
      <dc:date>2009-01-14T12:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337382#M683651</link>
      <description>Normaly you have to link with a .a library which will load during runtime the .so library.</description>
      <pubDate>Wed, 14 Jan 2009 12:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337382#M683651</guid>
      <dc:creator>Elmar P. Kolkman</dc:creator>
      <dc:date>2009-01-14T12:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337383#M683652</link>
      <description>&lt;!--!*#--&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;First of all, I don't know about OAMM3UA.&lt;BR /&gt;&lt;BR /&gt;Looking at your link line, you are using 64-bit library without -DD64&lt;BR /&gt;option. I'm sure /opt/OC/lib/hpux64/libM3UAOamAPIWBB.so is 64-bit, not 32-bit.&lt;BR /&gt;&lt;BR /&gt;Does the folloging works ?&lt;BR /&gt;&lt;BR /&gt;% /opt/aCC/bin/aCC +DD64 -g -AA -z -v +z -I. \&lt;BR /&gt;    -L/opt/OC/lib/hpux64 -lM3UAOamAPIWBB test.c -o tested&lt;BR /&gt;&lt;BR /&gt;Shinji</description>
      <pubDate>Thu, 15 Jan 2009 04:22:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337383#M683652</guid>
      <dc:creator>Shinji Teragaito_1</dc:creator>
      <dc:date>2009-01-15T04:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem with M3UA library</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337384#M683653</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Thanks for all your support.&lt;BR /&gt;Finally I resloved that issue.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Amit</description>
      <pubDate>Thu, 15 Jan 2009 13:08:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/facing-problem-with-m3ua-library/m-p/4337384#M683653</guid>
      <dc:creator>astra</dc:creator>
      <dc:date>2009-01-15T13:08:36Z</dc:date>
    </item>
  </channel>
</rss>

