『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the full value of DC Web with our global community.
新着順
I used Claude.AI to troubleshoot, here is the feedback:Adobe Extract PDF API is silently dropping pages from this 94-page PDF. The text is fine. There's no difference in text format or layout between the missed and found contracts — pdftotext extracts them identically. So the common thread isn't about the content, it's about which pages Adobe Extract chose to skip. — pdftotext extracts every contract perfectly. Adobe just doesn't return text elements for certain pages, so the workflow never sees those Contract IDs.The input PDF has 94 pages with 52 unique contracts All 20 missing contracts have Contract ID: NNNNNNN in identical format to the 32 that succeeded — there's no text/regex issue Every page has a footer: Affidavit: Page X of Y (that's the numbering you mentioned) 18 of 20 missing contracts are single-page (Page 1 of 1) Pages 1-6 are ALL missing — the first 6 contracts were entirely skipped The remaining missing contracts are scattered (pages 21, 29, 48-55, 74-75, 77, 84, 94)
Hi, Have not been contacted by sales even though a week has passed. Is there anyone from Adobe that can help me to accelerate this? Kind regards,Abyl
When the view div width is small, the search bar does not fully show. To reproduce this following code can be used<div style="width:35%"><div id="adobe-dc-view"></div></div><script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script><script type="text/javascript">// Store the UI options in a constantconst previewConfig = { embedMode: "FULL_WINDOW", showDownloadPDF: false, showZoomControl: false}document.addEventListener("adobe_dc_view_sdk.ready", function () { var adobeDCView = new AdobeDC.View({clientId: "<YOUR_CLIENT_ID>", divId: "adobe-dc-view"}); // Consume previewConfig here. . . adobeDCView.previewFile({ content:{location: {url: "https://acrobatservices.adobe.com/view-sdk-demo/PDFs/Bodea Brochure.pdf"}}, metaData:{fileName: "Bodea Brochure.pdf"} }, previewConfig);});Notice the parent div of adobe-dc-view has 35% width. Now when the pdf is rendered, if we try to open search bar, the search bar
Today, we’re trying the PDF Services API. Strictly following the [Node.js SDK documentation](https://developer.adobe.com/document-services/docs/overview/pdf-services-api/gettingstarted/#nodejs), I signed up and created new credentials with the Personalized Code Sample Download, unzipped, installed the project dependencies with `npm install` and exported environment variables with client id and secret.Then, I tried to run a few samples... but every attempt (tried different operation endpoint) has failed so far:```$ node src/pdfaccessibilitychecker/pdf-accessibility-checker.js Logging configuration found at config/pdfservices-sdk-log4js-config.json.2026-03-27T16:13:47.606:[INFO]: Started uploading asset2026-03-27T16:13:49.060:[INFO]: Finished uploading asset2026-03-27T16:13:49.062:[INFO]: Started submitting PDF Accessibility Checker Operation job2026-03-27T16:13:49.063:[INFO]: Finished submitting PDF Accessibility Checker Operation jobException encountered while executing operation Servi
I need your help on pdfI have given a condition to the field in pdf which is when a user enters less than 6 digits, it should show the pop up notification and is written in java script and i wrote on custom validation script.But what i want now is when a user enter less than six digits and the field have any number, it should not allow the user to move to the next field, it should allow the user to go to the other cell only when he enter 6 digitswhat is happening in my pdf is when a user enter less than 6 digits it is showing the pop up notification, and not keeping the digits entered in pdf, and allowing to move to the next field so please help me on this
Hello,I am using the Document Generation API with a Word template, and I’m encountering unexpected behavior when using conditional-section inside a repeating-section.The Template tags I am using in word doc:{% repeating-section data.group_family.products %} {% conditional-section expr(id = "soft_bundles") %} Table 1 {% end-section %} {% conditional-section expr(id != "soft_bundles") %} Table 2 {% end-section %}{% end-section %}Sample JSON:{ "data": { "group_family": { "products": [ { "name": "Soft Bundles", "id": "soft_bundles" }, { "name": "Product A", "id": "prod_a" }, { "name": "Product B", "id": "prod_b" }, { "name": "Product C", "id": "prod_c" }, { "name": "Product D", "id": "prod_d" }, { "name": "Product E", "id": "prod_e" } ] } }}QuestionsIs there a known limitation or special handling required for inequality (!=) or negation (not()) inside conditional-section when used within a repeating-section? In e
I am using the Document Generation API with a Word template (dynamic table with table markers) and want to conditionally discard a column based on values coming from different levels of the input JSON.I want to remove a column when either of the following conditions is true:The current row’s product name equals a specific value (row-level context), OR A root-level boolean flag show_pricing is false { "data": { "approved_quote": true, "bypass_approval": false, "group_family": { "products": [ { "name": "Product A", "items": [ { "end_date": "31 Dec 2025", "prices": [{ "net_price": "$100" }] } ] }, { "name": "Some Other Product", "items": [ { "end_date": "15 Jan 2026", "prices": [{ "net_price": "$200" }] } ] } ] } }, "show_pricing": false} Template fragments I tried:{{items.end_date:discard
We have been using the PDF Services API to convert MS Office files into PDFs for over a year. We subscribed through AWS Marketplace, and the service has been working without any issues.However, we’ve noticed that we have not been billed at all during this time, even though in some months we have made more than 500 API calls. This seems unusual, so we’re wondering if there might be any issue with billing or with the data integration between the service and AWS.Could someone from the Adobe team check if everything is configured correctly on their side?
Using the pdfservices-sdk-samples for Java.Added the credentials to environment.Not able to connect to Adobe API, issue appears to be about SSL certificate.This was definitely not mentioned in the Get Started Guide.Exception encountered while executing operation: com.adobe.pdfservices.operation.exception.SDKException: Request could not be completed. Possible cause attached!com.adobe.pdfservices.operation.exception.SDKException: Request could not be completed. Possible cause attached! at com.adobe.pdfservices.operation.internal.http.HttpClientWrapper.executeApacheHttpRequest(HttpClientWrapper.java:159) at com.adobe.pdfservices.operation.internal.http.HttpClientWrapper.executeRequest(HttpClientWrapper.java:142) at com.adobe.pdfservices.operation.internal.http.HttpClientWrapper.lambda$send$0(HttpClientWrapper.java:113) at net.jodah.failsafe.Functions.lambda$get$0(Functions.java:48) at net.jodah.failsafe.RetryPolicyExecutor.lambda$supply$0(RetryPolicyExecutor.java:66) at net.jodah.failsafe
Hi All,We started getting the following error recently:DataCloneError: Failed to execute 'postMessage' on 'Window': #<Promise> could not be cloned.when calling the getPDFMetadata() method.Here’s the code:previewFilePromise.then((adobeViewer) => { adobeViewer.getAPIs().then((apis) => { // All viewer APIs can be invoked here apis.getPDFMetadata().then((result) => { numPages = result.numPages; pdfTitle = result.pdfTitle; }); .catch((error) => console.log(error)); }); });The pdf displays correctly in the viewer however the getMetadata() method fails and we can’t get the number of pages, … Is anyone having this issue?
Hi everyone,Since the 09/03/2026 update, the Adobe PDF Embed API has been failing to render PDFs that contain annotations. This was working perfectly before the update.Environment:- PDF Embed API (dc-core 4.7.7, dcpreviewdropin 4.2.0_2.1400.0, dc-comments-dropin 4.13.0_2.1414.0)- Issue occurs across browsers (tested Chrome and Firefox)- Only affects PDFs with annotations; PDFs without annotations load fineWhat happens:The PDF begins to load and is briefly visible, then disappears almost immediately. The viewer container remains but the document content is gone.Console error:TypeError: can't access property "icon", r[I] is undefined QuickToolItem https://documentcloud.adobe.com/dcpreviewdropin/4.2.0_2.1400.0/bootstrap.js:2The full stack trace shows the error originates in QuickToolItem within the preview dropin, triggered during the commenting/annotation initialization flow:1. The PDF starts rendering via _startRenderingPDF → _preloadPageAtLowRes2. The comments dropin initializes via
Sehr geehrte Damen und Herren,ich habe versehentlich ein Adobe-Abonnement im Rahmen einer Testphase abgeschlossen. Dieses habe ich fristgerecht gekündigt, jedoch scheint die Kündigung nicht wirksam geworden zu sein.In meiner Nutzungshistorie können Sie nachvollziehen, dass ich das Programm bzw. die App nach Abschluss des Abonnements nicht verwendet habe.Ich ersuche Sie daher höflich, mein Abonnement umgehend zu kündigen und mir die bereits eingezahlten Abobeträge zurückzuerstatten.Für Ihre Unterstützung danke ich Ihnen im Voraus und bitte um eine schriftliche Bestätigung.Mit freundlichen GrüßenJey Mrlcvnmaral@gmail.com
Team,We are encountering issues with the PDF Services API when generating documents that include dynamic images.To assist with troubleshooting, we have attached a sample project and the corresponding request JSON object to this ticket.Steps to reproduce the issue: Run the application (built with .NET Core and Angular). Select the attached PDFTemplate using the ‘Select Template’ button Enter data into the loaded form (two text fields and one image field). Click the "Generate Document" button. Observed Result: The document is generated, but the images are not replaced; the output still displays the placeholder tags.Please help us in resolving this issue.Note: Sample project source code can be downloaded using this link https://drive.google.com/file/d/1VVJid-uq7102Yzw203OAdPHVqqjOlqED/view?usp=sharing
I’m facing a focus issue when viewing PDFs in Safari on macOS using the Adobe PDF Embed API Issue:When a PDF is opened in lightbox mode in Safari using Adobe PDF Embed API Pressing Command (⌘) + F opens the search/find bar However, the cursor does not focus on the search input Typing immediately after ⌘F does nothing I must manually click inside the search box or press Tab to start typing
This is Ghayoor Abbas. I am Google and Microsoft Certified Professional Consultant and Practitioner in Pakistan. I am Serving since Last 7 Years to my potential Clients, ranges from UK, US, KSA, UAE and Canada. I’m aboriginal of Hyderabad. I am aimed at to "Train The Youth" and enable them to grow their skills and improve their learning capacity towards Newly Emerging Paradigm of Digital Marketing. I have Dream to Train the Youth. If you want to Grow your skills, Enhance New Age Marketing Studies.
It kinda seems like Adobe has given up on supporting or keeping the Adobe PDF Embed API in good working condition. It “works” but it spits out tons of console errors lately. I just switched to Mozilla’s PDF.js. It requires a tiny bit more work to understand and set up but it’s actually faster, much more customizable, and you don’t have to rely on a 3rd party server. Your favorite AI coding agent can probably migrate you and tell you how to tweak it!
Hi, Everyone I am creating a 3rd party integration with Adobe and been asked to find a way to purchase licenses or create an order for it when requested, I have been looking for it and the closest I found is the UMAPI but is there something more specific on the Adobe Developer Console.
Hi,I’m try to customize the connection between Zoho CRM and Adobe Sign. When trying to do so, I got the following error message:error_description=Your product edition does not support account scopes&state=CRM-adobeesign.esignconnector-EU-31ffdd6b852a86117c141f835696b21178249234547fd00c5abf069ffef98ae8329754e99048d806708edf324b8226be-org20110992594&error=access_deniedDespite the fact I have subscribed to a “Creative Cloud Pro” formula.Can somebody help me on this ?Thanks in advance
I have a PDF File that contains multiple invoices. Some are a single page and some are multiple pages. I am using Power Automate to create a flow to break up the files quickly into individual invoice PDFs. I am using the Adobe Extract PDF Structure in a JSON Object premium API. After reading the PDF File, I am able to extract the Invoice number. However I also need the name of the entity. It appears in an Object from the Extract, but when I filter for the name, I am only catching 4 of the 6 out of the test file. I am unable to determine why I can successfully filter the other names. Of the 6 objects, the 4th and 6th are not filtering out, but I receive all the rest.
900bet Descubra um mundo de entretenimento com nossos slots e jogos eletrônicos! Venha se divertir e testar sua sorte! Informações Detalhadas: Endereço: R. Amazonas, 5045, Conj. 101 - Moema, Goiânia - GO, 27708-355, Brasil Telefone: (+55) 71 99423-9953 E-mail: 900bet-br.br.com@gmail.com #900bet #900bet_Slot #900bet_Game #CassinoOnline #Slots #JogosEletronicos #PlataformaOnline #JogoResponsavel Website :https://900bet-br.br.com
Hello All, I would really appreciate if someone can guide me how to quickly purchase Adobe PDF services APIs for organization. I have filled in Contact us page multiple times (and waiting since few months), however there is absolutely no response / callback from sales.Contact Sales | Adobe Acrobat Services - Adobe Developers Thanks in advance.
I am using the Adobe XMP Toolkit to add or modify XMP metadata in supported file formats. Currently, when XMP data is written and CloseFile() is called, the toolkit creates a temporary file and then replaces the original file with this temp file. From my understanding, this replacement is handled internally (possibly via the DeriveTemp API). Functionally, this works as expected. However, this approach is not ideal for my use case because when the original file is replaced the file attributes and permission are not same as previous. What I am looking for is a method or recommended approach to update or replace XMP metadata directly in the same file And also i found a method in TXMPFiles.incl_cpp. the method is: #if XMP_StaticBuild // ! Client XMP_IO objects can only be used in static builds. XMP_MethodIntro(TXMPFiles,bool):: OpenFile ( XMP_IO * clientIO, XMP_FileFormat format /* = kXMP_UnknownFile */, &n
I'm not able to either remove or get annotations in PDFs containing annotations with invalid modified/created dates, and I receive the error indexed here.I would like to at least remove the corrupted annotations and processed with the desired actions
We are encountering a few issues while using the @adobe/pdfservices-node-sdk for PDF compression. While the service functions correctly with random sample files, we are facing the following challenges with dataflow reports: Edit-Protected Files: We are unable to compress edit-protected PDFs. Even after providing the correct password to unlock the document, the service fails to provide a compressed file.Polling Timeouts: In these instances, the system does not return an error message. Instead, the request times out during the polling process for the compressed PDF, even after a significant wait.File Size: This issue persists with larger files as well which are not even protected, above 8MB.
I have an issue with the Adobe Acrobat Service API.The code is nearly identical to the official .net example given and works when I run the application in localhost. However on the server using the same client id and secret it fails with a message: ServiceApiException [message =Error response received for the request: The Gateway servers are up, but overloaded with requests. Try again later., requestId = cc6cf0d4-c2ed-4a42-ae71-4418bdd1489a, httpStatusCode = 503, errorCode = UNKNOWN] Please help. here is my code which works on localhost not server. I am an admin on a corporate account, not free tier. public static void RunDocxToPdfConvert(string pathToDocx, string pathToPDF) { try { Adobe.PDFServicesSDK.auth.ICredentials credentials = new ServicePrincipalCredentials( Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_ID"), Environment.GetEn
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.