WOCheckBoxList is not working in WO-5.4

2009-07-08 Thread Kalpana Vaka
Hi, We are trying to migrate our application deployment environment from WebObjects 5.2 to WebObjects 5.4. In some of the WOComponents, we are making use of WOCheckBoxList and WOCheckboxMatrix elements. In WO5.2, WOCheckBoxList is working fine and we are able to view the check boxes. But

Re: Difficulties running WebObjects on CentOS linux remote host (my website)

2009-11-12 Thread kalpana . vaka
Hi Reyn, It seems like PATH environment variable is not set to java bin directory. Please append /usr/local/java/bin to PATH environment variable before launching the application. You can use the following commands. PATH=$PATH:/usr/local/java/bin export PATH It will fix your problem. Regards,

Document/literal Style WebServices

2010-02-15 Thread Kalpana Vaka
Hi Group, We are using WO-5.4.3 for our application. Our application has WebServices support with RPC style. The code that we are using to install web services is *WOWSDDRegistrar*.* registerWebService(myServiceName,myClass,true).*With RPC style, we are able to define many operations (methods)

WSDL is not complaint to WS-I

2010-02-18 Thread Kalpana Vaka
Hi Group, Does WebObjects support document/literal or wrapped style webservices? With RPC style, the WSDL generated by WebObjects is not WS-I complaint because of soapenc:ArrayType. Is there a way to make the WSDL complaint to WS-I? Any help? Thanks Regards, Kalpana.

Javascript is not called by AjaxSubmitButton

2010-04-22 Thread Kalpana Vaka
Hi All, I have javascript file validation.js with all the client side validations for text, numbers, dates etc.,. When I use WOJavascript with normal submit button, the validations are being raised. But, when I use AjaxSubmitButton instead of normal submit button, the validations from the js

Re: Javascript is not called by AjaxSubmitButton

2010-04-22 Thread Kalpana Vaka
be understood properly. http://webobjects.insigno.net/wonder/api/er/ajax/AjaxSubmitButton.html Farrukh On 2010-04-22, at 8:39 PM, Kalpana Vaka wrote: Hi All, I have javascript file validation.js with all the client side validations for text, numbers, dates etc.,. When I use

Re: JavaScript Problems with AjaxSubmitButton

2010-05-31 Thread Kalpana Vaka
: wo:AjaxSubmitButton value=Save class=ok onClickBefore= ajaxCheckValidations(this) action=$ajaxButtonAction evalScripts= $true/ Farrukh On 2010-05-29, at 8:20 PM, Kalpana Vaka wrote: Hi All, Please find the enclosed compressed file with the sample application that depicts the Java script problems

Problem with Apache- SSL Configuration

2010-06-03 Thread Kalpana Vaka
Hi All, We are trying to deploy our application with SSL configuration (Apache). We have included the following line in httpd.conf to consider SSL configuration. Include conf/extra/httpd-ssl.conf And we have configured the VirtualHost on port 7070 in httpd-ssl.conf. And updated

Complete Form URL Issue with WebObjects - HTTPS

2010-06-03 Thread Kalpana Vaka
Hi All, We are trying to deploy our application (WO-5.4.3) with SSL configuration (Apache 2.2). We have included the following line in httpd.conf to consider SSL configuration. Include conf/extra/httpd-ssl.conf And we have configured the VirtualHost on port 7070 in

Problem with EC

2011-01-21 Thread Kalpana Vaka
Hi All, I am using latest wonder frameworks for my application. I have observed problem with latest ERXEC class while generating the PDF using Jasper reports. When I use old version of wonder framework, the PDF is generating fine without any issues. With latest wonder frameworks, application is

Re: Deployment question: WO puts IP address in URL when using HTTPS

2011-02-14 Thread Kalpana Vaka
Hi Christoph, We did face the same problem some time ago. Relative URLs are not getting generated with wonder. The full URLs are getting generated with the server name given in apache config. Please check the apache config. -- Kalpana. On Mon, Feb 14, 2011 at 9:15 PM, Christoph Wick

REST API with WebObjects

2012-05-21 Thread Kalpana Vaka
Hi All, We need to support REST APIs (HTTP GET method) in WO application. The question is how we can implement these in our WO application. We need to develop these APIs independent of Entities. Can someone give an example with ERRest framework? Thanks Regards, Kalpana.