Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was trying to set up context-root element for my webservice in jboss 5.0 and it is ignoring it during deployment. Here is the sample xml which I am using, all i need is just context-root

    <?xml version="1.0" encoding="UTF-8"?>
<jboss version="3.0" 
    xmlns="http://www.jboss.com/xml/ns/javaee"
    xmlns:javaee="http://java.sun.com/xml/ns/javaee" 
    xmlns:xml="http://www.w3.org/XML/1998/namespace"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss_5_0.xsd">
    <webservices>
        <context-root>/MyWebService</context-root>
    </webservices>
</jboss>
share|improve this question

1 Answer

It might be beacuse of attributes of your tag. Try w/o it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.