Export association rules to PMML in KNIME - pmml

I have built an Asscociation Rule Analysis in KNIME and now I want to export those rules to PMML for further usage outside of KNIME.
Is it possible to export association rules to PMML in KNIME?
Any help would be great!

Related

Does OWASP dependency check worked on salesforce Apex class files(*.cls)

I am first time using OSASP Dependency check using Azure devops. Here this check is not scanning my apex class files and xml metadata files. So I wanna confirm is it scan those or not and what type of file it scan for salesforce projects?
I tried to search from owsap officially site but from where it is not cleared.
From what I understand are APEX files Zipped Library which can contain Jar Files, I think it makes more sense to scan the pipeline which actually contains the code of the Apex Files.

Lint splited OpenAPI definition

I've defined my services API using OpenAPI3 and am using GitHub for linting with Spectral by running the following script:
spectral lint ./api/**/*.{json,yml,yaml} --verbose
Later on, I've noticed that many of the objects are shared within my definitions and instead of duplicating them I've decided to create shared definition files that I could reference later on.
Everything is working great, besides the fact that at the moment the shared files are just regular YML files and not OpenAPI definitions. That means that there is no linting for those files. When I've tried to make those files an OpenAPI definition I had to add the paths definition (and others) which are not required in my shared files.
What is the best way to create a shared library in OpenAPI which could also be linted?
Something similar to what I've done you can find in the following link

Export OSB resources without using export wizard on JDeveloper

Using JDeveloper in order to create and manage Oracle Service Bus 12c resources, I am able to export the required resources into a .jar file using the Resources Export Wizard of JDeveloper, selecting one by one those needed, under the tree of each project.
What I want to do though is find a way to export a .jar file based on resources list, given in a file of a commonly used format (JSON, CSV etc), as it can be time saving for a large number of resources. My first thought was to search if JDeveloper provides such way or attempt do this programmatically, yet my search on this has not given me any information of how-to.
Is there an alternative way of doing this?
If you have Oracle OSB 11.1.1.7.0 or higher you can automate the compilation process for OSB at project level using configjar, here's a whole example of an implementation which include: compilation using configjar, automating the task retrieving the code from GIT using Jenkins and a python script.
You can also do it using ANT, here's a good document of Oracle explaining that. (I've tried it, but found easier to use configjar, this is the only option for versions below 11.1.1.7.0).
After creating any of those compilation methods you can create a CSV file, parse it with python and loop the compilation.

udeploy - environment settings

I am learning uDeploy and try to deploy test release (by referring simple HelloWorld application)
Created component, component process & application as download artifacts to c:\UAT_1_Rel (Say Environmwnt-1)
(Source configuration type as file system).
Provided the sample data as T1.txt and T2.txt and successfully deployed (i.e. in Environmwnt-1)
Now Need to deploy this two files into c:\UAT_2_Rel (i.e. in Environmwnt-2)
For this need to create another component or is any other way (i.e. Want to know how to deploy using single components to Multiple environment)
Please help to move next step. Your help is highly appreciated.
Note:
The settings already done as given below
Name : CompUAT1
Source Configuration Type : file system
Base Path : c:\SrcArt_1_Rel
Destination Directories : c:\UAT_1_Rel
Resource : TestReso
Agent : PTest1
Environment : EnvUAT-1
and done the required settings by Add Base Resources
In the application process design as Install component and added component (CompUAT1)
Using single component you can deploy to multiple environments, its depends on how you have mapped your component in Resource tree.
Create separate group in resource tree for each environment and add your component there.

WCF: SvcUtil.exe with imports issue

One of the requirement in our project is as follows:
We got from client WSDL and XSD files only. Our task is to generate SOAP messages based on these WSDL and XSD files and extract SOAP bodies.
First step we should undertake is to generate client proxy files from given WSDL and XSD files. Main WSDL file has mulitple imports and imported XSD files also have some imports. I've tried to accomplish client proxy files generation by using SvcUtil.exe utility, but the error came up.
I ran SvcUtil.exe in this way:
E:\Projekti\WCF\XSD>svcutil /noconfig rosrazna.ru.xsd.SmevUnifoService.wsdl roskazna.ru.xsd.ResponseTemplate.xsd roskazna.ru.xsd.PGU_ImportRequest.xsd roskazna.ru.xsd.PGU_DataRequest.xsd roskazna.ru.xsd.PGU_ChargesResponse.xsd roskazna.ru.xsd.ExportPaymentsResponse.xsd roskazna.ru.xsd.ExportIncomesResponse.xsd roskazna.ru.xsd.ExportQuittanceResponse.xsd roskazna.ru.xsd.Ticket.xsd
But, this error came up:
Microsoft (R) Service Model Metadata Tool
[Microsoft (R) Windows (R) Communication Foundation, Version 3.0.4506.2152]
Copyright (c) Microsoft Corporation. All rights reserved.
Generating files...
Warning: No code was generated.
If you were trying to generate a client, this could be because the metadata docu
ments did not contain any valid contracts or services
or because all contracts/services were discovered to exist in /reference assembl
ies. Verify that you passed all the metadata documents to the tool.
Warning: If you would like to generate data contracts from schemas make sure to
use the /dataContractOnly option.
I have to mention I did not put imports from XSD files imported in main WSDL file in SvcUtil.exe command. I don't know how to put them.
So, how to solve this?
Thank you in advance.
Goran
#Goran, copy all the referenced xsd files to the same location as the wsdl. Then, when using the svcutil from command prompt, list all the xsds there, or put a *.xsd, like this:
E:\Projekti\WCF\XSD>svcutil /noconfig goransWsdl.wsdl *.xsd
PS: You already seem to be mentioning all the xsds though.