Jump to content

Dave Craggs

Members
  • Content Count

    94
  • Joined

  • Last visited

Everything posted by Dave Craggs

  1. Dave Craggs

    MSGraph and OAuth

    Hi, I am struggling connecting to MSGraph and getting a working token back. If I put this in I do not get a code back. If I change it to token I get a token, but that does not give me access to MSGraph. I get ME - {"error":{"code":"InvalidAuthenticationToken","message":"Access token validation failure. Invalid audience.", I was thinking maybe a need to get a code first and then ask for the token. I am setting the scope to : https://graph.microsoft.com/.default Anyone done this? I have looked at GMailAuthDemo. https://github.com/geoffsmith82/GmailAuthSMTP/blob/master/GMailAuthDemo.dproj Anyone done this? Dave Craggs
  2. Dave Craggs

    MSGraph and OAuth

    The issue I am having is getting back a token with the wrong aud. Getting one fop Azure AD Graph (00000002-0000-0000-c000-000000000000) rather than Microsoft Graph.(00000003-0000-0000-c000-000000000000)
  3. Dave Craggs

    MSGraph and OAuth

    Thanks for the reply. Have looked at some of those links already. I think the issue is I am not getting the AuthCode
  4. Dave Craggs

    Access violation installing a component

    I have a component (bpl) I am trying to install. I have installed this successfully on Delphi 12 on my notebook but on my desktop I get It builds fine but when you select install you get the access violation How can you debug this sort of thing? Dave Craggs
  5. Dave Craggs

    Access violation installing a component

    Libsuffix auto is the way to go., Thanks
  6. Dave Craggs

    Access violation installing a component

    Yes - bpl conflict. These bpls are also stored in SYSWOW64. Conflicting with a previous version of Delphi. I need to rename the BPL files so they are unique to Delphi12 I think.
  7. Dave Craggs

    Access violation installing a component

    The newer version of the dependency walker worked fine, no issues found. I tried copying the bpl files from the working system and still had the same problem. I wonder if there is a BPL conflict?
  8. Dave Craggs

    Access violation installing a component

    Is that this? https://dependencywalker.com/ Looks quite old!
  9. Dave Craggs

    Access violation installing a component

    This is strange Got these from the event log This is Delphi 12.1 Will do a more complete comparison between the two installs.
  10. Dave Craggs

    Access violation installing a component

    This also describes the process https://stackoverflow.com/questions/62969608/debugging-a-package-during-component-installation But both instances of Delphi just disappear!
  11. Dave Craggs

    Access violation installing a component

    Did that - when you say open up the package do you mean open up the project again and run install? Did that and both instances of d12 crashed. I do have the source.
  12. HI - is there an integration update for D12 yet? Thanks Dave Craggs
  13. Dave Craggs

    Update issue

    Just tried updating Delphi 11.3 and now Delphi will not start. Just sticks ion the background with 0% CPU Any ideas on what I can do?
  14. Dave Craggs

    Update issue

    I would do but my dev system is not a VM. I do have a backup DEV VM though. I did use VMs all the time, but it was not so good when doing mobile development.
  15. Dave Craggs

    Update issue

    I pruned the path. trying to reinstall getit packages but JEDI isn't playing ball and now my 10.3 install is not working. I had heard about D12 but I never go to a new release until at least the first service pack!
  16. Dave Craggs

    Update issue

    Running now but ALL my settings have gone. This is a REAL pain.
  17. Dave Craggs

    Update issue

    Getting further now Maybe path issues
  18. Dave Craggs

    Update issue

    The install is not completing. This screen gets to the end, and then nothing after that.
  19. Dave Craggs

    Update issue

    Windows 10 Enterprise. Disabling security and Firewall made no difference. When installing I did keep settings. This is very upsetting. All I wanted to do was upgrade my Delphi 11.3, why I have to uninstall is beyond me. I have lost all work time today.
  20. Dave Craggs

    Update issue

    Found these in the event log
  21. Dave Craggs

    Update issue

    Tried running both the install and Delphi as administrator with no joy.
  22. Dave Craggs

    Issue with CTRL-A

    I am having a strange problem with CTRL-A and edit fields. When the application is built from the IDE it CTL_A (select all) works. But it doesn't on my deployed application. This is built using FinalBuilder. Any ideas folks? Dave Craggs
  23. Dave Craggs

    Issue with CTRL-A

    I set the version of the application when I build using FinalBuilder. Would I need to edit the manifest during this process with the updated version? If so which is the best way to do this? There is this
  24. Dave Craggs

    Issue with CTRL-A

    This is what I am using now <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/> </dependentAssembly> </dependency> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="asInvoker" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <application> <!--The ID below indicates application support for Windows Vista --> <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!--The ID below indicates application support for Windows 7 --> <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!--The ID below indicates application support for Windows 8 --> <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> <!--The ID below indicates application support for Windows 8.1 --> <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> <!--The ID below indicates application support for Windows 10 & 11 --> <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> </application> </compatibility> <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <dpiAware>True/PM</dpiAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
×