[JBoss JIRA] Created: (JBPM-734) org.jbpm.util.XmlException: couldn't parse xml
by Ivan Garcia (JIRA)
org.jbpm.util.XmlException: couldn't parse xml
----------------------------------------------
Key: JBPM-734
URL: http://jira.jboss.com/jira/browse/JBPM-734
Project: JBoss jBPM
Issue Type: Bug
Components: Core Engine
Affects Versions: jBPM 3.1.2
Reporter: Ivan Garcia
Assigned To: Tom Baeyens
This code
try{
String cfg = "<jbpm-configuration>";
cfg += "</jbpm-configuration>";
jbpmConfiguration = JbpmConfiguration.parseXmlString(cfg);
}catch(Exception e){
e.printStackTrace();
}
launch this exception,
org.jbpm.util.XmlException: couldn't parse xml
at org.jbpm.util.XmlUtil.parseXmlInputSource(XmlUtil.java:78)
at org.jbpm.util.XmlUtil.parseXmlResource(XmlUtil.java:60)
at org.jbpm.configuration.ObjectFactoryParser.parseElementsFromResource(ObjectFactoryParser.java:104)
at org.jbpm.JbpmConfiguration.parseObjectFactory(JbpmConfiguration.java:299)
at org.jbpm.JbpmConfiguration.parseXmlString(JbpmConfiguration.java:318)
Caused by: java.net.MalformedURLException
at java.net.URL.<init>(URL.java:601)
at java.net.URL.<init>(URL.java:464)
at java.net.URL.<init>(URL.java:413)
at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at org.jbpm.util.XmlUtil.parseXmlInputSource(XmlUtil.java:76)
... 6 more
and i dont know why :-(
Thanks
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 3 months
[JBoss JIRA] Created: (JGRP-468) SFC does not control unicast messages
by Brian Stansberry (JIRA)
SFC does not control unicast messages
-------------------------------------
Key: JGRP-468
URL: http://jira.jboss.com/jira/browse/JGRP-468
Project: JGroups
Issue Type: Task
Reporter: Brian Stansberry
Assigned To: Brian Stansberry
Fix For: 2.4.1 SP2
SFC does not control unicast messages. This makes it unsuitable for UDP-based channels that will handle a lot of unicast, e.g. a channel used by a buddy replication-enabled JBoss Cache. Also makes it unsuitable for use as a shared multiplexed channel when one of the services might use a lot of unicast.
Proposed solution is to refactor the core locking and credit accounting behavior of SFC into an inner class. SFC would then maintain an instance of that inner class to track credits for group (i.e. multipoint) messages. A separate instance of the inner class would be maintained to track unicast traffic to each peer. So, in a 4 node cluster, SFC would maintain 5 instances of the inner class. (Maintaining an instance for unicast messages to oneself is probably unnecessary, but its a lightweight object and not maintaining it would add complexity.)
Will add a "control_unicast" config flag with default value of true. Allows simple disabling of unicast flow control in TCP-based configurations.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 3 months