Return-Path: Delivered-To: apmail-uima-user-archive@www.apache.org Received: (qmail 21895 invoked from network); 11 May 2010 13:42:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 May 2010 13:42:40 -0000 Received: (qmail 87989 invoked by uid 500); 11 May 2010 13:42:39 -0000 Delivered-To: apmail-uima-user-archive@uima.apache.org Received: (qmail 87955 invoked by uid 500); 11 May 2010 13:42:38 -0000 Mailing-List: contact user-help@uima.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@uima.apache.org Delivered-To: mailing list user@uima.apache.org Received: (qmail 87947 invoked by uid 99); 11 May 2010 13:42:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 May 2010 13:42:38 +0000 X-ASF-Spam-Status: No, hits=-0.2 required=10.0 tests=AWL,FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of eaepstein@gmail.com designates 74.125.82.175 as permitted sender) Received: from [74.125.82.175] (HELO mail-wy0-f175.google.com) (74.125.82.175) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 May 2010 13:42:31 +0000 Received: by wyb34 with SMTP id 34so442946wyb.6 for ; Tue, 11 May 2010 06:42:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=cQtZtwsCfU+WNQWQuzpi8LmSfjhlXONu9XiuJ7eANIo=; b=NZe58EdjfUP3+789IlQ8OghSqPXyhEYMmIkz8o6pfAtPKbdIZZ2z3mg7P0+ypFhdG9 FcAXTEpSE0v1uNV7sRSOoV/ePFoAYhz8wOBZFnZmXHv7vARtfUyo+u46GKYmFsjaMQGv a90vB0WneP/Qdus1Ms6GrXW1qPvkgnU+vIJws= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=voY4uGfSr0hP84G2AidUNMlqZDGui2EMvcM/wJS7p1bLLT6QTKNuIB31nxnsx53H1n k9q3iPXpQQCWTy6D7o/xhyVinSueffZdvIBB0bQ54KUIFf+A2d0hmcYvZW7nNMjkhuty D7AfkALl6x86FmgVRCZMGtSqYlvvGy1m4tOto= MIME-Version: 1.0 Received: by 10.216.168.7 with SMTP id j7mr3443125wel.214.1273585329564; Tue, 11 May 2010 06:42:09 -0700 (PDT) Received: by 10.216.154.82 with HTTP; Tue, 11 May 2010 06:42:09 -0700 (PDT) In-Reply-To: References: Date: Tue, 11 May 2010 09:42:09 -0400 Message-ID: Subject: Re: How to connect to UIMA SOAP interface using NON-Java Application. From: Eddie Epstein To: user@uima.apache.org Content-Type: text/plain; charset=ISO-8859-1 The SOAP interface to UIMA services is quite complicated and not suited for what you want. The request includes the full CAS definition as well as the CAS request, both using Java-specific binary serialization. The simplest service request format is for a UIMA AS service, which uses JMS and an XMI format. There are C++ APIs to JMS (see the UIMA C++ code for an example) and it is possible to create a non-UIMA client to make valid service requests and parse the responses. There are C++ interfaces to Vinci so it is also possible to create a non-UIMA C++ client to a UIMA Vinci service using the older XCAS format. There is much less expertise around to help with this approach. Eddie On Fri, May 7, 2010 at 7:04 PM, Sanjeev Kumar Rana wrote: > Hi, > I am not sure if this is the right place to ask this question but I am kind of > stuck and so here is my query. I have UIMA-JAVA version running as a stand alone > vinci service. My Client program is a c++ program from which I want to call the > UIMA, But I don't want to use JNI. I read in the documentation that UIMA has a > soap interface but even if I run UIMA with a soap interface, how would I create > the soap request in my client. I could not use UIMA c++ version, as I have to > use sun-studio compiler to which uima c++ version is not ported. According my > understanding, I could connect to UIMA interface and get the request as long as > I am able to create the soap request. > Kindly help or point me in the right direction. > Thanks, > Sanjeev. > > >