I am bugged with CWSCA8019E error in my WID;
CWSCA8019E: No matching interface can be found on target {0} error keeps coming back to my workspace; apparently I don't see any missing artifacts (imports/exports/component files). If I delete the wire and reconnect the error goes away but when I do a clean build it comes back.
I have compared the files with my previous workspace and there is no change. Not sure what I am missing; ....
I will post as soon as I find a clue on this..
...
I have deleted WID interim fix 008 and my WID started working fine after that .. there something that causing some trouble in interim fix 008.
Arun
Wednesday, February 11, 2009
WebSphere Integration Developer BOXMLSerializer writeDataObjectWithOptions
The default BOXMLSerializer writes XML with spaces and tabs; to remove tabs/spaces you can use below code.
BOXMLSerializer bos = (BOXMLSerializer) ServiceManager.INSTANCE.locateService
("com/ibm/websphere/bo/BOXMLSerializer");
Map options = new HashMap(); options.put
(XMLResource.OPTION_FORMATTED, Boolean.FALSE);
bos.writeDataObjectWithOptions(dataObject, targetNamespace, element, options);
BOXMLSerializer bos = (BOXMLSerializer) ServiceManager.INSTANCE.locateService
("com/ibm/websphere/bo/BOXMLSerializer");
Map options = new HashMap(); options.put
(XMLResource.OPTION_FORMATTED, Boolean.FALSE);
bos.writeDataObjectWithOptions(dataObject, targetNamespace, element, options);
Subscribe to:
Comments (Atom)