Failed to execute web service tester page on beans 7.1 network using Glassfish server

I can’t open the web service tester page from the beans network, I get an error message (see the attached image).

But I can go to the tester page from the admin console with the same URL.

Is this any problem with creating WSDL? enter image description here

+5
source share
4 answers

I'm not quite sure what is going on here. Sometimes I get it. Undeploy, followed by a clean and build project, and relocation always tend to solve it for me.

+3
source

An answer has been sent to your question at this address.

Answer:

 <jvm-options>-Duser.language=tr-TR</jvm-options>
 <jvm-options>-Xrs</jvm-options>
 <jvm-options>-Dfile.encoding=UTF8</jvm-options>
 <jvm-options>-Dcom.sun.metro.soap.dump=true</jvm-options>
 <jvm-options>-Djavax.xml.accessExternalSchema=all</jvm-options>

"glassfish-4.0\glassfish\domains\domain1\config\domain.xml".

:

1-)

.
.
.
<jvm-options>-Dfelix.fileinstall.bundles.startTransient=true</jvm-options>
<jvm-options>-Dfelix.fileinstall.disableConfigSave=false</jvm-options>
<jvm-options>-XX:NewRatio=2</jvm-options>
<jvm-options>-Duser.language=tr-TR</jvm-options>
<jvm-options>-Xrs</jvm-options>
<jvm-options>-Dfile.encoding=UTF8</jvm-options>
<jvm-options>-Dcom.sun.metro.soap.dump=true</jvm-options>
<jvm-options>-Djavax.xml.accessExternalSchema=all</jvm-options>
.
.
.

2-)

.
.
.
<jvm-options>-Dfelix.fileinstall.bundles.startTransient=true</jvm-options>
<jvm-options>-Dfelix.fileinstall.disableConfigSave=false</jvm-options>
<jvm-options>-Duser.language=tr-TR</jvm-options>
<jvm-options>-Xrs</jvm-options>
<jvm-options>-Dfile.encoding=UTF8</jvm-options>
<jvm-options>-Dcom.sun.metro.soap.dump=true</jvm-options>
<jvm-options>-Djavax.xml.accessExternalSchema=all</jvm-options>
.
.
.
+1

If deploy and deploy does not work →

Go to tools->options.

Select a web browser, proxy server in the proxy server settings and click test connection.

If the connection OK, expand the web service and check. The tester page should open.

0
source

I had this problem and I fixed it.

  • cleaning and assembly project
  • deploy project
  • test web service

After opening the web service tester page.

0
source

All Articles