Re: BeanSerializer fails on java.sql.Date

2001-10-31 Thread Ong Boon Pang
Hi Bill, Long live Open Source...that is why you can modify this to suit your need. Anyway, SOAP peeps should include all JDBC ResultSet supported type. Like : 1)java.sql.Date 2)java.sql.Time 3)java.sql.Timestamp Could you please publish the source? Cheers, Boon Pang [EMAIL PROTECTED] At 11:01

RE: session maintance

2001-10-31 Thread Ong Boon Pang
n Pang [EMAIL PROTECTED] At 07:41 PM 10/30/2001 -0800, you wrote: >Oh I see, so the session will persists for the same call object. Is there >any way to implement a session for a a client, nomatter if its new or same >call, but not application scope because than if anohter client accesses &g

Re: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Ong Boon Pang
Hi Lakkavaram, I wrote a detail step by step instruction in this mail list. http://marc.theaimsgroup.com/?l=soap-user&m=100199111401559&w=2 This will only work fine if you are using a English/ASCII version of the Windows. Platform I am using: Sun JDK 1.3.1_01 Tomcat 4.0 SOAP2.2 Win2K If it st

Re: SOAP 2.2 and Tomcat 4.0 installation problem

2001-10-23 Thread Ong Boon Pang
Hi Neil, I wrote a detail step by step instruction in this mail list. http://marc.theaimsgroup.com/?l=soap-user&m=100199111401559&w=2 Hope this help. Boon Pang At 11:16 PM 10/23/2001 +0100, you wrote: >Sorry to bother everyone, but I've scoured the web looking for >documentation on setting up t

Re: SOAP and Applets

2001-10-18 Thread Ong Boon Pang
Hi Pae, At least I am refering to Apache/SOAP v2.2 I am not too sure about Phillip. >Apache/SOAP v2.2 is no longer using the xerces Really? How do you come about doing this? I tried to remove xerces but failed. Could you tell me the detail on how to use this? >In v2.2 scenario, the size of

RE: SOAP and Applets

2001-10-18 Thread Ong Boon Pang
Hi Phillip, Can you please pass me a version of 556kb xerces.jar library? The 1/3 sized library will help my deployment via Java WebStart..The user needs only to wait for the first time. The following activation will not require any more download unless there are changes. Boon Pang [EMAIL PRO

RE: Restarting Tomcat

2001-10-16 Thread Ong Boon Pang
Hi fmeredith, My advice... upgrade to Tomcat 4 your SOAP Service Java Class will be auto reloaded, once the class file is updated, with this kind of setting... ... Anyway, from my experience with Tomcat 4.0 is good... All works well compare to Tomcat 3.2 even with the SSL enable easily...Can

How to hook soap to a JMS server?

2001-10-03 Thread Ong Boon Pang
Hi, This is the idea I have... A soap client sends a soap message requests to a JMS server's inQueue/Topic using standard soap object. On the server end, A soap service listen to the JMS server for a soap message. Process the request, send its reply to JMS server outQueue/Topic. Client picks up t

Re: How To Invoke a Soap Request from a browser?

2001-10-03 Thread Ong Boon Pang
Hi, Tom Myers and Christian BERNARD. Thanks a lot for your reply. I will surely look into both of your suggestion. Cheers, Boon Pang At 07:28 AM 10/3/2001 -0400, you wrote: >At 11:27 AM 10/3/2001 +0800, Ong Boon Pang wrote: > >Hi, > >... > >I have always tried to keep th

Re: Client specific processing

2001-10-02 Thread Ong Boon Pang
Hi, Need to download & refer to J2EE document... import javax.servlet.http.*; HttpServletRequest req= (HttpServletRequest)soapCtx.getProperty(org.apache.soap.Constants.BAG_HTTPSERVLETREQUEST); String remIP=req.getRemoteAddr(); Boon Pang At 10:43 AM 10/2/2001 +0530, you wrote: >Hi > >For

Re: How To Invoke a Soap Request from a browser?

2001-10-02 Thread Ong Boon Pang
Hi, Thks to all that shown how wrong I am. I suppose I myself looking at SOAP from an incorrect angle, or misunderstood what Nagaraja Rao asked. Sorry. I have always tried to keep the browser programming in Javascript/JScript as simple as possible with only FORM POST/GET... Christian BERNARD gr

RE: Accessing SOAP context in catalina

2001-10-02 Thread Ong Boon Pang
Hi, >Perhaps catalina can improve my service performance. Nope,...Can't tell yet...Never tried in production...Tomcat 4.0 is still too new. A few simple rule, that you to need observed for performance: 1)Tomcat alone as compare to hookup with web server like IIS / Apache. 2)Database Connection

Re: How To Invoke a Soap Request from a browser?

2001-10-02 Thread Ong Boon Pang
Hi, I suppose you are looking at SOAP from an incorrect angle, it is not meant for browser-server communication directly. SOAP is not performing like Servlets/JSP, PHP or ASP. It does not work with Web Browser FORM-POST or URL GET only with purely HTML TAG. It require some form of client progr

Re: How to configure rpcrouter ?..

2001-10-02 Thread Ong Boon Pang
Hi, Yeah,...RPCRouter can does these admin function remotely...rather dangerous... >...modify the RPCRouter I agree with you...Since it is open source, I suppose it is feasible...why not? That is the good thing about using open source library...I read the source...not too complicated to change

Re: Getting the Call/RPCMessage object from within the RPC-based SOAP service

2001-10-02 Thread Ong Boon Pang
Hi Victor, I am taking up recommendation to write my own provider to centralize all the ACL code + logging... Thks 1000, Boon Pang At 02:05 PM 10/2/2001 +1000, you wrote: >Where exactly are you trying to get the Call object? Because if you are >trying to get it from your ServiceProvider (implem

Re: Getting the Call/RPCMessage object from within the RPC-based SOAP service

2001-10-02 Thread Ong Boon Pang
ee the javadoc for the various >subclasses: >http://xml.apache.org/soap/docs/apiDocs/org/apache/soap/util/Provider.html > >hth >dim > >On Tue, 2 Oct 2001, Ong Boon Pang wrote: > > > Hi, > > > > I am developing Access Control List for the SOAP services. Basi

Re: How to configure rpcrouter ?..

2001-10-01 Thread Ong Boon Pang
Hi Victor, Thks for replying so promptly >your certificate wouldn't be able to connect to your rpcrouter. Is this what >you're trying to do? Nope. Even with SSL I dun feel safe. A client that is authenticated can still be using a stolen client cert. Hacker can still undeploy/replace the pub

Getting the Call/RPCMessage object from within the RPC-based SOAP service

2001-10-01 Thread Ong Boon Pang
Hi, I am developing Access Control List for the SOAP services. Basically all RPC-based SOAP service. Is there anyway to obtain the Call, org.apache.soap.rpc.RPCMessage object that was sent by the soap client from within the SOAP service on the server side. I can obtain the SOAPContext object

Re: How to configure rpcrouter ?..

2001-10-01 Thread Ong Boon Pang
Hi, Thanks for replying... > Do you mean I have to write my own config manager? I am new to SOAP for about 2 weeks. Is that the only solution? Can any soap engine developer please compile a rpcrouter container that is safe for production? In my novice opinion removing response to deploy,

Re: Accessing SOAP context in catalina

2001-10-01 Thread Ong Boon Pang
Hi, >Tomcat 4.0 (Catalina) I am also using Apache SOAP on Tomcat 4.0. Not much problem with me. A better documented tomcat compare to tomcat 3.x. I am using SOAP 2.2. >SOAPContext as the first argument No problem with me...I can access all the 4 javax.servlet.http.HttpServlet, HttpSession, H

How to configure rpcrouter ?..

2001-09-28 Thread Ong Boon Pang
Hi, Something cross my mind..when I was using this tool: >Usage: java org.apache.soap.server.ServiceManagerClient [-auth username:password] url operation arguments >where >username and password is the HTTP Basic authentication info >url is the Apache SOAP router's URL whose s