[JBossWS] - Re: Issue with .NET ws clients
by maeste
"heiko.braun(a)jboss.com" wrote : Looking at it more carefully doesn't reveal anything at JBossWS processing level. That piece of code prepares the SOAPMessageContext upon receiving the HTTPRequest InputStream.
|
Yes, it seems the HTTPRequest InputStream is already closed when jbossws try to use it. One more thing to clarify the situation: it happens with unpredictable frequency...it seems a problem with server overload or concurrency (just a smell of them, I'm not sure, but a lot of tests in test environment can't reproduce error)
"heiko.braun(a)jboss.com" wrote :
| My 2 cents:
| In this case i'd say that the servlet engine probably has written something back to .NET client without notice.
|
and closes the connection.
"heiko.braun(a)jboss.com" wrote :
| Do you have any HTTP logs available at the client side?
|
No of course.........it's a .NET client :)
"heiko.braun(a)jboss.com" wrote :
| A look at the jboss-tomcat logs might help as well.
Some classes suspected? We can't enable all jboss-tomcat logs in production environment processing many requests per second.
A little OT: please take a look to my last post in Design Forum ;)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993094#3993094
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993094
19 years, 4 months
[JBoss Seam] - Problem with selectItems taglib
by dave.rogers
I am using the taglib
xmlns:si="http://jboss.com/products/seam/selectitems/taglib"
as follows:
<h:selectOneMenu id="catalogue" value="#{currentItem.catalogue}">
| <si:selectItems value="#{catalogues}" var="catalogue" label="#{catalogue.name}"/>
| </h:selectOneMenu>
with the following in my bean:
@Factory("catalogues")
| public List<Catalogue> buildCatalogues() {
| List<Catalogue> catalogues =
| em.createQuery("select c from Catalogue c")
| .getResultList();
| log.info("Catalogues list has " + catalogues.size() + " entries");
| return catalogues;
| }
According to my log "14:24:13,580 INFO [ItemManager] Catalogues list has 96 entries". But the following error is thrown:
Caused by: java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key org.jboss.seam.selectitems.entityConverter.notAnEntity halvor.pojo.Catalogue_$$_javassist_44
Now I don't really care about the missing resource, for now, what I'm concerned about is the underlying error. (notAnEntity). This implies that my pojo is not an entity when is it (is has the @Entity tag, an @Id tag on the id etc..).
Why would it still think that this is not an entity?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993085#3993085
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993085
19 years, 4 months