Return-Path: Delivered-To: apmail-ws-axis-c-user-archive@www.apache.org Received: (qmail 44479 invoked from network); 19 Jan 2010 03:47:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 19 Jan 2010 03:47:42 -0000 Received: (qmail 51163 invoked by uid 500); 19 Jan 2010 03:47:41 -0000 Delivered-To: apmail-ws-axis-c-user-archive@ws.apache.org Received: (qmail 51058 invoked by uid 500); 19 Jan 2010 03:47:39 -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 51049 invoked by uid 99); 19 Jan 2010 03:47:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jan 2010 03:47:39 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of scarleton@gmail.com designates 209.85.221.190 as permitted sender) Received: from [209.85.221.190] (HELO mail-qy0-f190.google.com) (209.85.221.190) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jan 2010 03:47:30 +0000 Received: by qyk28 with SMTP id 28so2361629qyk.28 for ; Mon, 18 Jan 2010 19:47:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=tfloEWY407bZcdofcfpyf1upzWT0yIlSb9K08oQODsY=; b=hqAOSmDc9BNypUZgGRLOmS07WErtlRPJzQ2lurbChlxKcWwN5RMLV3yarkxev/9Esv Se8Hh5Kt23JYNJQX7NmvTFBMcWJyf3eqsXNG8XfPN/3oMu0XFhAenU9UJLD47C8g5AmZ D6uGfrHqjz7aEpAsQB+VS7Hf5bQ0pN7LGG5B0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=BkKA1cfA1nkEI0PhgUiQuRP3BtJjGwdnws8EH7KhVG8j+dRp/LelmuFE2qa8p5ZPus 4NuclrRYhnhCX2opwCVNCRVtg6NMzM90wt9SXVkD5Awx2WbmXM/tcwxEYK2xNAak2TaW R29GExyeIcaHpxrUKpoUS/+WQNi4kSTz9GDos= MIME-Version: 1.0 Sender: scarleton@gmail.com Received: by 10.224.98.81 with SMTP id p17mr4191349qan.34.1263872829588; Mon, 18 Jan 2010 19:47:09 -0800 (PST) Date: Mon, 18 Jan 2010 22:47:09 -0500 X-Google-Sender-Auth: 361b49c4d7880b61 Message-ID: <8d38ca0a1001181947g5904e72bp9b97c85ed999fa21@mail.gmail.com> Subject: Cannot get Axis2/C Client to run in clean system, take 2 From: Sam Carleton To: Apache AXIS C User List Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org I am currently 100% Windows based. A week or two I posted a Q about being unable to get my Axis2/C client running on a clean machine. I got that working, after making some concessions: Initially I wanted to minimize the dependencies on my client, so I was linking the client with the /MT switch as not to require the Microsoft C++ Runtime. Since the client needs to run on the same machine as the Axis2/C server, and Axis2/C requires its lib directory to be in the system path, the client had to use the DLL switch /MD. One issue I had was that I have to compile Axis2/C myself, when I use the binary distribution, the client doesn't work. The client now does successfully install on a clean machine and runs just fine! Something is missing from the server, though. The server is Axis2/C with a customized mod_axis2, which has been wrapped into another module. The error I am getting is: /axis2/services/Pasadena/CatalogMgr.dll Failed. DLERROR IS DLL Load Error 127: The specified procedure could not be found. My understanding is the path to the axis2 fold is not set correctly. The client does run correctly and the server runs fine on my development machine, so I am a bit mystified at what is missing. In the apache's httpd.conf, I have this: Axis2RepoPath "C:/Program Files/Miltonstreet Software/Photo Parata - Beta/axis2" One thought is that something is missing from the axis2 directory, so here is a list of everything in the axis2 directory and the a list of everything in the apache bin directory: C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\axis2.xml C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axiom.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_engine.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_http_receiver.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_http_sender.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_parser.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_tcp_receiver.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_tcp_sender.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axis2_xpath.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\axutil.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\guththila.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\lib\neethi.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\addressing C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\logging C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\addressing\axis2_mod_addr.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\addressing\module.xml C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\logging\axis2_mod_log.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\modules\logging\module.xml C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services\Pasadena C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services\Pasadena\CartManager.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services\Pasadena\CatalogMgr.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services\Pasadena\ParataMgr.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\axis2\services\Pasadena\services.xml C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\axiom.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\axis2_engine.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\axis2_parser.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\axutil.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\httpd.exe C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\iconv.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libapr-1.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libapreq2.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libapriconv-1.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libaprutil-1.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libhttpd.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\libxml2.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\neethi.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\sqlite3.dll C:\Program Files\Miltonstreet Software\Photo Parata - Beta\httpd\bin\zlib1.dll