Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails to generate application/xml return value 201 for post (application/json works) #6285

Open
mawess opened this issue Mar 14, 2025 · 2 comments
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

Comments

@mawess
Copy link

mawess commented Mar 14, 2025

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"

</details>


### Other information

_No response_
@mawess mawess added status:waiting-for-triage An issue that is yet to be reviewed or assigned type:bug A broken experience labels Mar 14, 2025
@github-project-automation github-project-automation bot moved this to Needs Triage 🔍 in Kiota Mar 14, 2025
@msgraph-bot msgraph-bot bot added the Csharp Pull requests that update .net code label Mar 14, 2025
@baywet
Copy link
Member

baywet commented Mar 19, 2025

Hi @mawess
Thank you for using kiota and for reaching out.

Passing -m "application/xml" should solve your generation issue. more information

Let us know if you have any additional comments or questions.

@baywet baywet added generator Issues or improvements relater to generation capabilities. status:waiting-for-author-feedback Issue that we've responded but needs author feedback to close type:question An issue that's a question and removed type:bug A broken experience status:waiting-for-triage An issue that is yet to be reviewed or assigned labels Mar 19, 2025
@baywet baywet moved this from Needs Triage 🔍 to Waits for author 🔁 in Kiota Mar 19, 2025
@mawess
Copy link
Author

mawess commented Mar 24, 2025

good answer. Will test that. (BUT: i have not received any message to come with responce until i got the "stale" message. )

@microsoft-github-policy-service microsoft-github-policy-service bot added Needs: Attention 👋 and removed status:waiting-for-author-feedback Issue that we've responded but needs author feedback to close Status: No Recent Activity labels Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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
Projects
Status: Waits for author 🔁
Development

No branches or pull requests

2 participants