What do you mean by \"If I send a file as an attachment (multipart)\" ?
I don't use soapUI's attachment functionnality to make my POST request. But I send my file throw a request parameter (name \"content\") encoded in Base64 (as required our spec).
I just want to know if it is possible to avoid soapUI such raw (multiple return lines and adding some characters at the end of each of them). I believe that it was related to \"Content-Transfer-Encoding:quoted-printable\" setting made by soapUI.
Below my service settings with details of base64 request parameter
If my zip file parameter encoded in based64 doesn't contains any pdf file, i don't why (may be due to the parameter length), but soapUI manage it correctly en the parameter Content-Transfert-Encoding : 7bit (see bellow)
How to get the same if my zip file contains pdf file ?
PS: To encode in base64 my zip file, i follow your site exemple (see bellow).
I install ReadyAPI solution, the same request execute properly đ€
","board":{"__ref":"Forum:board:SoapUI_OS"},"conversation":{"__ref":"Conversation:conversation:253284"},"author":{"__typename":"User","login":"kbr"},"postTime":"2023-07-17T02:02:00.141-07:00","kudosSumWeight":0}},{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3w1fDE0OjAsMzk6MXwz","node":{"__typename":"ForumReplyMessage","uid":253927,"body":"
An area to explore.
\nJust happen to see the following thread. If not seen already, please check.
\nhttps://www.w3.org/Protocols/rfc1341/5_Content-Transfer-Encoding.html
\n\n
The summary of the question:
\nhow to avoid default Content-Transfert-Encoding:quoted-printable
\n\n
You can explicitly add the Headers.
\nIn your case, you seem to attach the zip with pdf.
\n\n
Then try the below headers:
\nContent-Type: application/zip
\nContent-Transfert-Encoding: base64
\n","board":{"__ref":"Forum:board:SoapUI_OS"},"conversation":{"__ref":"Conversation:conversation:253284"},"author":{"__typename":"User","login":"nmrao"},"postTime":"2023-07-20T03:48:27.563-07:00","kudosSumWeight":0}},{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3w1fDE0OjAsMzk6MXw0","node":{"__typename":"ForumReplyMessage","uid":262199,"body":"
Thanks for you different feedbacks. But unfortunately, these do not help me to fix my issue.
I just want to know why I have two different results with the same script execution (soapUI vs ReadyAPI).
My request has two parameters \"filename\" and \"content\". The second parameter is filled by a very long string (the result of zip file encoded in Base64).
As I can see, with soapUI, \"content\" parameter has quoted-printable \"Content-Transfer-Encoding\" value. Is there any way to avoid this setting done by soapUI ?
With ReadyAPI, the same request editor is different, \"content\" parameter has no \"Content-Transfer-Encoding\" value (in Request Raw view there is no break line).
As I said below, it depends of content length.
Under a specific value soapUI keep Content-Transfer-Encoding value to 7bit
Over a specific value soapUI seems to format the content value as Content-Transfer-Encoding set to \"quoted-printable\" value. It seems that soapUI edit the request as we can see (on request raw) multiple break lines.
","board":{"__ref":"Forum:board:SoapUI_OS"},"conversation":{"__ref":"Conversation:conversation:253284"},"author":{"__typename":"User","login":"kbr"},"postTime":"2024-02-01T02:36:48.930-08:00","kudosSumWeight":0}},{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3w1fDE0OjAsMzk6MXw1","node":{"__typename":"ForumReplyMessage","uid":266988,"body":"
Here a workaround. AI suggest me to do my POST request with a groovy script (find bellow the groovy script that I used)
import org.apache.http.impl.client.CloseableHttpClient\nimport org.apache.http.entity.mime.MultipartEntityBuilder\nimport org.apache.http.impl.client.HttpClients\nimport org.apache.http.client.methods.HttpPost\nimport org.apache.http.util.EntityUtils\n\nCloseableHttpClient httpClient = HttpClients.createDefault()\n// DĂ©finir l'URL de votre service \ndef url = context.expand('${#Global#endpoint.api-interco-url}')+'/interco/lot-bs'\nHttpPost post = new HttpPost(url)\n\n// Construire le corps de la requĂȘte pour multipart/form-data \nMultipartEntityBuilder builder = MultipartEntityBuilder.create()\n\n// Ajouter des champs de formulaire \n// log.info context.expand('${=testCase.name}')\nbuilder.addTextBody(\"filename\", context.expand('${=testCase.name}') )\n// log.info context.expand('${#TestCase#encodedFile}')\nbuilder.addTextBody(\"content\", context.expand('${#TestCase#encodedFile}') )\n\n// Construire l'entitĂ© multipart \ndef multipartEntity = builder.build()\npost.setEntity(multipartEntity)\n\n// CrĂ©er les en-tĂȘtes de la requĂȘte \n// post.setHeader(\"Content-Type\", \"multipart/form-data\") // laisser le systĂšme dĂ©terminer le Content-Type\npost.setHeader('Authorization', 'Bearer ' + context.expand('${#TestCase#intercoApiToken}'))\npost.setHeader('X-Gravitee-Api-Key', context.expand('${#Project#x-gravitee-api-key.header.attribute}'))\npost.setHeader('Content-Disposition', 'form-data')\npost.setHeader('Content-transfert-encoding', '7bit')\n// post.setHeader('Connection','Keep-Alive')\n\n// Envoyer la requĂȘte HTTP POST \ndef response = httpClient.execute(post)\n\n// GĂ©rer la rĂ©ponse \ndef responseContent = EntityUtils.toString(response.getEntity())\n\nif (response.statusLine.statusCode == 200) {\n log.info \"RĂ©ponse rĂ©ussie : ${responseContent}\"\n} else {\n log.error \"http status error code : ${response.statusLine.statusCode}\"\n log.error \"body content : ${responseContent}\"\n}\n\n// Fermer le client \nhttpClient.close()
","board":{"__ref":"Forum:board:SoapUI_OS"},"conversation":{"__ref":"Conversation:conversation:253284"},"author":{"__typename":"User","login":"kbr"},"postTime":"2024-09-23T03:36:47.463-07:00","kudosSumWeight":0}}]},"cachedAsset({\"assetId\":\"Common\",\"assetType\":\"quiltWrapper\",\"lastModified\":\"1742461214415\",\"locale\":null,\"node\":null})":{"__ref":"CachedAsset:quiltWrapper:smartbear.prod:Common:1742461214415"},"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/common/ActionFeedback\"]})":[{"__ref":"CachedAsset:text:en_US-components/common/ActionFeedback-1741125846000"}],"cachedAsset({\"assetId\":\"custom.widget.Footer_Links-en-US\",\"assetType\":\"component\",\"lastModified\":\"1742461343886\",\"locale\":null,\"node\":null})":{"__ref":"CachedAsset:component:custom.widget.Footer_Links-en-1742461343886"},"cachedAsset({\"assetId\":\"custom.widget.Custom_Style_Helper-en-US\",\"assetType\":\"component\",\"lastModified\":\"1742461343886\",\"locale\":null,\"node\":null})":{"__ref":"CachedAsset:component:custom.widget.Custom_Style_Helper-en-1742461343886"},"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/Navbar\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/Navbar-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarHamburgerDropdown\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarHamburgerDropdown-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/BrandLogo\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/BrandLogo-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarTextLinks\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarTextLinks-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/search/SpotlightSearchIcon\"]})":[{"__ref":"CachedAsset:text:en_US-components/search/SpotlightSearchIcon-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/authentication/AuthenticationLink\"]})":[{"__ref":"CachedAsset:text:en_US-components/authentication/AuthenticationLink-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/Breadcrumb\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/Breadcrumb-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageBanner\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageBanner-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageListForNodeByRecentActivityWidget\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageListForNodeByRecentActivityWidget-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/RelatedContentWidget\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/RelatedContentWidget-1741125846000"}],"coreNode({\"id\":\"board:SoapUI_OS\"})":{"__ref":"Forum:board:SoapUI_OS"},"messages({\"constraints\":{\"boardId\":{\"eq\":\"board:SoapUI_OS\"},\"conversationStyle\":{\"eq\":\"FORUM\"},\"depth\":{\"eq\":0}},\"first\":3,\"sorts\":{\"postTime\":{\"direction\":\"DESC\"}}})":{"__typename":"MessageConnection","edges":[{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8aXwzfDM5OjB8aW50LDI3NTUyMCwyNzU1MjA","node":{"__ref":"ForumTopicMessage:message:275520"}},{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8aXwzfDM5OjB8aW50LDI3NTUyMCwyNzU0NjA","node":{"__ref":"ForumTopicMessage:message:275460"}},{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8aXwzfDM5OjB8aW50LDI3NTUyMCwyNzU0NTg","node":{"__ref":"ForumTopicMessage:message:275458"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":true,"endCursor":"MjUuMnwyLjF8aXwzfDM5OjB8aW50LDI3NTUyMCwyNzU0NTg"},"totalCount":11074},"relatedContent({\"first\":3,\"post_id\":253284})":{"__typename":"RelatedContentConnection","edges":[{"__typename":"RelatedContentEdge","node":{"__ref":"RelatedContentMessage:RelatedContentMessage:199273"}},{"__typename":"RelatedContentEdge","node":{"__ref":"RelatedContentMessage:RelatedContentMessage:133533"}},{"__typename":"RelatedContentEdge","node":{"__ref":"RelatedContentMessage:RelatedContentMessage:179296"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":true,"endCursor":"MHwxNzkyOTZ8MnwzOzN8fA"}},"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/nodes/NodeLink\"]})":[{"__ref":"CachedAsset:text:en_US-components/nodes/NodeLink-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageView/MessageViewStandard\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageView/MessageViewStandard-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/ThreadedReplyList\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/ThreadedReplyList-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageReplyCallToAction\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageReplyCallToAction-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/QueryHandler\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/QueryHandler-1741125846000"}],"component({\"componentId\":\"custom.widget.Footer_Links\"})":{"__typename":"Component","render({\"context\":{\"component\":{\"entities\":[],\"props\":{}},\"page\":{\"entities\":[\"board:SoapUI_OS\",\"message:253284\"],\"name\":\"ForumMessagePage\",\"props\":{},\"url\":\"https://community.smartbear.com/discussions/soapui_os/rest-request-with-parameters---how-to-avoid-default-content-transfert-encodingqu/253284\"}}})":{"__typename":"ComponentRenderResult","html":" "}},"componentScriptGroups({\"componentId\":\"custom.widget.Footer_Links\"})":{"__typename":"ComponentScriptGroups","scriptGroups":{"__typename":"ComponentScriptGroupsDefinition","afterInteractive":{"__typename":"PageScriptGroupDefinition","group":"AFTER_INTERACTIVE","scriptIds":[]},"lazyOnLoad":{"__typename":"PageScriptGroupDefinition","group":"LAZY_ON_LOAD","scriptIds":[]}},"componentScripts":[]},"component({\"componentId\":\"custom.widget.Custom_Style_Helper\"})":{"__typename":"Component","render({\"context\":{\"component\":{\"entities\":[],\"props\":{}},\"page\":{\"entities\":[\"board:SoapUI_OS\",\"message:253284\"],\"name\":\"ForumMessagePage\",\"props\":{},\"url\":\"https://community.smartbear.com/discussions/soapui_os/rest-request-with-parameters---how-to-avoid-default-content-transfert-encodingqu/253284\"}}})":{"__typename":"ComponentRenderResult","html":" "}},"componentScriptGroups({\"componentId\":\"custom.widget.Custom_Style_Helper\"})":{"__typename":"ComponentScriptGroups","scriptGroups":{"__typename":"ComponentScriptGroupsDefinition","afterInteractive":{"__typename":"PageScriptGroupDefinition","group":"AFTER_INTERACTIVE","scriptIds":[]},"lazyOnLoad":{"__typename":"PageScriptGroupDefinition","group":"LAZY_ON_LOAD","scriptIds":[]}},"componentScripts":[]},"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/EscalatedMessageBanner\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/users/UserLink\"]})":[{"__ref":"CachedAsset:text:en_US-components/users/UserLink-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserRank\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserRank-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageTime\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageTime-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageSolvedBadge\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageSubject\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageSubject-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageBody\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageBody-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageCustomFields\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageCustomFields-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageReplyButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageReplyButton-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/AcceptedSolutionButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMore\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageView/MessageViewInline\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1741125846000"}],"message({\"id\":\"message:266988\"})":{"__ref":"ForumReplyMessage:message:266988"},"message({\"id\":\"message:253533\"})":{"__ref":"ForumReplyMessage:message:253533"},"message({\"id\":\"message:253580\"})":{"__ref":"ForumReplyMessage:message:253580"},"message({\"id\":\"message:253927\"})":{"__ref":"ForumReplyMessage:message:253927"},"message({\"id\":\"message:262199\"})":{"__ref":"ForumReplyMessage:message:262199"},"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserAvatar\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/ranks/UserRankLabel\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1741125846000"}],"cachedText({\"lastModified\":\"1741125846000\",\"locale\":\"en-US\",\"namespaces\":[\"components/tags/TagView/TagViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1741125846000"}]},"CachedAsset:pages-1742461325509":{"__typename":"CachedAsset","id":"pages-1742461325509","value":[{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogViewAllPostsPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId/all-posts/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CasePortalPage","type":"CASE_PORTAL","urlPath":"/caseportal","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CreateGroupHubPage","type":"GROUP_HUB","urlPath":"/groups/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CaseViewPage","type":"CASE_DETAILS","urlPath":"/case/:caseId/:caseNumber","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"InboxPage","type":"COMMUNITY","urlPath":"/inbox","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"HelpFAQPage","type":"COMMUNITY","urlPath":"/help","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaMessagePage","type":"IDEA_POST","urlPath":"/idea/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaViewAllIdeasPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/all-ideas/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"LoginPage","type":"USER","urlPath":"/signin","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogPostPage","type":"BLOG","urlPath":"/category/:categoryId/blogs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ThemeEditorPage","type":"COMMUNITY","urlPath":"/designer/themes","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbViewAllArticlesPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId/all-articles/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"OccasionEditPage","type":"EVENT","urlPath":"/event/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"OAuthAuthorizationAllowPage","type":"USER","urlPath":"/auth/authorize/allow","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"PageEditorPage","type":"COMMUNITY","urlPath":"/designer/pages","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"PostPage","type":"COMMUNITY","urlPath":"/category/:categoryId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumBoardPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbBoardPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"EventPostPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"UserBadgesPage","type":"COMMUNITY","urlPath":"/users/:login/:userId/badges","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"GroupHubMembershipAction","type":"GROUP_HUB","urlPath":"/membership/join/:nodeId/:membershipType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"MaintenancePage","type":"COMMUNITY","urlPath":"/maintenance","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaReplyPage","type":"IDEA_REPLY","urlPath":"/idea/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"UserSettingsPage","type":"USER","urlPath":"/mysettings/:userSettingsTab","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"GroupHubsPage","type":"GROUP_HUB","urlPath":"/groups","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumPostPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"OccasionRsvpActionPage","type":"OCCASION","urlPath":"/event/:boardId/:messageSubject/:messageId/rsvp/:responseType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"VerifyUserEmailPage","type":"USER","urlPath":"/verifyemail/:userId/:verifyEmailToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"AllOccasionsPage","type":"OCCASION","urlPath":"/category/:categoryId/events/:boardId/all-events/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"EventBoardPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbReplyPage","type":"TKB_REPLY","urlPath":"/kb/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaBoardPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CommunityGuideLinesPage","type":"COMMUNITY","urlPath":"/communityguidelines","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CaseCreatePage","type":"SALESFORCE_CASE_CREATION","urlPath":"/caseportal/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbEditPage","type":"TKB","urlPath":"/kb/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForgotPasswordPage","type":"USER","urlPath":"/forgotpassword","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaEditPage","type":"IDEA","urlPath":"/idea/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TagPage","type":"COMMUNITY","urlPath":"/tag/:tagName","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ChampionRules.Page","type":"COMMUNITY","urlPath":"/c/champion-rules/page","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogBoardPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"OccasionMessagePage","type":"OCCASION_TOPIC","urlPath":"/event/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ManageContentPage","type":"COMMUNITY","urlPath":"/managecontent","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ClosedMembershipNodeNonMembersPage","type":"GROUP_HUB","urlPath":"/closedgroup/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CommunityPage","type":"COMMUNITY","urlPath":"/","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumMessagePage","type":"FORUM_TOPIC","urlPath":"/discussions/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"IdeaPostPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogMessagePage","type":"BLOG_ARTICLE","urlPath":"/blog/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"RegistrationPage","type":"USER","urlPath":"/register","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"EditGroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumEditPage","type":"FORUM","urlPath":"/discussions/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ResetPasswordPage","type":"USER","urlPath":"/resetpassword/:userId/:resetPasswordToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbMessagePage","type":"TKB_ARTICLE","urlPath":"/kb/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogEditPage","type":"BLOG","urlPath":"/blog/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ManageUsersPage","type":"USER","urlPath":"/users/manage/:tab?/:manageUsersTab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumReplyPage","type":"FORUM_REPLY","urlPath":"/discussions/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"PrivacyPolicyPage","type":"COMMUNITY","urlPath":"/privacypolicy","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"NotificationPage","type":"COMMUNITY","urlPath":"/notifications","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"UserPage","type":"USER","urlPath":"/users/:login/:userId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"HealthCheckPage","type":"COMMUNITY","urlPath":"/health","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"OccasionReplyPage","type":"OCCASION_REPLY","urlPath":"/event/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ManageMembersPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/manage/:tab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"SearchResultsPage","type":"COMMUNITY","urlPath":"/search","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"BlogReplyPage","type":"BLOG_REPLY","urlPath":"/blog/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"GroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TermsOfServicePage","type":"COMMUNITY","urlPath":"/termsofservice","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"CategoryPage","type":"CATEGORY","urlPath":"/category/:categoryId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"ForumViewAllTopicsPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/all-topics/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"TkbPostPage","type":"TKB","urlPath":"/category/:categoryId/kbs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742461325509,"localOverride":null,"page":{"id":"GroupHubPostPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"}],"localOverride":false},"CachedAsset:text:en_US-components/context/AppContext/AppContextProvider-0":{"__typename":"CachedAsset","id":"text:en_US-components/context/AppContext/AppContextProvider-0","value":{"noCommunity":"Cannot find community","noUser":"Cannot find current user","noNode":"Cannot find node with id {nodeId}","noMessage":"Cannot find message with id {messageId}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Loading/LoadingDot-0":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Loading/LoadingDot-0","value":{"title":"Loading..."},"localOverride":false},"User:user:-1":{"__typename":"User","id":"user:-1","uid":-1,"login":"Anonymous","email":"","avatar":null,"rank":null,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":"ANONYMOUS","registrationTime":null,"confirmEmailStatus":false,"registrationAccessLevel":"VIEW","ssoRegistrationFields":[]},"ssoId":null,"profileSettings":{"__typename":"ProfileSettings","dateDisplayStyle":{"__typename":"InheritableStringSettingWithPossibleValues","key":"layout.friendly_dates_enabled","value":"true","localValue":"true","possibleValues":["true","false"]},"dateDisplayFormat":{"__typename":"InheritableStringSetting","key":"layout.format_pattern_date","value":"MM-dd-yyyy","localValue":"MM-dd-yyyy"},"language":{"__typename":"InheritableStringSettingWithPossibleValues","key":"profile.language","value":"en-US","localValue":null,"possibleValues":["en-US"]}},"deleted":false},"Theme:customTheme1":{"__typename":"Theme","id":"customTheme1"},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bi0xMC1tTXVXdng?image-coordinates=0%2C0%2C209%2C209\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bi0xMC1tTXVXdng?image-coordinates=0%2C0%2C209%2C209","mimeType":"image/png"},"Category:category:soapui-os-community":{"__typename":"Category","id":"category:soapui-os-community","entityType":"CATEGORY","displayId":"soapui-os-community","nodeType":"category","depth":1,"title":"SoapUI Open Source","shortTitle":"SoapUI Open Source","parent":{"__ref":"Category:category:top"}},"Category:category:top":{"__typename":"Category","id":"category:top","displayId":"top","nodeType":"category","depth":0,"title":"Top","entityType":"CATEGORY","shortTitle":"Top"},"Forum:board:SoapUI_OS":{"__typename":"Forum","id":"board:SoapUI_OS","entityType":"FORUM","displayId":"SoapUI_OS","nodeType":"board","depth":2,"conversationStyle":"FORUM","title":"SoapUI Open Source Questions","description":"","avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bi0xMC1tTXVXdng?image-coordinates=0%2C0%2C209%2C209\"}"},"profileSettings":{"__typename":"ProfileSettings","language":null},"parent":{"__ref":"Category:category:soapui-os-community"},"ancestors":{"__typename":"CoreNodeConnection","edges":[{"__typename":"CoreNodeEdge","node":{"__ref":"Community:community:nwkab66374"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:soapui-os-community"}}]},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"boardPolicies":{"__typename":"BoardPolicies","canPublishArticleOnCreate":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","key":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","args":[]}}},"shortTitle":"SoapUI Open Source Questions","repliesProperties":{"__typename":"RepliesProperties","sortOrder":"LIKES","repliesFormat":"threaded"},"eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/","tagProperties":{"__typename":"TagNodeProperties","tagsEnabled":{"__typename":"PolicyResult","failureReason":null}},"requireTags":false,"tagType":"PRESET_ONLY"},"Rank:rank:15":{"__typename":"Rank","id":"rank:15","position":21,"name":"New Contributor","color":"00537C","icon":null,"rankStyle":"OUTLINE"},"User:user:119295":{"__typename":"User","id":"user:119295","uid":119295,"login":"kbr","deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/m_assets/avatars/default/avatar-5.svg?time=0"},"rank":{"__ref":"Rank:rank:15"},"email":"","messagesCount":4,"biography":null,"topicsCount":1,"kudosReceivedCount":0,"kudosGivenCount":1,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2023-07-11T06:03:19.403-07:00","confirmEmailStatus":null},"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:nwkab66374/user:119295"},"ForumTopicMessage:message:253284":{"__typename":"ForumTopicMessage","uid":253284,"subject":"REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?","id":"message:253284","revisionNum":6,"repliesCount":5,"author":{"__ref":"User:user:119295"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:SoapUI_OS"},"conversation":{"__ref":"Conversation:conversation:253284"},"readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:253284"},"body":"
Hi, I am facing to an issue (with soapUI version 5.6.0).
My POST REST request have two parameters. One of them is a zip file converted in Base64.
In Request Raw tab You can see a parameter \"Content-Transfert-Encoding\" with \"quoted-printable\". The parameter content contains multiple lines may be due to the Content-Transfert-Encoding parameter value.
Expected one line with all the parameter content
How to avoid this default value ?
In a previous topics one member says that soapUI uses the mail api. And explains that if the primary type of this datasource is \"text\", and :
- If all the bytes in its input stream are US-ASCII, then the encoding is \"7bit\".
- If more than half of the bytes are non-US-ASCII, then the encoding is \"base64\".
- If less than half of the bytes are non-US-ASCII, then the encoding is \"quoted-printable\".
But how to make sure that more than half of the bytes are non-US-ASCII ?
Hi, I am facing to an issue (with soapUI version 5.6.0).
My POST REST request have two parameters. One of them is a zip file converted in Base64.
In Request Raw tab You can see a parameter \"Content-Transfert-Encoding\" with \"quoted-printable\". The parameter content contains multiple lines may be due to the Content-Transfert-Encoding parameter value.
Expected one line with all the parameter content
How to avoid this default value ?
In a previous topics one member says that soapUI uses the mail api. And explains that if the primary type of this datasource is \"text\", and :
- If all the bytes in its input stream are US-ASCII, then the encoding is \"7bit\".
- If more than half of the bytes are non-US-ASCII, then the encoding is \"base64\".
- If less than half of the bytes are non-US-ASCII, then the encoding is \"quoted-printable\".
But how to make sure that more than half of the bytes are non-US-ASCII ?
You might have a misunderstanding in how your endpoint expects to receive its data - double check the spec.
\n\n
If you are to send a file as an attachment (multipart) as you are doing already, then your endpoint should be able to manage all of those Content-Transfer-Encodings, as these are well specified and I can't imagine endpoint developer is not using a standard library.
\n\n
Which is why I suspect they are expecting it in another way? Perhaps as a single request body, perhaps in a header, perhaps embedded into JSON? In these cases you would do the base64 encoding yourself (groovy-lang.org) and specify the data wherever it really belongs.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":1,"postTime":"2023-07-14T18:31:58.082-07:00","lastPublishTime":"2023-07-14T18:31:58.082-07:00","metrics":{"__typename":"MessageMetrics","views":551},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/message:253284/message:253533","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3wzfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:253580"}}]},"customFields":[],"editFrozen":false,"body@stringLength":"875","rawBody":"You might have a misunderstanding in how your endpoint expects to receive its data - double check the spec.
\n\n
If you are to send a file as an attachment (multipart) as you are doing already, then your endpoint should be able to manage all of those Content-Transfer-Encodings, as these are well specified and I can't imagine endpoint developer is not using a standard library.
\n\n
Which is why I suspect they are expecting it in another way? Perhaps as a single request body, perhaps in a header, perhaps embedded into JSON? In these cases you would do the base64 encoding yourself (groovy-lang.org) and specify the data wherever it really belongs.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:253533_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:253580":{"__typename":"ModerationData","id":"moderation_data:253580","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:253580":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:119295"},"id":"message:253580","revisionNum":13,"uid":253580,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:SoapUI_OS"},"parent":{"__ref":"ForumReplyMessage:message:253533"},"conversation":{"__ref":"Conversation:conversation:253284"},"subject":"Re: REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?","moderationData":{"__ref":"ModerationData:moderation_data:253580"},"body":"Thanks for your reply JHunt.
What do you mean by \"If I send a file as an attachment (multipart)\" ?
I don't use soapUI's attachment functionnality to make my POST request. But I send my file throw a request parameter (name \"content\") encoded in Base64 (as required our spec).
I just want to know if it is possible to avoid soapUI such raw (multiple return lines and adding some characters at the end of each of them). I believe that it was related to \"Content-Transfer-Encoding:quoted-printable\" setting made by soapUI.
Below my service settings with details of base64 request parameter
If my zip file parameter encoded in based64 doesn't contains any pdf file, i don't why (may be due to the parameter length), but soapUI manage it correctly en the parameter Content-Transfert-Encoding : 7bit (see bellow)
How to get the same if my zip file contains pdf file ?
PS: To encode in base64 my zip file, i follow your site exemple (see bellow).
I install ReadyAPI solution, the same request execute properly đ€
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2023-07-17T02:02:00.141-07:00","lastPublishTime":"2023-07-20T04:05:28.325-07:00","metrics":{"__typename":"MessageMetrics","views":413},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/message:253284/message:253580","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"readOnly":false,"editFrozen":false,"body@stringLength":"4668","rawBody":"
Thanks for your reply
What do you mean by \"If I send a file as an attachment (multipart)\" ?
I don't use soapUI's attachment functionnality to make my POST request. But I send my file throw a request parameter (name \"content\") encoded in Base64 (as required our spec).
I just want to know if it is possible to avoid soapUI such raw (multiple return lines and adding some characters at the end of each of them). I believe that it was related to \"Content-Transfer-Encoding:quoted-printable\" setting made by soapUI.
Below my service settings with details of base64 request parameter
If my zip file parameter encoded in based64 doesn't contains any pdf file, i don't why (may be due to the parameter length), but soapUI manage it correctly en the parameter Content-Transfert-Encoding : 7bit (see bellow)
How to get the same if my zip file contains pdf file ?
PS: To encode in base64 my zip file, i follow your site exemple (see bellow).
I install ReadyAPI solution, the same request execute properly đ€
","images":{"__typename":"AssociatedImageConnection","edges":[{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDE","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTRpOTc3QzMyMDBBMzQ5NDFDNw?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDI","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNjhpRjY2NjFEMThBQzg4RDQ5RQ?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDM","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTZpQTRCOTY0NkRENjMwNEU1MA?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDQ","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzODNpNTFBOTA2MTBGOUJCOEU4Ng?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDU","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzOTlpODY4M0I5Rjg5RDM0RDA2RQ?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDY","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MDBpNTA4RDAwQkM4QjYzNEI4OA?revision=13\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDc","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MTRpNjM1OTk1NDgzQ0RENTczMw?revision=13\"}"}}],"totalCount":7,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:253580_13"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzItVUFqY01K\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzItVUFqY01K","height":20,"width":20,"mimeType":"image/png"},"Rank:rank:32":{"__typename":"Rank","id":"rank:32","position":5,"name":"Champion Level 2","color":"28B1FD","icon":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzItVUFqY01K\"}"},"rankStyle":"OUTLINE"},"User:user:21201":{"__typename":"User","id":"user:21201","uid":21201,"login":"nmrao","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2013-05-17T20:34:18.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/m_assets/avatars/default/avatar-5.svg?time=0"},"rank":{"__ref":"Rank:rank:32"},"entityType":"USER","eventPath":"community:nwkab66374/user:21201"},"ModerationData:moderation_data:253927":{"__typename":"ModerationData","id":"moderation_data:253927","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:253927":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:21201"},"id":"message:253927","revisionNum":4,"uid":253927,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:SoapUI_OS"},"parent":{"__ref":"ForumTopicMessage:message:253284"},"conversation":{"__ref":"Conversation:conversation:253284"},"subject":"Re: REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?","moderationData":{"__ref":"ModerationData:moderation_data:253927"},"body":"
An area to explore.
\nJust happen to see the following thread. If not seen already, please check.
\nhttps://www.w3.org/Protocols/rfc1341/5_Content-Transfer-Encoding.html
\n\n
The summary of the question:
\nhow to avoid default Content-Transfert-Encoding:quoted-printable
\n\n
You can explicitly add the Headers.
\nIn your case, you seem to attach the zip with pdf.
\n\n
Then try the below headers:
\nContent-Type: application/zip
\nContent-Transfert-Encoding: base64
\n","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"repliesCount":0,"postTime":"2023-07-20T03:48:27.563-07:00","lastPublishTime":"2023-07-20T04:14:50.032-07:00","metrics":{"__typename":"MessageMetrics","views":413},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/message:253284/message:253927","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"798","rawBody":"
An area to explore.
\nJust happen to see the following thread. If not seen already, please check.
\nhttps://www.w3.org/Protocols/rfc1341/5_Content-Transfer-Encoding.html
\n\n
The summary of the question:
\nhow to avoid default Content-Transfert-Encoding:quoted-printable
\n\n
You can explicitly add the Headers.
\nIn your case, you seem to attach the zip with pdf.
\n\n
Then try the below headers:
\nContent-Type: application/zip
\nContent-Transfert-Encoding: base64
\n","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:253927_4"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:262199":{"__typename":"ModerationData","id":"moderation_data:262199","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:262199":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:119295"},"id":"message:262199","revisionNum":7,"uid":262199,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:SoapUI_OS"},"parent":{"__ref":"ForumTopicMessage:message:253284"},"conversation":{"__ref":"Conversation:conversation:253284"},"subject":"Re: REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?","moderationData":{"__ref":"ModerationData:moderation_data:262199"},"body":"
Thanks for you different feedbacks. But unfortunately, these do not help me to fix my issue.
I just want to know why I have two different results with the same script execution (soapUI vs ReadyAPI).
My request has two parameters \"filename\" and \"content\". The second parameter is filled by a very long string (the result of zip file encoded in Base64).
As I can see, with soapUI, \"content\" parameter has quoted-printable \"Content-Transfer-Encoding\" value. Is there any way to avoid this setting done by soapUI ?
With ReadyAPI, the same request editor is different, \"content\" parameter has no \"Content-Transfer-Encoding\" value (in Request Raw view there is no break line).
As I said below, it depends of content length.
Under a specific value soapUI keep Content-Transfer-Encoding value to 7bit
Over a specific value soapUI seems to format the content value as Content-Transfer-Encoding set to \"quoted-printable\" value. It seems that soapUI edit the request as we can see (on request raw) multiple break lines.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2024-02-01T02:36:48.930-08:00","lastPublishTime":"2024-07-01T00:32:55.177-07:00","metrics":{"__typename":"MessageMetrics","views":5},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/message:253284/message:262199","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"1820","rawBody":"
Thanks for you different feedbacks. But unfortunately, these do not help me to fix my issue.
I just want to know why I have two different results with the same script execution (soapUI vs ReadyAPI).
My request has two parameters \"filename\" and \"content\". The second parameter is filled by a very long string (the result of zip file encoded in Base64).
As I can see, with soapUI, \"content\" parameter has quoted-printable \"Content-Transfer-Encoding\" value. Is there any way to avoid this setting done by soapUI ?
With ReadyAPI, the same request editor is different, \"content\" parameter has no \"Content-Transfer-Encoding\" value (in Request Raw view there is no break line).
As I said below, it depends of content length.
Under a specific value soapUI keep Content-Transfer-Encoding value to 7bit
Over a specific value soapUI seems to format the content value as Content-Transfer-Encoding set to \"quoted-printable\" value. It seems that soapUI edit the request as we can see (on request raw) multiple break lines.
","images":{"__typename":"AssociatedImageConnection","edges":[{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDE","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktZHBVMVIx?revision=7\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDI","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktWDdLRHZy?revision=7\"}"}}],"totalCount":2,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:262199_7"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:266988":{"__typename":"ModerationData","id":"moderation_data:266988","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:266988":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:119295"},"id":"message:266988","revisionNum":6,"uid":266988,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:SoapUI_OS"},"parent":{"__ref":"ForumTopicMessage:message:253284"},"conversation":{"__ref":"Conversation:conversation:253284"},"subject":"Re: REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?","moderationData":{"__ref":"ModerationData:moderation_data:266988"},"body":"
Here a workaround. AI suggest me to do my POST request with a groovy script (find bellow the groovy script that I used)
import org.apache.http.impl.client.CloseableHttpClient\nimport org.apache.http.entity.mime.MultipartEntityBuilder\nimport org.apache.http.impl.client.HttpClients\nimport org.apache.http.client.methods.HttpPost\nimport org.apache.http.util.EntityUtils\n\nCloseableHttpClient httpClient = HttpClients.createDefault()\n// DĂ©finir l'URL de votre service \ndef url = context.expand('${#Global#endpoint.api-interco-url}')+'/interco/lot-bs'\nHttpPost post = new HttpPost(url)\n\n// Construire le corps de la requĂȘte pour multipart/form-data \nMultipartEntityBuilder builder = MultipartEntityBuilder.create()\n\n// Ajouter des champs de formulaire \n// log.info context.expand('${=testCase.name}')\nbuilder.addTextBody(\"filename\", context.expand('${=testCase.name}') )\n// log.info context.expand('${#TestCase#encodedFile}')\nbuilder.addTextBody(\"content\", context.expand('${#TestCase#encodedFile}') )\n\n// Construire l'entitĂ© multipart \ndef multipartEntity = builder.build()\npost.setEntity(multipartEntity)\n\n// CrĂ©er les en-tĂȘtes de la requĂȘte \n// post.setHeader(\"Content-Type\", \"multipart/form-data\") // laisser le systĂšme dĂ©terminer le Content-Type\npost.setHeader('Authorization', 'Bearer ' + context.expand('${#TestCase#intercoApiToken}'))\npost.setHeader('X-Gravitee-Api-Key', context.expand('${#Project#x-gravitee-api-key.header.attribute}'))\npost.setHeader('Content-Disposition', 'form-data')\npost.setHeader('Content-transfert-encoding', '7bit')\n// post.setHeader('Connection','Keep-Alive')\n\n// Envoyer la requĂȘte HTTP POST \ndef response = httpClient.execute(post)\n\n// GĂ©rer la rĂ©ponse \ndef responseContent = EntityUtils.toString(response.getEntity())\n\nif (response.statusLine.statusCode == 200) {\n log.info \"RĂ©ponse rĂ©ussie : ${responseContent}\"\n} else {\n log.error \"http status error code : ${response.statusLine.statusCode}\"\n log.error \"body content : ${responseContent}\"\n}\n\n// Fermer le client \nhttpClient.close()
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2024-09-23T03:36:47.463-07:00","lastPublishTime":"2024-09-23T05:35:35.925-07:00","metrics":{"__typename":"MessageMetrics","views":2},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:soapui-os-community/community:nwkab66374board:SoapUI_OS/message:253284/message:266988","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"2116","rawBody":"
Here a workaround. AI suggest me to do my POST request with a groovy script (find bellow the groovy script that I used)
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":2,"currentRevision":{"__ref":"Revision:revision:266988_6"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1741125846000","value":{"escalationMessage":"Escalated to Salesforce by {username} on {date}","viewDetails":"View Details","modalTitle":"Case Details","escalatedBy":"Escalated by: ","escalatedOn":"Escalated on: ","caseNumber":"Case Number: ","status":"Status: ","lastUpdateDate":"Last Update: ","automaticEscalation":"automatic escalation","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-components/users/UserLink-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1741125846000","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1741125846000","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1741125846000","value":{"postTime":"Published: {time}","lastPublishTime":"Last Update: {time}","conversation.lastPostingActivityTime":"Last posting activity time: {time}","conversation.lastPostTime":"Last post time: {time}","moderationData.rejectTime":"Rejected time: {time}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1741125846000","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1741125846000","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1741125846000","value":{"showMessageBody":"Show More","mentionsErrorTitle":"{mentionsType, select, board {Board} user {User} message {Message} other {}} No Longer Available","mentionsErrorMessage":"The {mentionsType} you are trying to view has been removed from the community.","videoProcessing":"Video is being processed. Please try again in a few minutes.","bannerTitle":"Video provider requires cookies to play the video. Accept to continue or {url} it directly on the provider's site.","buttonTitle":"Accept","urlText":"watch"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageCustomFields-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1741125846000","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1741125846000","value":{"repliesCount":"{count}","title":"Reply","title@board:BLOG@message:root":"Comment","title@board:TKB@message:root":"Comment","title@board:IDEA@message:root":"Comment","title@board:OCCASION@message:root":"Comment"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1741125846000","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1741125846000","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1741125846000","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"Revision:revision:253927_4":{"__typename":"Revision","id":"revision:253927_4","lastEditTime":"2023-07-20T04:14:50.032-07:00"},"Revision:revision:253533_1":{"__typename":"Revision","id":"revision:253533_1","lastEditTime":"2023-07-14T18:31:58.082-07:00"},"Revision:revision:266988_6":{"__typename":"Revision","id":"revision:266988_6","lastEditTime":"2024-09-23T05:35:35.925-07:00"},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktZHBVMVIx?revision=7\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktZHBVMVIx?revision=7","title":"image.png","associationType":"BODY","width":971,"height":423,"altText":""},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktWDdLRHZy?revision=7\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNjIxOTktWDdLRHZy?revision=7","title":"image.png","associationType":"BODY","width":973,"height":609,"altText":""},"Revision:revision:262199_7":{"__typename":"Revision","id":"revision:262199_7","lastEditTime":"2024-07-01T00:32:55.177-07:00"},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTRpOTc3QzMyMDBBMzQ5NDFDNw?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTRpOTc3QzMyMDBBMzQ5NDFDNw?revision=13","title":"kbr_0-1689584137953.png","associationType":"BODY","width":818,"height":386,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNjhpRjY2NjFEMThBQzg4RDQ5RQ?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNjhpRjY2NjFEMThBQzg4RDQ5RQ?revision=13","title":"kbr_1-1689611926649.png","associationType":"BODY","width":669,"height":375,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTZpQTRCOTY0NkRENjMwNEU1MA?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzNTZpQTRCOTY0NkRENjMwNEU1MA?revision=13","title":"kbr_2-1689584508727.png","associationType":"BODY","width":790,"height":187,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzODNpNTFBOTA2MTBGOUJCOEU4Ng?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzODNpNTFBOTA2MTBGOUJCOEU4Ng?revision=13","title":"kbr_1-1689671834070.png","associationType":"BODY","width":823,"height":697,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzOTlpODY4M0I5Rjg5RDM0RDA2RQ?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTgzOTlpODY4M0I5Rjg5RDM0RDA2RQ?revision=13","title":"kbr_1-1689748088787.png","associationType":"BODY","width":1093,"height":435,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MDBpNTA4RDAwQkM4QjYzNEI4OA?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MDBpNTA4RDAwQkM4QjYzNEI4OA?revision=13","title":"kbr_2-1689750133067.png","associationType":"BODY","width":1099,"height":516,"altText":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MTRpNjM1OTk1NDgzQ0RENTczMw?revision=13\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNTM1ODAtMTg0MTRpNjM1OTk1NDgzQ0RENTczMw?revision=13","title":"kbr_0-1689851089069.png","associationType":"BODY","width":1158,"height":474,"altText":null},"Revision:revision:253580_13":{"__typename":"Revision","id":"revision:253580_13","lastEditTime":"2023-07-20T04:05:28.325-07:00"},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1741125846000","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1741125846000","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1741125846000","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"soapui_os","messageSubject":"rest-request-with-parameters---how-to-avoid-default-content-transfert-encodingqu","messageId":"253284"},"buildId":"q_bLpq2mflH0BeZigxpj6","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","openTelemetryClientEnabled":false,"openTelemetryConfigName":"smartbear","openTelemetryServiceVersion":"25.2.0","openTelemetryUniverse":"prod","openTelemetryCollector":"http://localhost:4318","openTelemetryRouteChangeAllowedTime":"5000","apolloDevToolsEnabled":false,"inboxMuteWipFeatureEnabled":false},"isFallback":false,"isExperimentalCompile":false,"dynamicIds":["./components/seo/QAPageSchema/QAPageSchema.tsx","./components/community/Navbar/NavbarWidget.tsx","./components/community/Breadcrumb/BreadcrumbWidget.tsx","./components/messages/TopicWithThreadedReplyListWidget/TopicWithThreadedReplyListWidget.tsx","./components/messages/MessageListForNodeByRecentActivityWidget/MessageListForNodeByRecentActivityWidget.tsx","./components/messages/RelatedContentWidget/RelatedContentWidget.tsx","./components/customComponent/CustomComponent/CustomComponent.tsx","./components/messages/MessageView/MessageViewStandard/MessageViewStandard.tsx","./components/messages/ThreadedReplyList/ThreadedReplyList.tsx","../shared/client/components/common/List/UnstyledList/UnstyledList.tsx","./components/messages/MessageView/MessageView.tsx","../shared/client/components/common/Pager/PagerLoadMore/PagerLoadMore.tsx","./components/messages/MessageView/MessageViewInline/MessageViewInline.tsx","./components/customComponent/CustomComponentContent/TemplateContent.tsx","../shared/client/components/common/List/UnwrappedList/UnwrappedList.tsx","./components/tags/TagView/TagView.tsx","./components/tags/TagView/TagViewChip/TagViewChip.tsx"],"appGip":true,"scriptLoader":[]}