Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to web service tester page in net beans 7.1 using glassfish server

Unable to open my web service tester page from net beans, i am getting a error (see the attached image).

But i am able to go to the tester page from the admin console with the same URL.

Is that any problem with creation of WSDL ?enter image description here

like image 687
chandramohan Avatar asked Oct 05 '22 09:10

chandramohan


2 Answers

I am not entirely sure what is going on here. I occasionally get this as well. An undeploy followed by a clean and build of the project and a redeploy always tend to solve it for me.

like image 111
Glenn Sallis Avatar answered Oct 07 '22 04:10

Glenn Sallis


Your question has been answered 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>

Add the above code "glassfish-4.0 \ glassfish \ domains \ domain1 \ config \ domain.xml" directory.

Ex:

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>
.
.
.
like image 34
Özgür Akıncı Avatar answered Oct 07 '22 04:10

Özgür Akıncı