handling Complex Data Types

2002-04-19 Thread Tarun Gera
hi All, I have a requirement of handling array of some user defined class objects returned from the server side. As per the archi. Server side is implemented in Java using Apache SOAP api and client side handling is in VC++ using MSSOAP toolkit. After trying various options i am still not

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
Actually the subscriber will give the url of its callback. And the server will store this url for each subscriber. so the erver will lookup for that url when it is publishing. if already the reference of the callback is available then it wont lookup else it will lookup for that service and then pu

Re: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Srikant Ramaswamy
Do subscribers (clients) keep open connections with the server as long as they are alive ? Srikant Jyothi K wrote: > No, we are not using any middlewear but we are using the similar technology > of JMS for pub/sub. > > thanks, > jyothi > > -Original Message- > From: Srikant Ramaswamy [m

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
No, we are not using any middlewear but we are using the similar technology of JMS for pub/sub. thanks, jyothi -Original Message- From: Srikant Ramaswamy [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 11:29 AM To: [EMAIL PROTECTED] Subject: Re: Is there any tools for NMS(Network

Re: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Srikant Ramaswamy
Jyothi Do you use any middlewar that supports pub/sub ? Srikant Yong Chen wrote: > That's great. Good design/implementation. Seems you have a good product. > > thanks > Yong Chen > > -Original Message- > From: Jyothi K [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 19, 2002 1:27 PM >

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Yong Chen
That's great. Good design/implementation. Seems you have a good product. thanks Yong Chen -Original Message- From: Jyothi K [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 1:27 PM To: [EMAIL PROTECTED] Subject: RE: Is there any tools for NMS(Network Management Systems) that uses

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
we implemented our own notification server. it has two services basically publish and subscribe. the NMS client should implement our listerner interface. So when the nms subscribes then it even gives its callback details to which the publisher publishes the messages. even our notification server i

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Yong Chen
I see. Then how do you do events (notification) using SOAP? I assume you have SOAP server running on EMS, so NMS sends requests to EMS and receives responses from EMS via SOAP protocol for configuration, etc. Then how does EMS send events (such as critical alarms) to NMS in real-time? (corba has

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
yes i am referring to TMF 513 version 2.0 which deals with the NML-EML interfaces. We didnt implement the whole of it. Thanks, Jyothi -Original Message- From: Yong Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 9:43 AM To: '[EMAIL PROTECTED]' Subject: RE: Is there any tools

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Yong Chen
Thanks Jyothi, what do you mean by "TMF corba idls", are you refering to TMF 509? I thought that was mainly for sonet interface. Did you implement the whole or part of these IDLs? thanks Yong Chen -Original Message- From: Jyothi K [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002

RE: Send and Receive DAML embedded in SOAP

2002-04-19 Thread Charlie Abela
Thanks for the tip. I was also setting the encoding wrongly to call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC) instead of call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML) Thanks again. Charlie

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
Hi, At the EMS side the TMF corba idls were translated to java interfaces. The TMF defines the standard interfaces between NML-EML layer for the NMS to talk to EMS in a standard way. Thanks, jyothi -Original Message- From: Yong Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, April

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Yong Chen
Hi Jyothi, Do you have any standards to base on for your SOAP communication between NMS and EMS? In other words, how did you design your SOAP APIs? are they just the translation of your CORBA IDLs? thanks Yong Chen -Original Message- From: Jyothi K [mailto:[EMAIL PROTECTED]] Sent: Frid

Re: Using Apache SOAP v2.2 WITHOUT HTTP

2002-04-19 Thread Darius Cooper
samples.messaging illustrates the use of SMTP, such as it exists in SOAP. But, from the client application's perspective, there is little that needs to be done. f you want to write your own SOAPTransport, then get the source code for: org.apache.soap.transport.http.SOAPHTTPConnection, and org.a

RE: MS Word document using SOAP

2002-04-19 Thread CHAINE, yoann
Title: RE: MS Word document using SOAP You can return your MS Word document as attachement.$ To do that you have just to return a DataHandler. exemple:    public DataHandler get(String NomFichier) throws Exception {       File fichier = new File(RepertoireFichiers + "/" + Nom

RE: Send and Receive DAML embedded in SOAP

2002-04-19 Thread William Brogden
> -Original Message- > From: Charlie Abela [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 19, 2002 3:06 AM > To: [EMAIL PROTECTED] > Subject: Send and Receive DAML embedded in SOAP > > > Hi > > I am using SOAP to pass DAML messages from a client to a > server. I have looked at the a

RE: Using Apache SOAP v2.2 WITHOUT HTTP

2002-04-19 Thread William Brogden
Yeah! My book has examples. See table of contents at: http://www.lanw.com/books/javasoap/ [EMAIL PROTECTED] Author of Soap Programming with Java - Sybex; ISBN: 0782129285 > -Original Message- > From: Mark Hansen [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 19, 2002 10:00 AM > To

Re: MS Word document using SOAP

2002-04-19 Thread David B. Bitton
Sure. All you need to do is base64 encode the Word doc and mark the return datatype as xsl:base64binary. I am doing this in reverse where I create a PDF within Java and return is to a SOAP Toolkit 2.0 client. Use the org.apache.soap.encoding.soapenc.Base64 class for decoding the base64 binary d

Using Apache SOAP v2.2 WITHOUT HTTP

2002-04-19 Thread Mark Hansen
Does anyone know where I can find some example code that illustrates using Apache SOAP with a transport OTHER THAN HTTP? Like a message queuing system? Thanks, Mark __ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.ya

RE: Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Jyothi K
Hi, We have developed our NMS using SOAP as the protocol to communicate with the EMS. SOAP is one of our gateway protocols being used other than EJB, CORBA. Thanks, Jyothi -Original Message- From: Prasad Valmeti [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 1:46 AM To

Newbie question

2002-04-19 Thread Andre Luepke
Hi all, i have just started with soap development and i would like to know how the following things can be done using apache soap. hiere is what i want to do: - a class calls a method on an my soap-proxy-class. - the proxy-class tries to send the soap-request to the web-service - if the web-serv

Newbie questions on examples

2002-04-19 Thread Andrew Sozonnik
Title: Message Hello !   I have SOAP 2.2 on JDK 1.3 and Orion 1.5.2   When I try to use messaging samples and send msg1.xml it reply such things:   Sending some messages...RESPONSE:Error parsing source XML for /servlet/messagerouterHEAD>Fatal error in file:/D:/Plan_monitor/orion

Help in Soap Samples

2002-04-19 Thread Naveen_JaiDayal
Title: Help in Soap Samples Hi all I am new to soap2.2. I have installed the sample Calculator soap service on Apache Tomcat. When running the calculator it shows me a calc window but when i do some operations in that i am getting the follwing error. [SOAPException: faultCode=SOAP-ENV:Clien

Is there any tools for NMS(Network Management Systems) that uses SOAP?

2002-04-19 Thread Prasad Valmeti
Hi, I want to know some information about tools for NMS based on SOAP. I have searched Net for such type of Tools, but i could n't found. Please give me pointers to tools for NMS based on SOAP. Thanks, Prasad.

DeployedServices.xml and Soap.xml

2002-04-19 Thread Steve Axtell
Hello I am interested in finding out more about DeployedServices.xml but am struggling to find any documentation on this file, not least on how to form such a file. If anybody can point me to a link on this file or provide an example of how such a document is formed and how it is used I would be