Fails to generate application/xml return value 201 for post (application/json works) #6285
Labels
Csharp
Pull requests that update .net code
generator
Issues or improvements relater to generation capabilities.
Needs: Attention 👋
type:question
An issue that's a question
What are you generating using Kiota, clients or plugins?
API Client/SDK
In what context or format are you using Kiota?
Nuget tool
Client library/SDK language
Csharp
Describe the bug
I specify the returned data type of POST on resource /post as application/xml but the generated GetAsync just returns Task.
Expected behavior
Generated function PostAsync should return Task
How to reproduce
Download and expand the zip file, generate the client (generate.bat) and then inspect PostAsync in Client/Post/PostRequestBuilder.cs XmlBug.zip
Open API description file
openapi: '3.0.2'
info:
title: Post-API
version: '1.0'
components:
schemas:
post:
type: object
properties:
userId:
type: integer
id:
type: integer
title:
type: string
body:
type: string
parameters:
post-id:
name: post-id
in: path
description: 'key: id of post'
required: true
style: simple
schema:
type: integer
paths:
/post:
post:
description: 'Create a post'
requestBody:
required: true
content:
application/xml:
schema:
$ref: '#/components/schemas/post'
responses:
'201':
description: Created
content:
application/xml:
schema:
$ref: '#/components/schemas/post'
Kiota Version
1.24.1+68eefbe046b9a9e4ee8b2029070a1cf097e5a984
Latest Kiota version known to work for scenario above?(Not required)
No response
Known Workarounds
No response
Configuration
Windows 10 Enterprise 22H2 19045.5608
x64
Debug output
Click to expand log
```C:\Users\mats.wessling\source\repos\XmlBug\XmlBug>kiota generate -l CSharp -c PostBug -n PostBug.Client -d ./PostBug.yml -o ./Client --ll debug
dbug: Kiota.Builder.KiotaBuilder[0]
kiota version 1.24.1
info: Kiota.Builder.KiotaBuilder[0]
loaded description from local source
dbug: Kiota.Builder.KiotaBuilder[0]
step 1 - reading the stream - took 00:00:00.0080241
warn: Kiota.Builder.KiotaBuilder[0]
OpenAPI warning: #/ - A servers entry (v3) or host + basePath + schemes properties (v2) was not present in the OpenAPI description. The root URL will need to be set manually with the request adapter.
dbug: Kiota.Builder.KiotaBuilder[0]
step 2 - parsing the document - took 00:00:00.2355886
dbug: Kiota.Builder.KiotaBuilder[0]
step 3 - updating generation configuration from kiota extension - took 00:00:00.0001202
dbug: Kiota.Builder.KiotaBuilder[0]
step 4 - filtering API paths with patterns - took 00:00:00.0659055
warn: Kiota.Builder.KiotaBuilder[0]
No server url found in the OpenAPI document. The base url will need to be set when using the client.
dbug: Kiota.Builder.KiotaBuilder[0]
step 5 - checking whether the output should be updated - took 00:00:00.0510803
dbug: Kiota.Builder.KiotaBuilder[0]
step 6 - create uri space - took 00:00:00.0035944
dbug: Kiota.Builder.KiotaBuilder[0]
InitializeInheritanceIndex 00:00:00.0036443
dbug: Kiota.Builder.KiotaBuilder[0]
CreateRequestBuilderClass 00:00:00
dbug: Kiota.Builder.KiotaBuilder[0]
MapTypeDefinitions 00:00:00.0051457
dbug: Kiota.Builder.KiotaBuilder[0]
TrimInheritedModels 00:00:00
dbug: Kiota.Builder.KiotaBuilder[0]
CleanUpInternalState 00:00:00
dbug: Kiota.Builder.KiotaBuilder[0]
step 7 - create source model - took 00:00:00.0522272
dbug: Kiota.Builder.KiotaBuilder[0]
23ms: Language refinement applied
dbug: Kiota.Builder.KiotaBuilder[0]
step 8 - refine by language - took 00:00:00.0245514
dbug: Kiota.Builder.KiotaBuilder[0]
step 9 - writing files - took 00:00:00.0319322
info: Kiota.Builder.KiotaBuilder[0]
loaded description from local source
dbug: Kiota.Builder.KiotaBuilder[0]
step 10 - writing lock file - took 00:00:00.0120450
Generation completed successfully
dbug: Kiota.Builder.KiotaBuilder[0]
Api manifest path: C:\Users\mats.wessling\source\repos\XmlBug\XmlBug\apimanifest.json
Hint: use the info command to get the list of dependencies you need to add to your project.
Example: kiota info -d "C:\Users\mats.wessling\source\repos\XmlBug\XmlBug.\PostBug.yml" -l CSharp
Hint: use the --include-path and --exclude-path options with glob patterns to filter the paths generated.
Example: kiota generate --include-path "**/foo" -d "C:\Users\mats.wessling\source\repos\XmlBug\XmlBug.\PostBug.yml"
The text was updated successfully, but these errors were encountered: