Doris Wagner

Greenhorn
+ Follow
since Oct 27, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Doris Wagner

thank you for your post, but i think that's not the problem ... i deleted every web service that i had deployed ... and only the standard pre-installed web-services should be available.

but there's always the http 500 error

no idea (
20 years ago
hello everyone!

everything worked fine ... i could deploy web services and run them via clients etc. ... but today, i got the following problem:

i run the jboss-server as usually successfully, then i can open the axis-page http://localhost:8080/axis/index.html ... but when i click on "view the list of deployed Web Services" ... i get the 500 internal servererror!

but everything worked for so long!

does anyone of you have an idea what the problem is now?

thank you!!!
20 years ago
good evening!

I'm using eclipse, jboss and axis!

i got the following problem and really don't have any idea who to solve it

i've got a ejb, named SearchBean ... and i want to make a web service ... so i wrote a deploy.wsdd:

<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">

<service name ="MySearchService3" provider="java:EJB">
<parameter name="beanJndiName"
value="Search"/>

<parameter name="homeInterfaceName" value="at.ejb.shop.SearchLocalHome"/>
<parameter name="remoteInterfaceName" value="at.ejb.shop.SearchLocal"/>
<parameter name="jndiURL" value="jnp://localhost:1099"/>
<parameter name="jndiContextClass" value="org.jnp.interfaces.NamingContextFactory"/>
<parameter name="allowedMethods" value="*"/>
<parameter name="scope" value="application"/>

</service>
</deployment>

when i deploy it, i see it under web services ... but - and that's my big problem: i can't see the methods, that I want to invoke!?

what should i do?
[ November 17, 2004: Message edited by: Doris Wagner ]
20 years ago
hi guys!

I'm using JBoss3.2.6 and Eclipse with Lomboz

with these features, it is said to be very simple to gerenerate a soap client.

I've chosen "Lomboz SOAP Client wizard", filled in the wsdl-file and package ... but if i press the button "finish" I'll only get the error message: "could not generate soap client" .. that's all.

what have I done wrong?

i hope you can help me!
20 years ago

Originally posted by Balaji Loganathan:
Check the classpath as described here



thank you for this link, it's quite usefull ...

I've changed my classpath ... and now, I get the following error message:

D:\jboss\server\default\deploy\webapps>
java -cp %AXISCLASSPATH% org.apache.axis.client.AdminClient -1 http://localhost:8080/axis/services/AdminService SimpleDVDStore.wsdd

Processing file http://localhost:8080/axis/services/AdminService
Exception:: java.io.FileNotFoundException: http:\localhost:8080\axis\services\AdminService (Die Syntax f�r den Dateinamen, Verzeichnisnamen oder die Datentr�gerbezeichnung ist falsch)



in which directory should i save the wsdd-file?
I've got it in this directory: D:\jboss\server\default\deploy\webapps> ... that the path, where I try to run the AdminClient as you see above

... perhaps you can help me

thanks!
20 years ago
Hello everyone!

I hope you can help me, because I'm sitting the whole day in front of my pc ... but I've no idea, what the fault ....

okay, I'm using JBoss3.2.6 and Axis1_1 ...

D:\jboss\server\default\deploy\webapps\axis.war ... in this directory, I saved my SimpleDVDStore.wsdd-document ...
D:\jboss\server\default\deploy\webapps\axis.war\WEB-INF\classes ... and here my compiled SimpleDVDStore.class

what happens:

D:\jboss\server\default\deploy\webapps\axis.war> java -cp $CLASSPATH org.apache.axis.client.AdminClient -1 http://localhost:8080/axis/servlet/AxisServlet SimpleDVDStore.wsdd
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/axis/client/AdminClient


Can anyone help me?

Thanks a lot
20 years ago