RE: Information about Axis 1.2 final ?

2005-01-12 Thread Cervi, Anthony \(PCLN-NW\)
, 2005 9:58 AM To: [EMAIL PROTECTED] Subject: Re: Information about Axis 1.2 final ? Anthony, Given current load...you'd have to come up with a patch for AXIS-66 :( -- dims On Wed, 12 Jan 2005 09:52:55 -0500, Cervi, Anthony (PCLN-NW) <[EMAIL PROTECTED]> wrote: > hopefully not until ax

RE: Information about Axis 1.2 final ?

2005-01-12 Thread Cervi, Anthony \(PCLN-NW\)
hopefully not until axis-66 is fixed ;o) -Original Message- From: Olivier Mocquais RD-BIZZ [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 9:51 AM To: [EMAIL PROTECTED] Subject: Information about Axis 1.2 final ? Hi, Do you have any information about the Axis 1.2 final ? Whe

RE: .NET client

2004-12-17 Thread Cervi, Anthony \(PCLN-NW\)
if you have visual studio .net it's very simple.  create a c# project and then add a web service via wsdl definition.  a set of classes will get generated for calling from your client app.  i did this for the mappoint .net web service and had a very simple app in 10 minutes. -Original

axis and list types...

2004-12-06 Thread Cervi, Anthony \(PCLN-NW\)
Title: axis and list types... why do i get FindResultMask and FindResultMaskNull types generated for the type belo?.  also, i believe i should be able to OR these values together.  i went as far as refactor FindResultMask as FindResultMaskNull and i was able to get data back but for only one

working code broken in nightly build of RC2..

2004-12-06 Thread Cervi, Anthony \(PCLN-NW\)
i've just downloaded the nightly build and i get an error with code that worked under a previous build. here's my wsdl: http://staging.mappoint.net/standard-30/MapPoint.wsdl java.io.IOException: Non nillable element 'resultMask' is null. at org.apache.axis.encoding.ser.BeanSerializer

RE: NoClassDefFoundError with axis 1.1 and Jboss 3.2.5

2004-11-23 Thread Cervi, Anthony \(PCLN-NW\)
i have experienced the same problem and have found a solution that seems to work consistently. the axis jars, for whatever reason, need to go in the deploy folder. i banged my head against this until it bled so i graciously offer this to you ;o) we're using the default server so i zipped up

RE: jboss and axis...

2004-11-05 Thread Cervi, Anthony (PCLN-NW)
PM To: [EMAIL PROTECTED] Subject: RE: jboss and axis... Put ALL axis related jars (under $AXISWEBAPP/WEB-INF/lib) in your deployed ear in the WEB-INF/lib directory. Tami -Original Message- From: Cervi, Anthony (PCLN-NW) [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 1:47

jboss and axis...

2004-11-03 Thread Cervi, Anthony (PCLN-NW)
i've developed a web service client using axis 1.2 and got everything to work both standalone and from within a tomcat servlet. i've now tried to deploy my code to jboss 3.2.3 and i get the following exception when calling my client code from within an ejb: java.lang.NoClassDefFoundError: or

RE: Axis 1.2 Final When?

2004-08-06 Thread Cervi, Anthony (PCLN-NW)
yeah, i'd like to know too ;o) -Original Message- From: Yakulis, Ross (Ross) [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 12:09 PM To: [EMAIL PROTECTED] Subject: Axis 1.2 Final When? Any thoughts on when the final 1.2 will be released?

RE: two questions...

2004-08-03 Thread Cervi, Anthony (PCLN-NW)
e location with the overloaded method in the generated ServiceLocator class that takes a string as an argument: blahServiceLocator().getBlahService(String location) i'm not sure about your second question--anyone? -pc -Original Message----- From: Cervi, Anthony (PCL

RE: two questions...

2004-08-03 Thread Cervi, Anthony (PCLN-NW)
ssary on the server side. After you deploy your services on the production server, your clients can get a WSDL, run wsdl2java and generate the stubs themselves. You should not have to hand them the stubs as well. Anand On Tue, 3 Aug 2004, Cervi, Anthony (PCLN-NW) wrote: : : first question might

RE: Writing a C++ Axis Client

2004-08-03 Thread Cervi, Anthony (PCLN-NW)
  The base class for your client should be SoapHttpClientProtocol.  You can set the credentials as such (pseudo-code):   myClient.Credentials = new NetworkCredential(user, pass, domain)   This class will negotiate with many auth schemes including basic authentication.  I've used this in C# w

two questions...

2004-08-03 Thread Cervi, Anthony (PCLN-NW)
first question might sound dumb since i'm not hip to the web service lingo but here it goes anyway. when i generate the client classes from the wsdl, the webservice url (endpoint?) gets hard-coded right into the classes themselves. i need to change that address when i move to the production s

RE: axis and mappoint .net

2004-07-29 Thread Cervi, Anthony (PCLN-NW)
is the answer so obvious that noone cares to provide an answer for me? it would be nice to hear something even if it's just "rtfm". -Original Message----- From: Cervi, Anthony (PCLN-NW) Sent: Wednesday, July 28, 2004 10:56 AM To: [EMAIL PROTECTED] Subject: RE: axis an

RE: axis and mappoint .net

2004-07-28 Thread Cervi, Anthony (PCLN-NW)
ly? thanks. -Original Message----- From: Cervi, Anthony (PCLN-NW) Sent: Tuesday, July 27, 2004 2:55 PM To: [EMAIL PROTECTED] Subject: axis and mappoint .net when i use axis to generate the client code, i'm expecting to get flags for FindResultMask that i can combine (or) and pass i

axis and mappoint .net

2004-07-27 Thread Cervi, Anthony (PCLN-NW)
when i use axis to generate the client code, i'm expecting to get flags for FindResultMask that i can combine (or) and pass into FindOptions. anyone know why i'm not? the entire wsdl can be found at: http://staging.mappoint.net/standard-30/mappoint.wsdl

RE: Visual Studio Axis Client

2004-07-22 Thread Cervi, Anthony (PCLN-NW)
use _bstr_t. sometimes a combination of CComBSTR and _bstr_t will get you where you have to go. i think ATL has a CString class that does some conversion like that too. instead of C++ have you thought about using C# or VB.NET?   _bstr_t bst = "some string";   BSTR bs = bst.copy();   SysFreeSt

RE: Visual Studio Axis Client

2004-07-22 Thread Cervi, Anthony (PCLN-NW)
in order to see the contents of a bstr* you have to dereference the pointer. you can also use _bstr_t to convert to a "regular" string. hope this helps.   void GettaBSTR(BSTR* bstr) {     *bstr = SysAllocString("some string");     printf("this is the string: %S", *bstr); }   BSTR bs; GettaB

RE: Visual Studio Axis Client

2004-07-21 Thread Cervi, Anthony (PCLN-NW)
  BSTR* is a pointer to a BSTR.   void GettaBSTR(BSTR* bstr) {     *bstr = SysAllocString("some string); }   BSTR bs; GettaBSTR(&bs); SysFreeString(bs); -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Wednesday, July 21, 2004 5:36 PMTo: [EMAIL PROTECTE

RE: WSDL to C++ in Visual Studio ??

2004-07-19 Thread Cervi, Anthony (PCLN-NW)
have you tried importing a web refeence into a c++ project using the ide? -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Monday, July 19, 2004 12:40 PM To: [EMAIL PROTECTED] Subject: Re: WSDL to C++ in Visual Studio ?? Sorry - it will create a server in C++ but f

RE: axis and ibm's 1.3.1 jdk...

2004-07-06 Thread Cervi, Anthony (PCLN-NW)
wait a bit at least till a formal beta/release-candidate. -- dims On Tue, 29 Jun 2004 12:27:17 -0400, Cervi, Anthony (PCLN-NW) <[EMAIL PROTECTED]> wrote: > > That worked. Sorry, I'm new to this open source stuff. Along with using > CommonsHTTPSender, it now even works

RE: Please initialize the log4j system properly

2004-07-06 Thread Cervi, Anthony (PCLN-NW)
i have the same problem but i'm ignoring it for the meantime. here's a link to the log4j manual that talks about configuration. hope this helps. http://logging.apache.org/log4j/docs/manual.html -Original Message- From: Baiss Eric Magnusson [mailto:[EMAIL PROTECTED] Sent: Tuesday, Jul

RE: axis and ibm's 1.3.1 jdk...

2004-06-29 Thread Cervi, Anthony (PCLN-NW)
m: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 29, 2004 11:11 AM To: [EMAIL PROTECTED] Subject: Re: axis and ibm's 1.3.1 jdk... Can you please try a nightly? (http://cvs.apache.org/dist/axis/nightly/) -- dims On Tue, 29 Jun 2004 10:59:38 -0400, Cervi, Anthony (PCLN-NW) &l

RE: axis and ibm's 1.3.1 jdk...

2004-06-29 Thread Cervi, Anthony (PCLN-NW)
28 Jun 2004 11:25:13 -0400, Cervi, Anthony (PCLN-NW) <[EMAIL PROTECTED]> wrote: > > > i've successfully used axis to build a client for microsoft's mappoint .net web > service using sun's 1.4.2 jdk. my company has standardized on ibm's 1.31. jdk so i

axis and ibm's 1.3.1 jdk...

2004-06-28 Thread Cervi, Anthony (PCLN-NW)
i've successfully used axis to build a client for microsoft's mappoint .net web service using sun's 1.4.2 jdk. my company has standardized on ibm's 1.31. jdk so i was forced to recompile. now i am getting an error when communicating with the mappoint service. here's the error: ";nested excep