Messages posted by blackdragontkd
[Logo]
ICEsoft.org Forums: ICEfaces, ICEmobile, ICEpdf
[Search] Search   [Recent Topics] Recent Topics   [Groups] Home Page | www.icesoft.org  [Login] Login 
Messages posted by: blackdragontkd  XML
Profile for blackdragontkd -> Messages posted by blackdragontkd [49] Go to Page: 1, 2, 3, 4 Next 
Author Message
This is my web.xml

Code:
 <?xml version="1.0" encoding="UTF-8"?>
 <web-app id="WebApp_ID" version="2.4"
 	xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 	<display-name>PCESTL</display-name>
 	<context-param>
 		<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
 		<param-value>server</param-value>
 	</context-param>
 	<context-param>
 		<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
 		<param-value>.xhtml</param-value>
 	</context-param>
 	<context-param>
 		<param-name>com.icesoft.faces.concurrentDOMViews</param-name>
 		<param-value>false</param-value>
 	</context-param>
 	<context-param>
 		<param-name>com.icesoft.faces.synchronousUpdate</param-name>
 		<param-value>false</param-value>
 	</context-param>
 	<context-param>
 		<param-name>com.icesoft.faces.gmapKey</param-name>
 		<param-value>ABQIAAAADlu0ZiSTam64EKaCQr9eTRTOTuQNzJNXRlYRLknj4cQ89tFfpxTEqxQnVWL4k55OPICgF5_SOZE06A</param-value>
 	</context-param>
 	<context-param>
 		<param-name>com.icesoft.faces.uploadDirectory</param-name>
 		<param-value>upload</param-value>
 	</context-param>
 	<context-param>
 		<param-name>com.icesoft.faces.uploadMaxFileSize</param-name>
 		<param-value>4048576</param-value>
 	</context-param>
 	
 	<context-param>
 		<param-name>com.icesoft.faces.connectionTimeout</param-name>
 		<param-value>1800000</param-value>
 		<!--
 		The connectionTimeout parameter defines how long, in
 		
 		milliseconds, that the bridge will wait for a response from
 		
 		the server for a user-initiated request before declaring the
 		
 		connection lost. The default value is 60000 (60 seconds).
 		
 		-->
 	</context-param>
 	
 	<context-param>
 		<param-name>com.icesoft.faces.compressResources</param-name>
 		<param-value>false</param-value>
 	</context-param>
 	
 	<listener>
 		<listener-class>com.icesoft.faces.util.event.servlet.ContextEventRepeater</listener-class>
 	</listener>
 	
 	<session-config>
 		<session-timeout>30</session-timeout>
 	</session-config>
 	
 	<servlet>
 		<servlet-name>Faces Servlet</servlet-name>
 		<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
 		<load-on-startup>1</load-on-startup>
 	</servlet>
 	<servlet>
 		<servlet-name>Persistent Faces Servlet</servlet-name>
 		<servlet-class>
 			com.icesoft.faces.webapp.xmlhttp.PersistentFacesServlet</servlet-class>
 		<load-on-startup>1</load-on-startup>
 	</servlet>
 	<servlet>
 		<servlet-name>Blocking Servlet</servlet-name>
 		<servlet-class>com.icesoft.faces.webapp.xmlhttp.BlockingServlet</servlet-class>
 		<load-on-startup>1</load-on-startup>
 	</servlet>
 	<servlet>
 		<servlet-name>uploadServlet</servlet-name>
 		<servlet-class>
 			com.icesoft.faces.component.inputfile.FileUploadServlet</servlet-class>
 		<load-on-startup>1</load-on-startup>
 	</servlet>
 	<servlet-mapping>
 		<servlet-name>Persistent Faces Servlet</servlet-name>
 		<url-pattern>*.xhtml</url-pattern>
 	</servlet-mapping>
 	<servlet-mapping>
 		<servlet-name>Persistent Faces Servlet</servlet-name>
 		<url-pattern>*.iface</url-pattern>
 	</servlet-mapping>
 	<servlet-mapping>
 		<servlet-name>Persistent Faces Servlet</servlet-name>
 		<url-pattern>/xmlhttp/*</url-pattern>
 	</servlet-mapping>
 	<servlet-mapping>
 		<servlet-name>Persistent Faces Servlet</servlet-name>
 		<url-pattern>/faces/*</url-pattern>
 	</servlet-mapping>
 	<servlet-mapping>
 		<servlet-name>Blocking Servlet</servlet-name>
 		<url-pattern>/block/*</url-pattern>
 	</servlet-mapping>
 	<servlet-mapping>
 		<servlet-name>uploadServlet</servlet-name>
 		<url-pattern>/uploadHtml</url-pattern>
 	</servlet-mapping>
 	<welcome-file-list>
 		<welcome-file>index.html</welcome-file>
 	</welcome-file-list>
 </web-app>
 
 



ANyone got any ideas?
I am trying to run my icefaces project on godaddy and I keep getting the same error messages:

"Io94ybY-MOXg7Dm9ZxZ6MQ:1:configuration-scription".as element is not a function.
$element is not defined
iceSubmitPartial is not defined


I am also getting the warning message
Error in parsing value for property "filter". Declaration dropped.
I am not sure if this effects anything or not though.

It is seeming like it isn't finding the javascript files. Does anyone know of a way of fixing this?


ps
I am currently using icefaces 1.8.2, jsf 1.1, and jdk 1.5. (Godaddy doesn't support 1.2 jsf)
Thank you
What are the server requirements for hosting an icefaces component?
How did you solve it?
You are going to need to have your dataExporter rendererd equal to true.

The Following is what I have and works for me. The Id for my table is "resources_for_#{applicationAssociationDetails.applicationNameParsed}"

Code:
 
 <ice:dataExporter for="resources_for_#{applicationAssociationDetails.applicationNameParsed}"
 																							label="Click to download #{applicationAssociationDetails.resourceFileType} file"
 																							type="#{applicationAssociationDetails.resourceFileType}"
 																							clickToCreateFileText="Click to create #{applicationAssociationDetails.resourceFileType} file "/>
 
 
Does anyone know what version of Icefaces is going to be fully functional with the google application Engine? Other than the ajax push server because that is looking like it will never happen because of thread issues with google.
What servers(for hosting) would you recommend we use if we are building icefaces applications. Would you recommend go-daddy,... or what?
You are going to have to watch out having icefaces in a shared library because some features of icefaces will not work correct such as the data export of a list. I have ran into that problem when I tried shared library in weblogic 9.2
What version of icefaces are you using?
Are the icefaces are included in your application or are they shared library?
What server are you running your application on?
Can you post your source code to the application exporter?
I am getting the following error when I am running my application on the google application engine:

12-11 06:59PM 00.494
com.sun.faces.lifecycle.Phase doPhase: JSF1054: (Phase ID: RENDER_RESPONSE 6, View ID: /send-receive-updates) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@12a961]

I am running JSF 1.2 and I am using icefaces 1.8.2. The webpage works after you get this error message and refresh the page. However first time access my application is blows up.

Anyone got any ideas
Are they plans to make Icefaces full compatible with Google Application Engine in a future release?
Do you know of any application servers like google's app engine that supports icefaces?
Is this limitation of Google App Engine going to be fixed in a later version of icefaces or an update of the google applicatoin engine?
I am getting the same problem when using the google app engine, however when I am using just tomcat I am not having any problems. I am trying to find a solution to this. If there has been a solution found please let me know so I can try it with my application.
 
Profile for blackdragontkd -> Messages posted by blackdragontkd [49] Go to Page: 1, 2, 3, 4 Next 
Go to:   
Powered by JForum 2.1.7ice © JForum Team