[JBoss-user] [JBossWS] - Re: RPC/Encoded support

2006-05-24 Thread forkbomb
I understand that the Basic Profile outlaws RPC/Encoded, and why. None of our 
new web services will be RPC/Encoded. The fact is that we have production 
clients that use RPC/Encoded. Unless the Basic Profile can rewrite their code, 
I'm pretty much stuck. Jason, just because J2EE 1.4 requires you to support the 
Basic Profile doesn't mean that it "effectively removes the JAX-RPC 1.1 
requirement." You have to support both. That said, if I can deploy RPC/Encoded 
web services on JBossWS, that's great. I don't mind if I have to hand write the 
descriptors. I basically need a way to deploy the RPC/Encoded and literal 
versions at the same time so that clients have a migration path.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946242#3946242

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3946242


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - RPC/Encoded support

2006-05-23 Thread forkbomb
I understand that JBossWS is now installed as the default JAX-RPC stack in 
JBoss 4.0.4. I have seen several postings that RPC/Encoded web services are not 
supported in JBossWS. According to the JAX-RPC 1.1 spec: anonymous wrote : The 
JAX-RPC specification requires support for both encoded and literal 
representations of a SOAP message representing an RPC call or response. How can 
you replace the default JAX-RPC stack with one that removes functionality 
required by the specification? We both publish and consume RPC/Encoded web 
services with 3rd parties, and are unable to upgrade to JBoss 4.0.4, and there 
is basically no migration path. Our only option is to downgrade to ws4ee. I 
honestly don't care about the Basic Profile, which is not a J2EE spec; if you 
want to claim to be a J2EE application server, you need to support the J2EE 
specification. Are there any plans to fully support the JAX-RPC spec in JBossWS?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945649#3945649

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945649


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Unexpected NoClassDefFoundError when an MBean depends on

2006-02-13 Thread forkbomb
Scott,
Thanks for the quick reply, but I'm not quite sure I understand your 
answer. Perhaps this isn't the proper board for this question, because this is 
really a classloading question; I just happened to run into the problem when 
deploying an MBean. 

My goal is to have only one copy of every class anywhere in the server because 
we are using the Unified ClassLoader with class sharing among all applications. 
Having 2 copies of a class has caused problems in the past. For example, 

Class A in package com.example has protected method callMe().
Class B, also in package com.example tries to call A's callMe().
The WEB-INF/lib directory of a war file contains  a jar that contains both A 
and B, and a utility jar contained in a separate ear also contain A and B.
Class A and class B happen to be loaded by different classloaders (one for the 
ear, one for the war).
Result is an IllegalAccessError.

Our solution is to use the following rules for deployment:


  | * Only one deployment unit should contain any class.
  | * All classes in a particular package should always be included in the same 
deployment unit.
  | 

Now, I have an MBean that depends on an EJB. The EJB's local interface is 
already being deployed in a separate deployment unit. Since the SAR that 
contains the MBean will not always be deployed with the application, I don't 
want to include the local interface ONLY in the SAR. 

Are you saying it's impossible to make the MBean depend on the EJB without 
including the classes in the SAR? What is the recommended approach for 
deployment in this situation, given that we are sharing classes across 
applications? Putting the classes in the lib directory for my configuration is 
not an option, since I would like hoy deployment to work. Thanks,

--Steven

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923290#3923290

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923290


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Unexpected NoClassDefFoundError when an MBean depends on an

2006-02-10 Thread forkbomb
I have an MBean contained in a SAR that depends on a session bean in a separate 
EJB jar file, and I have included the appropriate depends element in 
jboss-service.xml. I would like my SAR file to contain ONLY the MBean, but I 
get a NoClassDefFoundError for my session bean's local interface from 
ServiceConfigurator.install. This is surprising to me, since I would assume 
that the class wouldn't need to be loaded until the start method on my MBean is 
called, presumably after my EJB jar file has been deployed, as there is no 
static initialization that requires the session bean in the MBean. The MBean 
also uses a lot of other utility classes (which are also contained in the EJB 
jar file that it depends on), but I don't have to include those in the SAR file 
in order to get it to deploy properly. After I include the EJB local interface, 
I can see that all the proper dependency checking is happening in the JBoss 
debug output on startup and the deployment succeeds. Why do I need to include 
the EJB's local interface? This is all on 4.0.2.

--Steven

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923010#3923010

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923010


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Can a JBoss4 appserver be a client to a JBoss3 appserver

2005-05-23 Thread forkbomb
"[EMAIL PROTECTED]" wrote : The 4.0.x/3.2.x interop issues won't be fixed until 
the 4.0.2/3.2.8 release. 

Scott, I see that the slated release date for JBoss 3.2.8 is on May 31, but I 
don't see the a line item for the interop issues in the tentative release 
notes. Is this still going to be fixed in 3.2.8?  

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3878781#3878781

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3878781


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Can a JBoss4 appserver be a client to a JBoss3 appserver?

2005-04-14 Thread forkbomb
We have a multitiered architecture with a business tier consisting mostly of 
stateless session beans running JBoss 3.2.2, and several web applications 
running various JBoss 3.2.x versions making RMI calls to the business tier. We 
would like to be able to upgrade some of these client web applications to use 
JBoss4 (without upgrading the business tier). There seem to at least one class 
that has incompatibly changed between JBoss 3.2.x and JBoss 4.0.2RC1. Here's 
the error we're getting in the webapp:


  | java.io.InvalidClassException: org.jboss.util.id.GUID; local class 
incompatible: stream classdesc serialVersionUID = 6926421946503004889, local 
class serialVersionUID = 3289509836244263718
  | at 
java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:463)
  | at 
java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1521)
  | at 
java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1435)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1626)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at 
org.jboss.invocation.InvokerInterceptor.readExternal(InvokerInterceptor.java:254)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:66)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:66)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:66)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at 
org.jboss.proxy.ClientContainer.readExternal(ClientContainer.java:142)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1845)
  | at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1769)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1646)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
  | at java.rmi.MarshalledObject.get(MarshalledObject.java:135)
  | at 
org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:51)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:637)
  | ... 39 more
  | 

Is it even possible for a JBoss4 app to talk to a JBoss3 app over RMI? 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873913#3873913

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873913


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] [HTTPD, Servlets & JSP] - Re: crossContext does not work on jboss4.02-rc1-tomcat-5.5.8

2005-04-02 Thread forkbomb
Thanks for the workaround, that worked for me as well. It seems as though you 
only need the context.xml in the WEB-INF of the webapp you're getting the 
ServletContext from, not the one to which you're going to. For example, if I am 
in webapp context1 trying to forward to context2 with 
getServletContext().getContext("/context2").getRequestDispatcher("/myServletPath"),
 you only need the context.xml in the war file for context1. I found that a 
little surprising... 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872361#3872361

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872361


---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: deployment problems

2005-03-31 Thread forkbomb
If you're using ejbdoclet to generate your deployment descriptors, make sure 
you are using ejbspec="2.1" instead of ejbspec="2.0"

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872240#3872240

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872240


---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Authenticating Webservice as Web Session

2005-02-01 Thread forkbomb
Instead of passing the session ID, you can configure the security domain to 
have the same user names and passwords as your web users, configure your web 
services to use basic auth, then pass the username and password as the HTTP 
headers. The wiki link that Thomas posted above explains it all. The trick is 
just to make sure that the usernames/passwords in your web tier match up with 
the usernames/passwords in your EJB tier.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864687#3864687

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864687


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Help! - Asix 1.2 Installation problem

2005-02-01 Thread forkbomb
If you want to use Axis in JBoss 4, you need to remove jboss-ws4ee.sar from 
your deploy directory. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864665#3864665

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864665


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - XML-> Java naming in jaxrpc mapping file is not honored

2005-01-31 Thread forkbomb
The mapping from xml names to Java names in the jaxrpc mapping file is not 
honored. I have created an issue in the JIRA, but I wanted to post it here to 
let everyone know that this isn't working.


http://jira.jboss.com/jira/browse/JBWS-83

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864394#3864394

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864394


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: XML Payload Best Practice

2005-01-25 Thread forkbomb
"[EMAIL PROTECTED]" wrote : The upcomming jboss-4.0.1 release maps xsd:anyType 
to org.w3c.dom.Element which makes it easier to exchange arbitary XML 
fragments. This however goes beyond the JAXRPC spec and is therefore not 
portable and maybe not interoperable.
  | 

Thomas, did this not make it into the final release of 4.0.1? I've tried to map 
xsd:anyType to Element, but I'm not having any luck. I've looked through the 
source and can't see anywhere where this mapping might be taking place, though 
I might be looking in the wrong place...what serializer/deserializer is it 
supposed to use?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863635#3863635

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863635


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Unable to deploy with a custom container configuration

2005-01-22 Thread forkbomb
Using JBoss 4.0.1, I get an error when attempting to deploy with a custom 
container configuration:


  | org.jboss.deployment.DeploymentException: Failed to find 
InvokerProxyBindingMetaData for: 'session-webservice-invoker'. Check the 
invoker-proxy-binding-name to invoker-proxy-binding/name mappings in jboss.xml
  | 

standardjboss.xml doesn't even define a session-webservice-invoker invoker 
proxy binding... The only thing I'm trying to do in my custom container 
configuration is add an interceptor. Here's the relevant portion from jboss.xml:


  | 
  | 
  | My Custom Stateless SessionBean
  | 
  | my.custom.Interceptor
  | 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor
  | org.jboss.ejb.plugins.LogInterceptor
  | 
org.jboss.ejb.plugins.SecurityInterceptor
  | 
  | org.jboss.ejb.plugins.TxInterceptorCMT
  | org.jboss.ejb.plugins.CallValidationInterceptor
  | org.jboss.ejb.plugins.MetricsInterceptor
  | org.jboss.webservice.server.ServiceEndpointInterceptor
  | org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor
  | 
  | org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor
  | org.jboss.ejb.plugins.TxInterceptorBMT
  | org.jboss.ejb.plugins.CallValidationInterceptor
  | org.jboss.ejb.plugins.MetricsInterceptor
  | org.jboss.webservice.server.ServiceEndpointInterceptor
  | 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor
  | 
  | 
  | 
  | 

This is just a cut and paste of the container interceptors from 
standardjboss.xml with my own interceptor added. All session beans will deploy 
properly with this configuration exception the service endpoints. The service 
endpoints will deploy properly with the standard container configuration. I 
have not changed standardjboss.xml in any way. Any ideas on why JBoss is 
looking for session-webservice-invoker?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863237#3863237

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863237


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-21 Thread forkbomb
Ahh, so it does. At first I thought it was only printing the response, and not 
the request. I must have been blinded by the reams of other output :-) Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863117#3863117

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863117


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: port-component-uri limited to single directory web conte

2005-01-21 Thread forkbomb

  | java.lang.IllegalAccessException: /mycontext/services/MyWebService
  | at 
org.jboss.webservice.server.ServiceEndpointServlet.assertServiceAccess(ServiceEndpointServlet.java:69)
  | at 
org.jboss.webservice.server.ServiceEndpointServlet.doGet(ServiceEndpointServlet.java:93)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
  | at 
org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:370)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | at 
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:66)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:153)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:54)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
  | at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
  | at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
  | at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
  | at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
  | at 
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
  | at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
  | at 
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
  | at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
  | at java.lang.Thread.run(Thread.java:534)
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863111#3863111

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863111


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread forkbomb
Thomas: Setting org.apache.axis to DEBUG doesn't print the messages that are 
being exchanged (incredible!).

nehring: Like you say, sniffing isn't very convenient, since there is other 
HTTP traffic to contend with. 

I noticed that there is some commented out SOAPMonitor stuff in the config 
files. Has anyone gotten the SOAPMonitor applet working in JBoss 4?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863013#3863013

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863013


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - port-component-uri limited to single directory web context?

2005-01-20 Thread forkbomb
In JBoss 3, my web services were deployed in a subdirectory under a web 
context, e.g.

http://myserver/mycontext/services/MyWebService

In Jboss 4, however, I am unable to specify 

/mycontext/services/MyWebService 

as the port-component-uri. Attempting it causes an IllegalArgumentException.

/mycontext/MyWebService

works, however. Is this a bug, or will adding a directory to the web context 
never be supported? 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863011#3863011

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863011


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - ws4ee-deployment.xml required for RPC/Encoded arrays?

2005-01-20 Thread forkbomb
I've gotten my RPC/Encoded web services working by specifying the array 
serializers/deserializers in ws4ee-deployment.xml. Is there any way to get 
JBoss to generate these type mappings using the jaxrpc mapping XML file, or is 
ws4ee-deployment.xml required for mapping RPC/Encoded arrays? 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863010#3863010

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863010


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Logging SOAP requests and responses

2005-01-20 Thread forkbomb
tcpmon is terrible. I don't want to have to change the port my webservice is 
deployed to and run an external application just to get some basic log output. 
What if I need to see what messages are exchanged in a production deployment?

It turns out that the LogHander does work, but only if a fault is not returned; 
a fault causes nothing to be logged. That's a pretty woeful implementation...

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862897#3862897

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862897


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Logging SOAP requests and responses

2005-01-19 Thread forkbomb
What's the easiest way to see what SOAP messages are being exhanged in JBoss 
4.0.1? I tried adding an org.apache.axis.handlers.LogHandler to the request and 
response flows in the global configurations of axis-client-config.xml and 
axis-server-config.xml, but no dice.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862812#3862812

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862812


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user