Re: MIDP and Soap

2001-07-12 Thread William Brogden
fanyun wrote: > > Hi Al: > > I wonder is there any open source project working on build java soap client on >MIDP(palm...). > > Regards > > fanyun I ran across this the other day. http://ksoap.org/ - opensource SOAP for the KVM! enhydra proj -- WBB - [EMAIL PROTECTED] Java Cert mock ex

Re: Interop newbie

2001-07-12 Thread Brajendra . Singh
are u using soap2.1 or higher. bcos it does not works with soap2.0. Brajendra Singh

Re: Interop newbie

2001-07-12 Thread Brajendra . Singh
I have also checked nasdaq sample - it works very fine. try and give wsdl file location with full path. then it may work. Brajendra Singh

Re: Session interoperability between MS Toolkit and Soap Apache

2001-07-12 Thread Brajendra . Singh
To do so - I think you need to deploy web-service with session scope. Brajendra Singh

RE: UDDI implement choice

2001-07-12 Thread Frank Feldmann
I believe only the server part from UDDI4J is locked to DB2. I have used the UDDI4J client on various servers without a problem. Frank Feldmann -Original Message- From: Vivek Chopra [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 8:15 PM To: [EMAIL PROTECTED] Subject: Re: UDDI

wsdk2.3 & embedded websphere

2001-07-12 Thread SBC
Hi, I am having problems running the demos. When I run the demo examples, it tries to start embedded websphere in new window. In the new window, I am getting "Input line too long. the syntax of the command is incorrect" Any clue what may be wrong?? Thanks in advance for help. SBC ___

Re: XMLParserLiaison Problem

2001-07-12 Thread Doug Davis
Make sure you don't have an old soap.jar or *anything* built with the old soap,jar file in your classpath. I had the same problem when some old samples were in my classpath - once I recompiled them with the new soap.jar file it worked. -Dug "Ding, Chengmin" <[EMAIL PROTECTED]> on 07/12/2001 01:2

Re: UDDI implement choice

2001-07-12 Thread Dmitri Colebatch
Have a look at jUUDI (on sourceforge). Its relatively young, but the guy running it is very helpful, and it runs off whichever db you want. cheers dim On Fri, 13 Jul 2001 02:29, fanyun wrote: > Hi: > > Any one know is there any open source UDDI server implementation?(The > UDDI4J is locke

Re: msg=Exception from service object: [Ljava.lang.Object;]

2001-07-12 Thread Kar YEOW
Try return (AccountInfo[])c.toArray(new AccountInfo[0]); Kar - Original Message - From: "Ragu Sivaraman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 7:16 AM Subject: msg=Exception from service object: [Ljava.lang.Object;] Folks: I have this problem when i

Begging for Hash

2001-07-12 Thread greyson . smith
Does anyone have an example of returning a Hashtable with soap that they would be willing to direct me to, or perhaps send? I would be most grateful. -- NOTICE: The information contained in this electronic mail transmission is intended by Convergys Corporation for the use of the named individu

Interop newbie

2001-07-12 Thread Craig Green
Hi, Has anyone here had a look (and tried) the example from Ibm's "Apache and Microsoft -- playing nice together" document (http://www-106.ibm.com/developerworks/webservices/library/ws-ref3/?dwzone=w ebservices#Listing2) ? I've created my WSDL file... but MSSOAP does not seem to like it. I get a

Re: Mime samples problem, please Help!

2001-07-12 Thread William A. Nagy
>Hi! >Do any of you have had problems with the samples at soap-2_2/samples/mime? >I have had problems with the: >java samples.mime.MimeTestClient %URL% loopFile fields.gif >This command line is in the >testit.cmd< file. >Could any of you test this sample (plase). > >Regards, >E.Y. Both t

Re: UDDI implement choice

2001-07-12 Thread Vivek Chopra
jUDDI, pronounced "judy". see juudi.org. - Vivek --- fanyun <[EMAIL PROTECTED]> wrote: > Hi: > > Any one know is there any open source UDDI server > implementation?(The UDDI4J is locked on DB2) > > > Regards > > fanyun > = email: [EMAIL PROTECTED] web : http://www.soaprpc.com

Re: UDDI implement choice

2001-07-12 Thread Tarun Garg
jUDDI is one option. www.juddi.org They're still in their alpha ( rather pre alpha) stage. Make sure you take the code from the CVS rather than their release. - Original Message - From: "fanyun" <[EMAIL PROTECTED]> To: "Soap-User" <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 9

XMLParserLiaison Problem

2001-07-12 Thread Ding, Chengmin
Hi,All, I recently migrated from Soap2.1 to Soap2.2. When I tried to run the sample addressbook (the soap2.2 version, XMLParserLiaison has been replaced by XMLParserUtils), I always got "...XMLParserLiaison not found". I checked the archive/FAQ but haven't found any tips for this problem. Can anyo

Session interoperability between MS Toolkit and Soap Apache

2001-07-12 Thread Dario Iorfida
Hi all, I need to maintain session beetwen a java Client using Apache Soap 2.2 and a VB Server using MS Toolkit 2.0. I looked at both Apache and Microsoft documentation; I found Apache uses Cookies to maintain session, MS uses header information. Which tasks are mandatory to mantain session?

Specifying config information in resources rather than files

2001-07-12 Thread Brian Levine
Title: Specifying config information in resources rather than files Hi, I suppose this falls into the enhancement request category.  Right now, the config manager class can be specified in a configuration file (default = soap.xml).  In my case, I'm using soap.xml so that I can use the XMLCon

UDDI implement choice

2001-07-12 Thread fanyun
Hi: Any one know is there any open source UDDI server implementation?(The UDDI4J is locked on DB2) Regards fanyun

RE: Basic authentication on rpcrouter

2001-07-12 Thread Milburn, Christopher FIL
This has suddenly started working, with no changes, I just went into security configuration in the WAS administration tool and had a look around (I swear I didnt change anything !) and bong next time I ran the soap test it worked like a dream. Seems like Was admin console is a bit tempremental

Re: Serializer help

2001-07-12 Thread sramasu
You have to use this EncodingStyle "Constants.NS_URI_LITERAL_XML". No need to specify any serializer in the deployment descriptor. SOAP server automatically does it for you. "Tolsc

Re: Generic Compound Type?

2001-07-12 Thread sramasu
You may group all your parameters into a JavaBean . Apache supports BeanSerialization/DeSerialization. You have to specify the XML/Java mappings in the deployment descriptor file.

Serializer help

2001-07-12 Thread Tolsch, Ed
HI, I'm trying to serialize an org.w3c.dom.Element as the return type of my soap service. I assumed I needed to modify my deploymentdescriptor file to tell it how to serialize my object. My Deployment descriptor mapping looks like the following: http://xml.apache.org/xml-soap/deploy

Generic Compound Type?

2001-07-12 Thread Michael Svoboda
I'd like to use a generic compound type, as it is described in the Soap-Spec in chapter 5.4.3. But I have no idea what has to be done, to use it. I even don't know if Apache supports it. Does anyone tried it out and has a code snipplet from a client and the web-service method? How do I deploy it?

RE: repost: Re-entrancy problems using java server and vb client

2001-07-12 Thread greyson . smith
Thanks for the suggestion, but they are normal command buttons. And it looks like everything is normal, I have an hourglass, etc. but it's not. I can click option buttons or delete values from text boxes while the server is being called. I appreciate knowking that it works for you, however, I

Mime samples problem, please Help!

2001-07-12 Thread Eduardo Yánez
Hi! Do any of you have had problems with the samples at soap-2_2/samples/mime? I have had problems with the: java samples.mime.MimeTestClient %URL% loopFile fields.gif This command line is in the >testit.cmd< file. Could any of you test this sample (plase). Regards, E.Y.

XML Schema

2001-07-12 Thread sramasu
Does Apache SOAP v 2.2 support XML schema? If so how do we specify the XML dchema to the parser. Thanks, Sekar.

Basic authentication on rpcrouter

2001-07-12 Thread Milburn, Christopher FIL
I have a problem trying to invoke basic authentication for the rpcrouter, I set up the SoapHttpConnection and set the username/password but they seem to be ignored by the server ? This user/password works fine through a browser. // Build the call. Call call = new Call();

RE: Carriage Return/Line feed problem??

2001-07-12 Thread Wilkins, Craig
I just ran into the same issue. Does anyone have any ideas to address this? Thanks, Craig -Original Message- From: Colin Saxton [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 10:12 AM To: '[EMAIL PROTECTED]' Subject: Carriage Return/Line feed problem?? I have the following p

RE: Segmentation fault every time I run the client-side test

2001-07-12 Thread Gordon Syme
Hi Jonathan That was exactly what was wrong. Thank you very much indeed :) -Gordon -Original Message- From: Jonathan Chawke [mailto:[EMAIL PROTECTED]] Sent: 11 July 2001 10:19 To: [EMAIL PROTECTED] Subject: Re: Segmentation fault every time I run the client-side test Hi Gordon, The

RE: WSDL generators

2001-07-12 Thread graham glass
GLUE beta 3.1, due out at the end of this week, will include new, improved versions of java2wsdl and wsdl2java. the new versions automatically create java interfaces to web services as well as data structure mappings. GLUE 3.1 performs dynamic runtime mapping between java structures and XML sche

AW: WSDL generators

2001-07-12 Thread Florian Lackerbauer
Hi all, I´ve the same question like Brett: Are there any tools available to design WSDL files, or generating WSDL files from Java classes ? regards, florian. -Ursprüngliche Nachricht- Von: Brett McLaughlin [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 11. Juli 2001 21:10 An: [E

RE: Anyone implemented vb client with java server

2001-07-12 Thread Abbott, James STASCO-OTO/72
>From the SOAP envelopes below it seems that you are calling two different methods on the same service. To get the concat service running properly you will need a different deployment description on the server that will map all types that VB supplies to strings. This is done with the section of t