• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Issues with service factory

New Here ,
Feb 29, 2020 Feb 29, 2020

Copy link to clipboard

Copied

Hi Guys, I am trying to use 

 

factory = CreateObject("java", "coldfusion.server.ServiceFactory");
writedump(factory); abort;

 

but it is showing an empty window, doing nothing, am i missing any step here 

TOPICS
Getting started , Server administration

Views

643

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 01, 2020 Mar 01, 2020

Run it as a script.

<cfscript>
factory = CreateObject("java", "coldfusion.server.ServiceFactory");
writedump(factory); abort;
</cfscript>

 

When I do, I get the following result:

service_factory_dump.png

Votes

Translate

Translate
Community Expert ,
Mar 01, 2020 Mar 01, 2020

Copy link to clipboard

Copied

LATEST

Run it as a script.

<cfscript>
factory = CreateObject("java", "coldfusion.server.ServiceFactory");
writedump(factory); abort;
</cfscript>

 

When I do, I get the following result:

service_factory_dump.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation