{"id":37733987,"url":"https://github.com/consag/convert2xml","last_synced_at":"2026-01-16T13:55:27.807Z","repository":{"id":45144971,"uuid":"185139633","full_name":"consag/convert2xml","owner":"consag","description":"Converts Java Array or input source file to XML. One file per record or all data to one single file.","archived":false,"fork":false,"pushed_at":"2022-01-05T13:08:30.000Z","size":279,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-03T03:06:12.386Z","etag":null,"topics":["bdm","informatica","informatica-platform"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/consag.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-06T06:49:57.000Z","updated_at":"2022-01-05T13:08:25.000Z","dependencies_parsed_at":"2022-08-25T16:12:03.720Z","dependency_job_id":null,"html_url":"https://github.com/consag/convert2xml","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/consag/convert2xml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/consag%2Fconvert2xml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/consag%2Fconvert2xml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/consag%2Fconvert2xml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/consag%2Fconvert2xml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/consag","download_url":"https://codeload.github.com/consag/convert2xml/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/consag%2Fconvert2xml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bdm","informatica","informatica-platform"],"created_at":"2026-01-16T13:55:27.235Z","updated_at":"2026-01-16T13:55:27.802Z","avatar_url":"https://github.com/consag.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## convert2xml\n* Command line tool to convert a text file to XML\n* Integrated into Informatica Developer 10.2.0 or 10.2.2, it can be used in a Java Transformation to speed up the generation of large XML files.\n\n## Examples\nIn the resources folder you will Informatica 10.2.2 exports of the Java transformation, a mapping and application that uses it.\n\n## Code snippets\nIf you just want to use the transformation, it is unlikely you need to change the Java code itself. The code snippets however can be found in the folder src/main/resources/code_snippets. For each Tab of the convert2xml transformation you dragged/dropped in the Developer Client, you will find a corresponding file.\n\n## Usage\n### Input\n- logLevel \u003cbr /\u003e\n  Optional or Required: Required \u003cbr /\u003e\n  Purpose: Determines the amount and details of log information. \u003cbr /\u003e\n  Possible values (from detailed to only on Errors): DEBUG, INFO, WARN, ERROR \u003cbr /\u003e\n- xsdFile \u003cbr /\u003e\n  Optional or Required: Required \u003cbr /\u003e\n  Purpose: name of the XSD file to be used. Specify only the file name, not the path. \u003cbr /\u003e\n  Possible values: Any valid file name up to 1000 characters \u003cbr /\u003e\n- xsdDirectory \u003cbr /\u003e\n  Optional or Required: Required \u003cbr /\u003e\n  Purpose: The location of the XSD file. Can be a relative or absolute path. Must end with a / (forward slash) \u003cbr /\u003e\n  Possible values: Any valid path name that ends on a forward slash (also on Windows) \u003cbr /\u003e\n- targetFileName \u003cbr /\u003e\n  Optional or Required: Required \u003cbr /\u003e\n  Purpose: The location and file name to be used as target file name. Must NOT include an extension. \u003cbr /\u003e\n  Possible values: Any valid path and file name, excluding its extension. The Java code will add the extension .xml \u003cbr /\u003e\n- oneFilePerInputRow \u003cbr /\u003e\n  Optional or Required: Required \u003cbr /\u003e\n  Purpose: Whether each input row should generate its own XML file (Y) or not (N). If 'N' then all input rows will be collected in one single XML file \u003cbr /\u003e\n  Possible values: Y|N \u003cbr /\u003e\n- Value1.. Value70 \u003cbr /\u003e\n  Optional or Required: Optional \u003cbr /\u003e\n  Purpose: The input data that must be converted into XML elements. Value1 will be used as input for the first XML element (as determined by the provided XSD), Value2 is the input for the second XML element, and so forth. \u003cbr /\u003e\n  Possible values: Any character string up to 100 characters (Value1 can be up to 1000 characters) \u003cbr /\u003e\n\n### Output\n- resultCode: the OK or Error code \u003cbr /\u003e\n- resultMessage: The output message, e.g. No errors encountered. \u003cbr /\u003e\n- nrFilesCreated: the number of files the Java transformation generated. \u003cbr /\u003e \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconsag%2Fconvert2xml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconsag%2Fconvert2xml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconsag%2Fconvert2xml/lists"}