5 Replies Latest reply on Jan 22, 2008 1:15 AM by surja

    not showing task instance view

    surja

      I am new to jbpm ,I have a created a process and deployed to server and after starting the process ,a task is created but while I am trying to view the task by clicking view button ,an error is displayed

      Stream error while reading XML: Connection timed out: connect
      .

      Please anybody can help me to solve this problem

        • 1. Re: not showing task instance view
          kukeltje

          STTF.... either open up your firewall or make sure the forms you use have reference all locally available versions of dtd's/xsd's

          • 2. Re: not showing task instance view
            surja

            Hi,thanks for your advice ...................the firewall is on in my PC...........It's not possible for me to break firewall.........Is there any way to continue the operation in jBPM console.

            • 3. Re: not showing task instance view
              kukeltje

              look the the part AFTER the or in my previous post.....

              btw... you cannot break your firewall? Your browser needs to do outgoing http so http is possible. Just allow java.exe to do outgoing http as well

              • 4. Re: not showing task instance view
                surja

                Hi ronald,
                Thanks for your co-operation...........but it will be really helpful if you simplify your suggestion .....as I am new to this field and quite unware of jargons....please direct a simplify route to solve the problem.

                • 5. Re: not showing task instance view
                  surja

                  hi ronald,
                  this is XHTML code for a node,plese suggest whether I have edit it or not

                  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
                  
                  <!-- the DOCTYPE means we are required to use html for a root element -->
                  <html xmlns="http://www.w3.org/1999/xhtml"
                   xmlns:ui="http://java.sun.com/jsf/facelets"
                   xmlns:c="http://java.sun.com/jstl/core"
                   xmlns:h="http://java.sun.com/jsf/html"
                   xmlns:f="http://java.sun.com/jsf/core"
                   xmlns:tf="http://jbpm.org/jsf/tf"
                   xmlns:jbpm="http://jbpm.org/jsf">
                  
                   <ui:component>
                  
                   <jbpm:dataform>
                  
                   <f:facet name="header">
                   <h:outputText value="#{taskName}"/>
                   </f:facet>
                  
                   <!-- TASKFORM ROWS -->
                  
                   <jbpm:datacell>
                   <f:facet name="header">
                   <h:outputText value="Actions"/>
                   </f:facet>
                   <!-- TASKFORM BUTTONS -->
                   <tf:saveButton value="Save"/>
                   <tf:cancelButton value="Cancel"/>
                   <tf:transitionButton transition="Done" value="Done"/>
                   </jbpm:datacell>
                  
                   </jbpm:dataform>
                  
                   </ui:component>
                  
                  </html>