Return-Path: Delivered-To: apmail-ws-axis-c-user-archive@www.apache.org Received: (qmail 94360 invoked from network); 24 Jul 2009 19:55:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 24 Jul 2009 19:55:50 -0000 Received: (qmail 83194 invoked by uid 500); 24 Jul 2009 19:56:55 -0000 Delivered-To: apmail-ws-axis-c-user-archive@ws.apache.org Received: (qmail 83166 invoked by uid 500); 24 Jul 2009 19:56:55 -0000 Mailing-List: contact axis-c-user-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C User List" Reply-To: "Apache AXIS C User List" Delivered-To: mailing list axis-c-user@ws.apache.org Received: (qmail 83150 invoked by uid 99); 24 Jul 2009 19:56:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Jul 2009 19:56:55 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of farmoni@itautec.com designates 201.63.12.11 as permitted sender) Received: from [201.63.12.11] (HELO in.itautec.com.br) (201.63.12.11) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Jul 2009 19:56:47 +0000 X-AuditID: c93f0c0c-b7bd0ae000000f0d-d4-4a6a11e58753 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01CA0C98.CFD56628" Subject: RES: Problems building Axis C++ with ant Date: Fri, 24 Jul 2009 16:56:18 -0300 Message-ID: X-MS-Has-Attach: yes X-MS-TNEF-Correlator: Thread-Topic: Problems building Axis C++ with ant Thread-Index: AcoMbVbP5ZqliWCsTzeNpjIgWDkKigAAUopwAAJFsBAAAOw2gAABeONwAAWmXwA= References: <1CC045FB9606684FAB2166FCDCB8D65809520FD980@CCRCMS1.corp.rightnow.com> <1CC045FB9606684FAB2166FCDCB8D65809520FDA68@CCRCMS1.corp.rightnow.com> From: "Felipe Armoni, felipe.armoni" To: "Apache AXIS C User List" X-Brightmail-Tracker: AAAAAA== X-Virus-Checked: Checked by ClamAV on apache.org This is a multi-part message in MIME format. ------_=_NextPart_001_01CA0C98.CFD56628 Content-Type: multipart/related; type="multipart/alternative"; boundary="----_=_NextPart_002_01CA0C98.CFD56628" ------_=_NextPart_002_01CA0C98.CFD56628 Content-Type: multipart/alternative; boundary="----_=_NextPart_003_01CA0C98.CFD56628" ------_=_NextPart_003_01CA0C98.CFD56628 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Ryan, =20 Thank you for the reply... I discovered that the IPV6 parameter was = being defined on the build.common.properties file as the property = transport.HTTP.ipv6. I setted it to false and this problem was soved. =20 However I am still getting that other link error that I mentioned on my = last e-mail. Do you have any ideas as how can I solve this one? =20 Thanks again for your help, Felipe ________________________________ De: McCullough, Ryan [mailto:rmccullough@rightnow.com]=20 Enviada em: sexta-feira, 24 de julho de 2009 15:33 Para: Apache AXIS C User List Assunto: RE: Problems building Axis C++ with ant The reason this is important is because it looks like the offending code = is in a "#ifdef IPV6" block. =20 Are you familiar with what a #ifdef does? If not, I would recommend = doing a little research. =20 Essentially it is saying that if IPV6 is defined, compile the code in = this block (until you reach a #else or #endif). If it is not defined, it = is not compiled in. =20 Since you are getting those link errors complaining about freeaddrinfo & = getaddrinfo, and the only place those are used is inside the #ifdef = IPV6, this means you probly have IPV6 defined in the ant build script. =20 Since you do not need it, I would recommend not defining it. This may = fix your link error. =20 -Ryan =20 From: Felipe Armoni, felipe.armoni [mailto:farmoni@itautec.com]=20 Sent: Friday, July 24, 2009 10:27 AM To: Apache AXIS C User List Subject: RES: Problems building Axis C++ with ant =20 Well, I am not sure what you mean by your reply. =20 Technically I don't need IPV6 because the Web Service Server that I need = to access possesses an IPV4 IP, however I don't understand what do the = getaddrinfo and freeaddrinfo have to do with the problem. =20 Please note that I haven't been able to execute my test program, so far = I am just trying to build the Axis binaries. =20 The reason why I am doing this is because after I had downloaded the = axis binaries from its website (http://www.apache.org/dist/ws/axis-c/ = ) and I tried to = execute my program, I got a strange exception: "Unhandled exception at = 0x7c812a6b in BioAPI Test.exe: Microsoft C++ exception: = axiscpp::AxisEngineException at memory location 0x0012e4b0". =20 Then looking through the internet I found an e-mail saying the a person = who got a similar error should download the latest axis source from its = svn site (according to him the binaries on the site were outdated), = build it, and everything would work fine. =20 The code that I used to test Axis is attached to this message. =20 I think that the most strangest thing is that the AxisEngineException is = not caught as an AxisException when it is thrown. =20 Thanks, Felipe =20 ________________________________ De: McCullough, Ryan [mailto:rmccullough@rightnow.com]=20 Enviada em: sexta-feira, 24 de julho de 2009 13:01 Para: Apache AXIS C User List Assunto: RE: Problems building Axis C++ with ant Is it possible for you to try building it with VS6? =20 Do you have IPV6 defined? Do you need it? It looks like both of the link = errors you are receiving are from a chunk of code in a #ifdef IPV6. =20 http://svn.apache.org/repos/asf/webservices/axis/trunk/c/src/transport/ax= is3/HTTPChannel/HTTPChannel.cpp =20 Search for getaddrinfo & freeaddrinfo and you will see what I mean. =20 -Ryan =20 From: Felipe Armoni, felipe.armoni [mailto:farmoni@itautec.com]=20 Sent: Friday, July 24, 2009 8:55 AM To: axis-c-user@ws.apache.org Subject: ENC: Problems building Axis C++ with ant =20 Hi, =20 I have downloaded the latest axis C++ source from Apache's SVN = repository (http://svn.apache.org/repos/asf/webservices/axis/trunk/c/) = and I am trying to build it using ant and Visual Studio 2008 (my OS is = Windows XP Professional). =20 Also please note that I am only interested on the client side part of = the API, so I've set the properties server.apache13 and server.apache20 = to false and didn't set the environment variables APACHE_HOME and = APACHE2_HOME. =20 The output from my ant build is attached to this message. =20 How can I solve this problem? What am I doing wrong? =20 Thanks, =20 Felipe Armoni Analista de Sistemas. | Sw Seguran=E7a ( (55 11) 3543-2306| * farmoni@itautec.com=20 =20 ------_=_NextPart_003_01CA0C98.CFD56628 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Ryan,
 
Thank you for the reply... I discovered that the IPV6 parameter = was being=20 defined on the build.common.properties file as the property = transport.HTTP.ipv6.=20 I setted it to false and this problem was soved.
 
However I am still getting that other link error that I = mentioned on my=20 last e-mail. Do you have any ideas as how can I solve this=20 one?
 
Thanks again for your help,
Felipe


De: McCullough, Ryan=20 [mailto:rmccullough@rightnow.com]
Enviada em: sexta-feira, 24 = de=20 julho de 2009 15:33
Para: Apache AXIS C User = List
Assunto:=20 RE: Problems building Axis C++ with ant

The=20 reason this is important is because it looks like the offending code is = in a=20 =93#ifdef IPV6=94 block.

 

Are=20 you familiar with what a #ifdef does? If not, I would recommend doing a = little=20 research.

 

Essentially=20 it is saying that if IPV6 is defined, compile the code in this block = (until you=20 reach a #else or #endif). If it is not defined, it is not compiled=20 in.

 

Since=20 you are getting those link errors complaining about freeaddrinfo &=20 getaddrinfo, and the only place those are used is inside the #ifdef = IPV6, this=20 means you probly have IPV6 defined in the ant build=20 script.

 

Since=20 you do not need it, I would recommend not defining it. This may fix your = link=20 error.

 

-Ryan

 

From: Felipe = Armoni,=20 felipe.armoni [mailto:farmoni@itautec.com]
Sent: Friday, July = 24,=20 2009 10:27 AM
To: Apache AXIS C User List
Subject: = RES:=20 Problems building Axis C++ with ant

 

Well, I am = not sure=20 what you mean by your reply.

 

Technically = I don't=20 need IPV6 because the Web Service Server that I need to access possesses = an IPV4=20 IP, however I don't understand what do the getaddrinfo and freeaddrinfo = have to=20 do with the problem.

 

Please note = that I=20 haven't been able to execute my test program, so far I am just trying to = build=20 the Axis binaries.

 

The reason = why I am=20 doing this is because after I had downloaded the axis binaries from = its=20 website (http://www.apache.org/dist/ws/axis-c/) and I = tried to execute my program, I got a strange exception: "Unhandled=20 exception at 0x7c812a6b in BioAPI Test.exe: Microsoft C++ exception:=20 axiscpp::AxisEngineException at memory location=20 0x0012e4b0".

 

Then = looking through=20 the internet I found an e-mail saying the a person who got a similar = error=20 should download the latest axis source from its svn site (according to = him the=20 binaries on the site were outdated), build it, and everything would work = fine.

 

The code = that I used=20 to test Axis is attached to this message.

 

I think = that the most=20 strangest thing is that the AxisEngineException is not caught as an=20 AxisException when it is thrown.

 

Thanks,

Felipe

 


De:=20 McCullough, Ryan [mailto:rmccullough@rightnow.com]
Enviada = em:=20 sexta-feira, 24 de julho de 2009 13:01
Para: Apache AXIS C = User=20 List
Assunto: RE: Problems building Axis C++ with = ant

Is=20 it possible for you to try building it with VS6?

 

Do you have IPV6 defined? Do you need it? It looks =
like both of the link errors you are receiving are from a chunk of code =
in a #ifdef IPV6.

 

http://svn.apache.org/repos/asf/= webservices/axis/trunk/c/src/transport/axis3/HTTPChannel/HTTPChannel.cpp<= /A>

 

Search=20 for getaddrinfo & freeaddrinfo and you will see what I=20 mean.

 

-Ryan

 

From: Felipe = Armoni,=20 felipe.armoni [mailto:farmoni@itautec.com]
Sent: Friday, July = 24,=20 2009 8:55 AM
To: axis-c-user@ws.apache.org
Subject: = ENC:=20 Problems building Axis C++ with ant

 

Hi,

 

I have = downloaded the=20 latest axis C++ source from Apache's SVN repository (http:/= /svn.apache.org/repos/asf/webservices/axis/trunk/c/)=20 and I am trying to build it using ant and Visual Studio 2008 (my OS=20 is Windows XP Professional).

 

Also please = note that=20 I am only interested on the client side part of the API, so I've set the = properties server.apache13 and server.apache20 to false and didn't set = the=20 environment variables APACHE_HOME and = APACHE2_HOME.

 

The output = from my=20 ant build is attached to this=20 message.

 

How can I = solve this=20 problem? What am I doing wrong?

 

Thanks,

 

Felipe=20 Armoni

Analista=20 de Sistemas.

 | Sw=20 Seguran=E7a

( (55=20 11) 3543-2306| * =20 farmoni@itautec.com

 

------_=_NextPart_003_01CA0C98.CFD56628-- ------_=_NextPart_002_01CA0C98.CFD56628 Content-Type: image/png; name="image001.png" Content-Transfer-Encoding: base64 Content-ID: <549464919@24072009-199C> Content-Description: image001.png Content-Location: image001.png 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 AABJRU5ErkJggg== ------_=_NextPart_002_01CA0C98.CFD56628-- ------_=_NextPart_001_01CA0C98.CFD56628 Content-Type: text/plain; name="error.txt" Content-Transfer-Encoding: base64 Content-Description: error.txt Content-Disposition: attachment; filename="error.txt" ICAgICAgIFtjY10gU29hcEtleXdvcmRNYXBwaW5nLmNwcA0KICAgICAgIFtjY10gR2VuZXJhdGlu ZyBDb2RlLi4uDQogICAgICAgW2NjXSBDb21waWxpbmcuLi4NCiAgICAgICBbY2NdIElELmNwcA0K ICAgICAgIFtjY10gQXBwU2NvcGVIYW5kbGVyUG9vbC5jcHANCiAgICAgICBbY2NdIEdlbmVyYXRp bmcgQ29kZS4uLg0KICAgICAgIFtjY10gU3RhcnRpbmcgbGluaw0KICAgICAgIFtjY10gICAgQ3Jl YXRpbmcgbGlicmFyeSBheGlzX3NlcnZlci5saWIgYW5kIG9iamVjdCBheGlzX3NlcnZlci5leHAN CiAgICAgICBbY2NdIElBbnlTaW1wbGVUeXBlLm9iaiA6IGVycm9yIExOSzIwMTk6IHVucmVzb2x2 ZWQgZXh0ZXJuYWwgc3ltYm9sICJwdWJsaWM6IHN0YXRpYyBjaGFyICogX19jZGVjbCBheGlzY3Bw OjpQbGF0Zm9ybUxhbmd1YWdlOjp0b0NoYXIod2NoYXJfdCBjb25zdCAqLGludCkiICg/dG9DaGFy QFBsYXRmb3JtTGFuZ3VhZ2VAYXhpc2NwcEBAU0FQQURQQl9XSEBaKSByZWZlcmVuY2VkIGluIGZ1 bmN0aW9uICJwdWJsaWM6IHN0YXRpYyB2b2lkIF9fY2RlY2wgYXhpc2NwcDo6SUFueVNpbXBsZVR5 cGU6OnJlcGxhY2VSZXNlcnZlZENoYXJhY3RlcnMoY2xhc3Mgc3RkOjpiYXNpY19zdHJpbmc8Y2hh cixzdHJ1Y3Qgc3RkOjpjaGFyX3RyYWl0czxjaGFyPixjbGFzcyBzdGQ6OmFsbG9jYXRvcjxjaGFy PiA+ICYsY2xhc3Mgc3RkOjpiYXNpY19zdHJpbmc8Y2hhcixzdHJ1Y3Qgc3RkOjpjaGFyX3RyYWl0 czxjaGFyPixjbGFzcyBzdGQ6OmFsbG9jYXRvcjxjaGFyPiA+ICYpIiAoP3JlcGxhY2VSZXNlcnZl ZENoYXJhY3RlcnNASUFueVNpbXBsZVR5cGVAYXhpc2NwcEBAU0FYQUFWPyRiYXNpY19zdHJpbmdA RFU/JGNoYXJfdHJhaXRzQERAc3RkQEBWPyRhbGxvY2F0b3JAREAyQEBzdGRAQDBAWikNCiAgICAg ICBbY2NdIElBbnlTaW1wbGVUeXBlLm9iaiA6IGVycm9yIExOSzIwMTk6IHVucmVzb2x2ZWQgZXh0 ZXJuYWwgc3ltYm9sICJwdWJsaWM6IHN0YXRpYyB3Y2hhcl90ICogX19jZGVjbCBheGlzY3BwOjpQ bGF0Zm9ybUxhbmd1YWdlOjp0b1djaGFyKGNoYXIgY29uc3QgKixpbnQpIiAoP3RvV2NoYXJAUGxh dGZvcm1MYW5ndWFnZUBheGlzY3BwQEBTQVBBX1dQQkRIQFopIHJlZmVyZW5jZWQgaW4gZnVuY3Rp b24gInB1YmxpYzogc3RhdGljIHZvaWQgX19jZGVjbCBheGlzY3BwOjpJQW55U2ltcGxlVHlwZTo6 cmVwbGFjZVJlc2VydmVkQ2hhcmFjdGVycyhjbGFzcyBzdGQ6OmJhc2ljX3N0cmluZzxjaGFyLHN0 cnVjdCBzdGQ6OmNoYXJfdHJhaXRzPGNoYXI+LGNsYXNzIHN0ZDo6YWxsb2NhdG9yPGNoYXI+ID4g JixjbGFzcyBzdGQ6OmJhc2ljX3N0cmluZzxjaGFyLHN0cnVjdCBzdGQ6OmNoYXJfdHJhaXRzPGNo YXI+LGNsYXNzIHN0ZDo6YWxsb2NhdG9yPGNoYXI+ID4gJikiICg/cmVwbGFjZVJlc2VydmVkQ2hh cmFjdGVyc0BJQW55U2ltcGxlVHlwZUBheGlzY3BwQEBTQVhBQVY/JGJhc2ljX3N0cmluZ0BEVT8k Y2hhcl90cmFpdHNAREBzdGRAQFY/JGFsbG9jYXRvckBEQDJAQHN0ZEBAMEBaKQ0KICAgICAgIFtj Y10gYXhpc19zZXJ2ZXIuZGxsIDogZmF0YWwgZXJyb3IgTE5LMTEyMDogMiB1bnJlc29sdmVkIGV4 dGVybmFscw0KDQpCVUlMRCBGQUlMRUQNCkM6XFByb2dyYW1hc1xBUElzIFV0ZWlzXEF4aXMgQnVp bGRcd3MtYXhpc1xjXGJ1aWxkLnhtbDoyNDU6IFRoZSBmb2xsb3dpbmcgZXJyb3Igb2NjdXJyZWQg d2hpbGUgZXhlY3V0aW5nIHRoaXMgbGluZToNCkM6XFByb2dyYW1hc1xBUElzIFV0ZWlzXEF4aXMg QnVpbGRcd3MtYXhpc1xjXGJ1aWxkLnhtbDoyMzY6IFRoZSBmb2xsb3dpbmcgZXJyb3Igb2NjdXJy ZWQgd2hpbGUgZXhlY3V0aW5nIHRoaXMgbGluZToNCkM6XFByb2dyYW1hc1xBUElzIFV0ZWlzXEF4 aXMgQnVpbGRcd3MtYXhpc1xjXGJ1aWxkLnhtbDoxMTQ6IFRoZSBmb2xsb3dpbmcgZXJyb3Igb2Nj dXJyZWQgd2hpbGUgZXhlY3V0aW5nIHRoaXMgbGluZToNCkM6XFByb2dyYW1hc1xBUElzIFV0ZWlz XEF4aXMgQnVpbGRcd3MtYXhpc1xjXGJ1aWxkXGJ1aWxkU2VydmVyRW5naW5lLnhtbDoxODogbGlu ayBmYWlsZWQgd2l0aCByZXR1cm4gY29kZSAxMTIw ------_=_NextPart_001_01CA0C98.CFD56628--