[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2008-10-23 Thread kr8m3r_78
I have a problem in that my EJB jar deploys a web service, which uses the 
@WebContext annotation, but the context root points to the same context root of 
one defined in my war, both of which are packaged inside an EAR. If I deploy 
the EAR everything defined in the web.xml inside the war is accessible, but 
accessing the web service using the same context gets a 404 error. 

For example, my webservice:


  | @WebContext(contextRoot = /testWeb, urlPattern = /SupplierAccessPort, 
authMethod = BASIC, transportGuarantee = NONE, secureWSDLAccess = false)
  | 

In my jboss-web.xml (inside the war):


  |  jboss-web  
  |   security-domainjava:/jaas/aipDBCheck/security-domain  
  |   context-root/testWeb/context-root
  |  /jboss-web
  | 

http://localhost:8080/testWeb/index.htm is found (as it is inside my war)
http://localhost:8080/testWeb/SupplierAccessPort gets a 404.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4184078#4184078

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4184078
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2008-10-23 Thread PeterJ
kr8m3r_78, please stop spamming a multitude of topics with the same question!!! 
You need ask only once, asking multiple times simply irritates the other 
readers of the forums.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4184252#4184252

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4184252
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2008-10-23 Thread kr8m3r_78
This isn't spam, and there wasnt a multitude of posts. I posted the same 
question to two different threads. I didnt realize they get pushed to the top 
of the list. I was expecting my reply to be flagged to the person who posted 
the original message. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4184314#4184314

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4184314
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-09-07 Thread [EMAIL PROTECTED]
Yes, @WebContext is the way to. Unfortunately there is no Xml equivalent at the 
moment. You'll find that in the next release.

With 2.0.1 the class resides in:

jbossws-spi.jar
org/jboss/wsf/spi/annotation/WebContext.class

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4082261#4082261

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4082261
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-09-04 Thread rroles
Sorry I am so dense, but where IS WebContext, I would like to try and
use it to solve an issue I am having with multiple Context in deploying 
multiple Web Services, and cannot find it in any Web Services JBOSS jar 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4080913#4080913

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4080913
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-07-29 Thread wpfeiffe
Can anyone provide the EJB 2.1 equivalent to:

 @WebContext(contextRoot=/beans)

I've seen in the FAQ this bit of text:

anonymous wrote : Use the explicit context root from webservices/context-root
  | 
  | Can be set in jboss.xml and is only relevant for EJB endpoints. 

Can anyone clarify which file the webservices/context-root is referring to and 
the exact syntax?


Any help would be appreciated. 

Thanks,

Bill Pfeiffer

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4068546#4068546

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4068546
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-24 Thread avbentem
Even when deploying only a single web service, this error may also be caused by 
some left-overs after refactoring without properly cleaning up.

I changed the name of my service using Eclipse, which left the old compiled 
classes in various exploded archive folders. Those were then still copied to, 
and loaded by, JBoss. This resulted in multiple services (same implementation 
with different class names) within the same application, and thus yielding the 
org.jboss.ws.WSException: Multiple context root not supported error. 

My stupid mistake, of course...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4048197#4048197

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4048197
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-22 Thread avbentem
Rick, can you confirm that your question in JIRA JBWS-1622 is solved (for you, 
but maybe not for the reporter of that issue) by Heiko's replies?

And for the archives: @WebContext is org.jboss.ws.annotation.WebContext as 
found in jbossws-core.jar

Arjan.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047595#4047595

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047595
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-20 Thread genady_yadata
Heiko,
Is there an XML syntax that can override the WebContext or we must use the 
annotation?

Thanks,
Genady

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047054#4047054

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047054
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-18 Thread [EMAIL PROTECTED]
Regular war's are not touched by this probelm. Just make sure all EJB's within 
a jar point to the same web context thriugh something like:

anonymous wrote : 
  | @WebContext(contextRoot=/myEJBServices) 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4046794#4046794

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4046794
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-16 Thread [EMAIL PROTECTED]
Thanks for the valuable discussion. I will try to explain what changes between 
1.2.0 and 1.2.1 are causing the problems you encounter.

anonymous wrote : 
  | 1.) For EJB3 deployments we need to create a web app for HTTP invocations 
(obviously)
  | 
  | 2.) EJB's don't contain web context information, so we derive it 
automagically.
  | 
  | 3.) Until 1.2.0 the context name was derived from the ear/jar name.
  | 
  | 4.) This changed with 1.2.1 to an algorithm that derives it from the bean 
class name
  | 

So what's happening when you deploy a EJB3 jar that contains multiple beans? 
The default algorithm derives different context names for each bean in this 
deployment, which in turn we cannot use to setup the HTTP endpoint and thus 
throw an exception.

This also explains why the following did work:

anonymous wrote : 
  | @WebContext(contextRoot=/beans) 
  | 

Unfortunately this is left out in the specs and thus has been changed many 
times. 
Until we a have a definite solution i suggest you refer to the @WebContext 
annotation, even though it's not the most elegant solution. 

--
Heiko

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4046101#4046101

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4046101
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-16 Thread rickcr
Thanks Heiko for the information. My only question now (and pardon if this is a 
very 'newbie' question) but what would I set the web context to? In other 
words, do I need to make sure the various webapp wars that might be in the ear 
all have web.xml definitions that point to the ejbs so that I can create a 
context for the ejbs through the web.xml? If so, this seems like a lot of extra 
work.

I guess I'm just confused how I know what @WebContext to use for the ejbs? I 
could have several wars that all have their own web context. I would think the 
ejb context would be independent of those contexts, but just giving it an 
arbitrary context doesn't help in regard to having the wsdl being located.

If someone could provide a simple example of what to set this @WebContext to 
I'd appreciate. I'm sure I'm missing something simple.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4046133#4046133

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4046133
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-15 Thread genady_yadata
Our jar is named beans.jar and adding 

@WebContext(contextRoot=/beans)

to all of the classes seems to work.

I also can't understand what caused them to change the behavior in 1.2.1GA. 

Does anybody know how to specify the context root in an XML file?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4045721#4045721

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045721
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-15 Thread rickcr
Also, my webservices jar is locate din an ear file if that matters at all.

Secondly, I'm not sure why I would need to use @WebContext  in order to get 
this to work in 1.2.1.GA. All the standard examples I see do not mentioning 
using @WebContext - which if I understand correctly is not even part of the 
EJB3 Spec but is a JBoss specific annotation.

If you check out the webservice example for jboss provided after downloading 
the examples here 
http://sourceforge.net/project/showfiles.php?group_id=22866package_id=132063
(unzip and then in the docs/tutorials there is a webservice example),

You'll see there example does not use the @WebContext notation.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4045816#4045816

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045816
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-14 Thread rickcr
I guess this is a bug since if I use jbossws-1.2.0.SP1 I do not get this error. 
The jira bug on this is still open so I guess I'll just use 1.2.0 until it is 
resolved.

If this isn't a bug, though, someone please let me know:)

Thanks.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4045598#4045598

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045598
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-14 Thread PeterJ
If I remember correctly, the context root comes from the jar file name. Are 
both of your jar files named the same? 

It would appear that the standards define how the default context root is 
defined, but always leave it up to the implementation to specify alternate 
context root (hence the context-root entry in the jboss-web.xml file used in 
war files).

Of course, I could always be wrong.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4045635#4045635

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045635
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: If I deploy more than one webservice I get

2007-05-14 Thread rickcr
The two webservices are in the same package and packaged in the same jar. It 
seems odd that things work fine in 1.2.0.SP1 but not 1.2.1.GA. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4045639#4045639

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045639
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user