[JBoss-user] [JNDI/Naming/Network] - Re: Trouble with lookuping of datasource. Help me pls.

2006-03-26 Thread singular_droid
First you should copy ojdbc14.jar to the server//lib directory and what's that??? anonymous wrote : .. | dimo | deineaugen | .. | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932661#3932661 Reply to the post : http://www.jboss.com/index.html?mo

[JBoss-user] [JBossWS] - how to include login exception stack trace?

2005-06-16 Thread singular_droid
How to include login exception stack trace into server's SOAP response message? By default it is wrapped by MBeanException. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881884#3881884 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting

[JBoss-user] [JBossWS] - Re: jboss 4.0.2 serialization speed compare to jboss4.0.0

2005-05-19 Thread singular_droid
I can email 2 jars - 4.0.2 and 4.0.0 versions of our webservice(with the minimal changes). But it uses hibernate3 and oracle legacy stored procs. This is ours ws4ee-deployment for jboss4.0.0: | | | | | | |

[JBoss-user] [JBossWS] - jboss 4.0.2 serialization speed compare to jboss4.0.0

2005-05-18 Thread singular_droid
A week ago we have started redevelopment of our webservice from jboss4.0.0 to jboss4.0.2. Saying shortly, we have discovered that serialization of server response in jboss4.0.2 is about 8-10 times slowly than in jboss4.0.0. The execution speed of session bean public method in both cases are equa

[JBoss-user] [Security & JAAS/JBoss] - Re: jboss4.0.2 web-service auth and non-java clients

2005-05-12 Thread singular_droid
Everything is ok. I have found an answer in the source of org.jboss.webservice.handler.ClientLoginHandler. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877579#3877579 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=38

[JBoss-user] [Security & JAAS/JBoss] - jboss4.0.2 web-service auth and non-java clients

2005-05-12 Thread singular_droid
I have a merely simple web-service under jboss4.0.0 and now moving it on 4.0.2. this is the part of my login-config.xml: | | | | java:/OracleDS | SELECT PASS FROM trate.dilers_auth WHERE LOGIN=? | SELECT role,'Roles' FROM

[JBoss-user] [Persistence & CMP/JBoss] - Re: null after lookup in jboss4.0.2

2005-05-11 Thread singular_droid
Sorry guys, it's my fault. Everything works fine) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877426#3877426 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877426 ---

[JBoss-user] [Persistence & CMP/JBoss] - Re: null after lookup in jboss4.0.2

2005-05-11 Thread singular_droid
In addition I want to say that I have downloaded the jboss4guide and build it's CaveatEmptor.har - it didn't deploy into default conf of jboss 4.0.2: | 11:00:11,843 INFO [Environment] Hibernate 3.0.2 | 11:00:11,875 INFO [Environment] hibernate.properties not found | 11:00:11,875 INFO [En

[JBoss-user] [Persistence & CMP/JBoss] - null after lookup in jboss4.0.2

2005-05-10 Thread singular_droid
I have wrote HAR and after deployment into jboss4.0.2 default conf. I have such output | 13:14:27,234 INFO [Hibernate] Using JDBC batch size : null | 13:14:27,234 INFO [Configuration] Searching for mapping documents in jar: DealerService.har | 13:14:27,234 INFO [Configuration] Found ma

[JBoss-user] [Persistence & CMP/JBoss] - Re: jboss4.0.2 and hibernate3.0.2 deployer exception

2005-05-08 Thread singular_droid
Heh, it seems strange that this jar is now not included into jboss distribution by default))) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3876921#3876921 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3876921 --

[JBoss-user] [Persistence & CMP/JBoss] - Re: jboss4.0.2 and hibernate3.0.2 deployer exception

2005-05-06 Thread singular_droid
Oh, by the way - i forget to say that on jboss4.0.0 all works fine View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3876767#3876767 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3876767 --

[JBoss-user] [Persistence & CMP/JBoss] - jboss4.0.2 and hibernate3.0.2 deployer exception

2005-05-06 Thread singular_droid
I'm trying to switch from jboss4.0.0 to 4.0.2(in both cases I use hibernate3.0.2) and I have a problem. I'm deploying a HAR with 5 mapping files - they are same in both cases. This is the source of hibernate-service.xml that I have written: | | | java:/OracleDS | o

[JBoss-user] [JBossWS] - Does anybody know...

2005-04-06 Thread singular_droid
Does anybody know the extension point in which I can compress\decompress SOAP messages of my EJB-based rpc/literal webservice? I've tried a lot but I don't know where to put the compression. First I've try to extend GenericHandler and configure if trough webservices.xml. It didn't work because a

[JBoss-user] [JBossWS] - Re: Compression Handler

2005-04-04 Thread singular_droid
Hi again. I have modified code of my Handler and now i have included into in such code: | public boolean handleResponse(MessageContext msgContext) { | try { | logger.debug("CompressionHandler handleResponse"); | SOAPMessage mss=((SO

[JBoss-user] [JBossWS] - Compression Handler

2005-04-02 Thread singular_droid
Hi! I'm trying to compress the response of my WS. This is the code of handler | import java.io.ByteArrayOutputStream; | import java.net.URL; | import java.util.zip.GZIPOutputStream; | | import javax.xml.namespace.QName; | import javax.xml.rpc.handler.GenericHandler; | | import or

[JBoss-user] [JBossWS] - Re: WS security and non-java clients

2005-03-16 Thread singular_droid
Thanks a lot. And there is no way to include info about auth-header into wsdl of ws in deploy-time? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3870356#3870356 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3870356

[JBoss-user] [JBossWS] - Re: WS security and non-java clients

2005-03-14 Thread singular_droid
Mm Basic auth is good but it doesn't work when i have a number of proxy between my ws and client. Cause the authentication information in this situation is added to the http header, which can be modified by proxies, while the soap part of message is always unchanged. View the original pos

[JBoss-user] [JBossWS] - WS security and non-java clients

2005-03-11 Thread singular_droid
Hi all! I'm trying to secure my WS with JAAS. The problem is that my WS is accessed both by java and non-java clients. Java clients are succesfully authenticated with JAAS, but I don't know the simple way to tell my non-java client to authenticate with JAAS. First, the only one thing is needed(a

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-07 Thread singular_droid
thank you all, problem is eliminated View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3869044#3869044 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3869044 --- SF email

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-04 Thread singular_droid
Yes I can obtain wsdl from http://192.168.0.200:8080/EJB4/HelloBeanService?wsdl in my browser. And this is the part of it: | | | http://localhost:8080/EJB4/HelloBeanService"/> | | | And in my ejb4.jar this part of wsdl file looks like this: | | | htt

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-04 Thread singular_droid
In addition to previous post The wsdl file is generated by axis Java2WSDL, and jaxrpc-mapping and webservices.xml are hand written. Tcpmon messages: client | POST /EJB4/HelloBeanService HTTP/1.0 | Content-Type: text/xml; charset=utf-8 | Accept: application/soap+xml, application/dime, mult

[JBoss-user] [JBossWS] - Re: strage problem tcpmon

2005-03-04 Thread singular_droid
Ok, I have read all threads in this forum and only one of them (except mine) about the same problem - how to connect wsclient to jboss server on another host?(In other thread there is no answer on that). I understand that my problem is simple but I cant overcome it :( View the original post :

[JBoss-user] [JBossWS] - strage problem tcpmon

2005-03-04 Thread singular_droid
Hi all! For a couple of days I'm trying to overcome one strange problem: I'm trying to create my own simple ws and as example I'm using this guide: http://docs.jboss.org/jbossas/getting_started/startguide40/ws.html and i hava similar build and similar classpath(if needed I can post'em all). So my