seema pal

Ranch Hand
+ Follow
since Nov 17, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by seema pal

three radio button ----- two of them is options select and one textbox with the third radio button i want that by check the radio button related options select or textbox enable otherwise disable.....
code ---
input type="radio" checked="true" name="actmode" value="setact"
select name="activity" size="1"
input type="radio" name="actmode" value="setlead"
select name="leadername" disabled size="1"
input type="radio" name="actmode" value="setpoll"
input type="text" name="pollno" disabled value=""
three radio button ----- two of them is options select with that and one textbox with the third radio button i want that by check the radio button related options select or textbox enable otherwise disable.....
How to Create UDP SOCKET to transmitt datagram over NAT, PROXY.
Please give example also
Hi;
i am running my application through java webstart but creating a proble i.e its given server could not startad.the reason given embedded services could not be started.
please give some suggestion.
bye
16 years ago
i make a application and want to run through java web start.in my system (server) running fine when clint access my system they may create a problem.
the launching problem is occered and exception given below.
"permission denied of jnlp file".my jnlp file given below.

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="file:/home/guest/tdk-2.3_01Com/webapps/brihaspati2/reload" href="reload.jnlp">
<information>
<title>Brihaspati2 Reload Editor</title>
<vendor>Brihaspti software solutions,Learning Commons</vendor>
<homepage href="http://www.brihaspatisolutions.co.in"/>
<description>Metadata & Content Package Editor</description>
<description kind="tooltip">Metadata & Content Package Editor</description>
<icon href="images/aloha128.gif"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+"/>
<jar href="Packager.jar"/>
<jar href="lib/castor-0.9.5.3-xml.jar"/>
<jar href="lib/reload-dweezil.jar"/>
<jar href="lib/reload-jdom.jar"/>
<jar href="lib/jdom.jar"/>
<jar href="lib/reload-moonunit.jar"/>
<jar href="lib/reload-support.jar"/>
<jar href="lib/xml-apis.jar"/>
<jar href="lib/reload-diva.jar"/>
<jar href="lib/reload-moonunit.jar"/>
<jar href="lib/xercesImpl.jar"/>
</resources>
<application-desc main-class="uk.ac.reload.editor.EditorFrame"/>
</jnlp>

what is the solution.please give responce.
~
~
~
17 years ago
I am using tdk-2.3_01 and running my own application but currently I'm trying to integrate jamwiki-0.6.0 with it.

So what did ..which is as following ...

1. Deployed jamwiki.war file with Tomcat 5.5 , checked it it was working fine.

2.Created jar file for class file and put it in lib directory of tdk-2.3_01.

3.integrated web.xml with tdk-2.3_01 which is as...

<web-app>
-
<servlet>
<servlet-name>brihaspati</servlet-name>
<servlet-class>org.apache.turbine.Turbine</servlet-class>
-
<init-param>
<param-name>applicationRoot</param-name>
<param-value>webContext</param-value>
</init-param>
-
<init-param>
<param-name>properties</param-name>
<param-value>/WEB-INF/conf/TurbineResources.properties</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
-
<security-constraint>
-
<web-resource-collection>
<web-resource-name>templates</web-resource-name>
<url-pattern>/templates/*</url-pattern>
</web-resource-collection>
-
<web-resource-collection>
<web-resource-name>logs</web-resource-name>
<url-pattern>/logs/*</url-pattern>
</web-resource-collection>
-
<web-resource-collection>
<web-resource-name>Courses</web-resource-name>
<url-pattern>/Courses/*</url-pattern>
</web-resource-collection>
-
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
-
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Templates</realm-name>
</login-config>
<!-- set encoding, cache headers, etc. -->
-
<filter>
<filter-name>JAMWikiFilter</filter-name>
<filter-class>org.jamwiki.servlets.JAMWikiFilter</filter-class>
-
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
-
<filter>
<filter-name>Acegi Filter Chain Proxy</filter-name>
<filter-class>org.acegisecurity.util.FilterToBeanProxy</filter-class>
-
<init-param>
<param-name>targetClass</param-name>
<param-value>org.acegisecurity.util.FilterChainProxy</param-value>
</init-param>
</filter>
-
<filter-mapping>
<filter-name>JAMWikiFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
-
<filter-mapping>
<filter-name>Acegi Filter Chain Proxy</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
-
<listener>
-
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
-
<servlet>
<servlet-name>jamwiki</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
-
<servlet-mapping>
<servlet-name>jamwiki</servlet-name>
<url-pattern>/en/*</url-pattern>
</servlet-mapping>
<!-- virtual wiki mapping(s) -->
-
<servlet-mapping>
<servlet-name>jamwiki</servlet-name>
<url-pattern>/test/*</url-pattern>
</servlet-mapping>
-
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
-
<jsp-config>
-
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>;
<taglib-location>/WEB-INF/c-rt.tld</taglib-location>
</taglib>
-
<taglib>
<taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>;
<taglib-location>/WEB-INF/fmt-rt.tld</taglib-location>
</taglib>
-
<taglib>
<taglib-uri>http://jamwiki.org/taglib</taglib-uri>;
<taglib-location>/WEB-INF/jamwiki.tld</taglib-location>
</taglib>
-
<taglib>
<taglib-uri>http://acegisecurity.org/authz</taglib-uri>;
<taglib-location>/WEB-INF/authz.tld</taglib-location>
</taglib>
</jsp-config>
</web-app

which is not working , Please let me know the problem.
hai all;
i am running one applet application through browser(mozilla) its running fine but when exit applet application button its close browser also.what can i do regarding to this problem.
please give suggestion urgentaly.
bye
17 years ago
i am develope an application using java web start and also given permission
some file in java policy file in server side.it run fine in server side but in client side given some sequrity problem.the client side error message is
"An error occurred while launching/running the application.

Title: ScormPlayer
Vendor: Scorm
Category: Security Error
access denied (java.util.PropertyPermission scormplayer.properties.file
write)".
how to solve this problem.
please help me.
bye
17 years ago
i am develope an application using java web start and also given permission
some file in java policy file.it run fine in server side but in client side
given some sequrity problem.how to solve this problem.
please help me.
bye
17 years ago
we want to upload file from sever side to client side...when we start....
application through applet.....so please give some java code examples..........
can we call two java script together in same method.
i have a one problem that is
i have two coloum if one check box value is transfer in another cloumn than i want that if both cloumn check boxes value same than i want to disabled the first check box value.
i have 6 items .i want to distribute it in 2 items by 3 times(like first 1,2,second 3,4 and third 5,6) items not reapeated.
18 years ago