[jboss-user] [JBoss Web Services Users] - Re: Unwanted warning

2009-09-04 Thread kagey
I've noticed the warning goes away when using jbossws-3.0.1 You could change your log4j settings to only report errors for org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4253566#4253566 Reply to the post : http

[jboss-user] [JBoss Web Services Users] - Re: disable client chunking in jbossws-3.0.1-native-2.0.4.GA

2009-09-02 Thread kagey
True, but I don't what to change configuration for other clients running who could be using the same config. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4253168#4253168 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss Web Services Users] - Re: JAX-WS Web Service Authentication (NTLM) against a MS CR

2009-09-02 Thread kagey
I fixed my problem by disabling chunking by reverting the client to a different configuration, you could try: | CrmTaskServiceSoap port = (new CrmTaskService(url, new QName("http://schemas.microsoft.com/crm/2007/WebServices";, "CrmService"))) | .getCrmTaskServiceSoap(); | | ... |

[jboss-user] [JBoss Web Services Users] - Re: disable client chunking in jbossws-3.0.1-native-2.0.4.GA

2009-09-02 Thread kagey
found the solution: revert to old http 1.0 client config: | ((StubExt) pms).setConfigName("HTTP 1.0 Client"); | client configurations found in jboss/server/default/deploy/jbossws.sar/META-INF/standard-jaxws-client-config.xml View the original post : http://www.jboss.org/index.html?module=b

[jboss-user] [JBoss Web Services Users] - Re: JAX-WS Web Service Authentication (NTLM) against a MS CR

2009-09-02 Thread kagey
I working with NTLM in a different scenario, and it seems that NTLM doesn't work when chunking is used by the client. Do a sniff on your traffic to see what is going on. If you have the appropriate jbossws version you can turn chunking off (http://www.jboss.org/community/wiki/JBossWS-NativeUser

[jboss-user] [JBoss Web Services Users] - Re: Cannot change the context root for web service

2009-09-02 Thread kagey
Try deploying in separate jars, from my experience you can't have two different context roots in the same jar. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4253148#4253148 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Web Services Users] - disable client chunking in jbossws-3.0.1-native-2.0.4.GA

2009-09-02 Thread kagey
| Transfer-Encoding: chunked | I see a newer version of jbossws (3.2...) has a chunking feature (http://www.jboss.org/community/wiki/JBossWS-NativeUserGuide#Chunked_encoding_setup). Is it possible to disable client chunking on jbossws-3.0.1-native-2.0.4.GA? Thanks Kagey View the original po

[jboss-user] [Microcontainer] - Re: property of type org.w3c.dom.Element

2006-12-18 Thread kagey
Caused by: org.jboss.xb.binding.JBossXBRuntimeException: {urn:jboss:bean-deployer:2.0}plainValueType type of element {urn:jboss:bean-deployer:2.0}value should be complex and contain {urn:jboss:bean-deployer:2.0}config as a child element. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [Microcontainer] - property of type org.w3c.dom.Element

2006-12-07 Thread kagey
Hey All, When i have a bean that has a property/attribute of type Element, if i include the raw xml under the < property...> ... < /property> tags the mc thinks my Element xml is part of the bean-deployer_1_0.xsd and errors out | Caused by: org.jboss.xb.binding.JBossXBRuntimeException: {urn

[jboss-user] [JBossCache] - Re: how to use with EJB3Standalone container inside eclipse

2006-12-07 Thread kagey
Also, i forgot to mention that a bare-bones deployment works, something like: | | | | | | | PESSIMISTIC | REPEATABLE_READ | LOCAL | 5000 | 1 | 15000 | | | will launch:

[jboss-user] [JBossCache] - Re: how to use with EJB3Standalone container inside eclipse

2006-12-07 Thread kagey
ok, here is my deployment descriptor: | | http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd" | xmlns="urn:jboss:bean-deployer:2.0"> | | | | | | |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - calendar timezones and database discrepancies

2006-12-06 Thread kagey
Hey All, I am using EJB3 with hibernate on jboss 4.0.5. I'm testing my application with two different datasources - mysql 5 and oracle 10g. Ok, so i have an entity that i persist that has a date member of type Calendar. Here is the different functionality that i experience depending on datasou

[jboss-user] [JBossCache] - Re: jboss application redeployment problem

2006-12-01 Thread kagey
Thanks for the info everyone. I seem to have fixed the problem by replacing my app data classes with arrays of primitives, or arrays of Objects[] which contain java library objects like Strings. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990566#3990566 R

[jboss-user] [JBossCache] - Re: jboss application redeployment problem

2006-11-30 Thread kagey
Also i forgot to say that clearing the cache is not an option as the app will be running on multiple servers sharing the same cache. This brings up another question. How in the heck am i suppose to share data through the cache if i cant even get at the object data between multiple app instances

[jboss-user] [JBossCache] - Re: jboss application redeployment problem

2006-11-30 Thread kagey
thank you, for your answer, it makes perfect sense. If i change the class type to an array of primitives instead of my custom class, would that work? I'm not familiar on the intricacies of the classloader. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990321

[jboss-user] [JBossCache] - jboss application redeployment problem

2006-11-30 Thread kagey
Jboss has my treecache service mbean running. I deploy my application and create nodes and data key/value pairs in the nodes. I can retrieve the values and cast them to the appropriate class. I redeploy my application and retrieve the same values, but this time i cant cast them to the appropriat

[jboss-user] [JBossCache] - Re: how to use with EJB3Standalone container inside eclipse

2006-11-28 Thread kagey
Let me refine my problem. I'm trying to get a treecachembean deployed in the ejb3 embeddable container. I created this test deployment descriptor in the xml file embedded-jboss-beans.xml: | | | and i get the following errors when the file is parsed: | DEBUG 28-11 21:02:15,772 (Serv

[jboss-user] [JBossCache] - how to use with EJB3Standalone container inside eclipse for

2006-11-27 Thread kagey
hey all, I can get my treecache-service.xml file to properly deploy in jboss, but how do i get the same mbean to load with the EBJ3Standalone container. I would like to do this to get it working smoothly with my junit tests. the xml file is not deployed automatically if it is in the classpath,

[jboss-user] [JBossCache] - Re: Monitoring puts and evictions

2006-11-23 Thread kagey
just to help out anyone who has the same problem. I found additional listener methods in abstracttreecachelistener, that have the "pre" parameter. so i can listen for adds and evictions using the following listener methods: for new inserts: nodeModify(Fqn fqn, boolean pre, boolean isLocal) wher