SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'objectstore:config' - mule-studio

The error being thrown starts with this:
org.mule.module.launcher.DeploymentInitException: SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'objectstore:config'. One of '{"http://www.springframework.org/schema/beans":beans, e.t.c}' is expected.
i have added both, Namespace and Schema Location added in .XML
Does anyone have any suggestions?
Thanks in advance for your help.
Thank you everyone, i have solved this as below
Edit:
added
www.mulesoft.org/schema/mule/objectstore to in schema location along with http://www.mulesoft.org/schema/mule/objectstore/current/mule-objectstore.xsd

http://www.mulesoft.org/schema/mule/objectstore has to be added in schema location along with http://www.mulesoft.org/schema/mule/objectstore/current/mule-objectstore.xsd

Did you change anything in the Configuration xml file, because above mentioned declarations comes default when you create a new flow.
Please do check.

Related

jBoss Business Central Error Message when Opening Assets

To all
When trying to open an asset (DRL or Legency Test), I receive the message "Unable to complete your request. The following exception occurred: name is empty."
I can't find any hint what this means. My rules import from different projects which all can be accessed.
Does anybody have an idea what this could mean? Thank you very much already in advance.
big hug
Michael
I found out by myself. The external data objects configuration had an empty entry. So be careful when adding an external data object - you are able to add an empty row and Business Central let's you save this ... with the empty row causing the error described.
happy coding
Michael Lutz

How to resolve TinyButStrong's 'at least one tag corresponding to w:tr is not found' error?

I'm creating a project to mail merge a given .odt file and provide a .odt output. When i'm performing the mail merge operation it provides me this error
TinyButStrong Error in block's definition [CiviCRM.display_name...]: at least one tag corresponding to w:tr is not found. Check opening tags, closing tags and embedding levels.
Myfilecontent.odt
[CRM. display_name;block=w:tr]
Date: 2/3/2020
Dear [CRM.postal_greeting;block=w:tr],
Thank you for joining the event...
I have no idea how to resolve this. could someone help me to solve it?
Thanks in advance!
Update
After i replaced w:tr with tbs:row, still I'm receiving a similar error
TinyButStrong Error in block's definition [CRM.display_name...]: at
least one tag corresponding to tbs:row is not found. Check opening
tags, closing tags and embedding levels.
w:tr is an XML entity for Ms Word , not ODT.
You should use the alias block=tbs:row so that its is format independent.

Error after login in M2 Backend in dev mode only

Anybody experience with this error? I see nothing in the logs that helps me.
Exception #0 (LogicException): Could not create an acl object: Invalid
Document Element 'resource': The attribute 'title' is required but
missing. Line: 5
0 /generated/code/Magento/Framework/Acl/Builder/Proxy.php(95): Magento\Framework\Acl\Builder->getAcl()
I have also experienced this issue some time ago. Actually, the problem is one of your custom or third party module contains <resource> tag in acl.xml in etc folder file and the title attribute is missing over there, which is the cause of this exception. Therefore, I would suggest you to check acl.xml files and if title attribute is missing in any of your module then add a title to <resource> tag something like this:
File etc/acl.xml in one of your module:
<resource id="Custom_Module::config" title="Module Title" />
You can also check this Magento 2.2.0 Invalid Document Element 'resource': The attribute 'title' is required but missing from where I found the solution to my problem.
I had the same issue because I had disabled all MSI modules.
Try to enable them and check if this fixed your issue.
In Addition to verifying the title against the most inner resource tag, also verify that you have not added extra id="Custome_Module::config" in any of your acl.xml or some spelling mistake etc.

Spark read error file path does not exist

Hi Everyone,
While reading data from a file in spark I'm getting an error like path does not exist. Please find the screenshot for the same.
Could you please tell me what I missed regarding processing data?
Many thanks for your help in advance.
Regards,
Sunitha.
Your data should contain path with file extension. It's missing here.
Add extension to us-500.

iTextSharp error, casting IncCell to Rectangle

I've been asked to look at C# code that's returning the following error:
Unable to cast object of type
'iTextSharp.text.html.simpleparser.IncCell' to type 'iTextSharp.text.Rectangle'.
at iTextSharp.text.pdf.PdfDocument.Add(IElement element)
at iTextSharp.text.Document.Add(IElement element)
It looks like they're using iTextSharp v5.0.2 and have not yet moved from HtmlWorker to XmlWorker.
Questions:
What is IncCell? I see it in the source docs but can't find any info about what it is - I'm assuming it's just for internal use.
Is this related to a cell in a table? A need for a Div or Paragraph within a cell?
What can they do to diagnose issues like this down to the HTML source that caused the error? I suspect this is an issue with not conforming to XHTML, but I can't verify that without knowing exactly what IElement that code was working on when it choked. It could be due to bad styling too, I have no idea at this time. Is there any kind of detail logging that will tell us what element is being processed at any given time? Should I just get them to load source and trace through it?
Is it probable that this will be fixed with an update to the latest version (currently 5.5.9), and a re-fit of XmlWorker?
Other recommendations?
Thanks!