[jboss-user] [JBoss Web Services Users] - Re: jbossws 5

2009-09-23 Thread pramod_bs
Environment JBoss 5.1 jbossws-native-3.1.2.GA Seam 2.1 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4256660#4256660 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4256660 ___

[jboss-user] [JBoss Web Services Users] - jbossws 5

2009-09-22 Thread pramod_bs
I was having a web services client in 4.2.1. When I moved the client to Jboss 5.1 environment (with the default jbossws native) I get the following error.(Version: jbossws-native-3.1.2.GA Build: 200905081542 ) | | 23:27:52,860 ERROR [CommonClient] Exception caught while (preparing for) p

[jboss-user] [JBossWS] - Re: Problem on receiving an object holding datetime

2009-06-25 Thread pramod_bs
One area you might want to look at is if the client is sending the date in the correct format. | XS:DATETIME FORMAT expects --> 2005-05-27T14:11:00.000 | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4240047#4240047 Reply to the post : http://www.jbo

[jboss-user] [JBossWS] - Re: wssecurity username token encryption

2009-06-02 Thread pramod_bs
"juno60" wrote : I am struggling with wssecurity on jboss 5.0.1.GA. I can either properly authenticate to a webservice using an username token or encrypt the whole soap communication using wsse encryption but not both at the same time. I would like to authenticate using the username token and fo

[jboss-user] [JBossWS] - Web Services Session management.

2008-07-14 Thread pramod_bs
I need some tips on what spec to us for Web Services Session management. I read some where there are specs like WS-Context, WS-Coordination etc. Not sure which one the industry is moving towards. Any opinions will be well appreciated. View the original post : http://www.jboss.com/index.html?mod

[jboss-user] [JBossWS] - Re: remote authentication=>no route to host found

2008-07-07 Thread pramod_bs
R u sure you have the correct config for MySQL in your *-ds.xml after you moved to your server envt from your local envt. . It seems like theMySQL host communication error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4162860#4162860 Reply to the post : htt

[jboss-user] [JBossWS] - Re: Streaming webservices

2008-06-17 Thread pramod_bs
I think one option to solve your problem could be to use soap as an attachemnt feature. There are samples in the jboss source download. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4158698#4158698 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBossWS] - Re: Error: ...Port does not contain operation meta data for:

2008-05-09 Thread pramod_bs
This may be because of namespace conflict. http://ch.fmi/wstest and http://wstest.fmi.ch/ Try switching this in your client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149775#4149775 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBossWS] - Re: Cannot obtain wsdl service

2008-04-24 Thread pramod_bs
I think you are using JAX-RPC client. Try using JAX-WS client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146514#4146514 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4146514

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-04-23 Thread pramod_bs
I am not sure if there is a work around. If u can afford to change ur web service class to @Stateless this will work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146105#4146105 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[jboss-user] [JBossWS] - Re: WS-Security question

2008-04-18 Thread pramod_bs
Please look into this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4145149#4145149 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4145149 ___ jboss-user mailing list jboss-us

[jboss-user] [JBossWS] - WS-Security question

2008-04-11 Thread pramod_bs
I implemented WS-Security for Usernametoken authentication for an EJB3 bean. Everything is working fine. But I noticed that when I send the SOAP envelope with just a wsse:security header (without any child elements) , the system allowed to invoke the service (No authentication happened). Is ther

[jboss-user] [JBossWS] - Re: Do I have to install JBossWS additional to JBossAS 4.2.2

2008-04-09 Thread pramod_bs
I think you can look in this file to see which version you have. You can upgrade to the higher version if you want. {JBOSS_HOME}\server\default\deploy\jbossws.sar\META-INF\MANIFEST.MF View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142961#4142961 Reply to the

[jboss-user] [JBossWS] - Re: Where do I have to *.jws web service files in JBoss ?

2008-04-08 Thread pramod_bs
If you are planning to use Jax-WS @WebService( name=" ", targetNamespace = " ", serviceName = ) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE, style =

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread pramod_bs
R u sure you handleInbound is invoked with the response. I think this is invoked while you send the message from the client. Check it out. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142386#4142386 Reply to the post : http://www.jboss.com/index.html?modu

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread pramod_bs
Here are some code snippets from JBoss code. I am not sure if you already loked at this. If not you can use eclipse debugger to see what is coming in the parameters. I am assuming the header is null. I might be wrong. Try it out. WSSecurityDispatcher.java | | public static void handleInboun

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-07 Thread pramod_bs
It seems like the client is not sending the header. I think you can use some tool like tcpmon (https://tcpmon.dev.java.net/) to see what is going out of your port. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142182#4142182 Reply to the post : http://www.

[jboss-user] [JBossWS] - SAML support for jbossws-native

2008-04-07 Thread pramod_bs
Is there a roadmap for SAML support from native stack. I saw an issue being closed. http://jira.jboss.org/jira/browse/JBWS-1544 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142178#4142178 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBossWS] - Re: JBoss web service client

2008-04-07 Thread pramod_bs
Can you please post your code. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142070#4142070 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4142070 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: JBoss web service client

2008-04-06 Thread pramod_bs
You can use wsconsume utility from JBoss (JBOSS_HOME/bin) to create all the artifacts needed for creating a client. wsconsume -k -o View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141931#4141931 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBossWS] - Re: javax.xml.ws.soap.SOAPFaultException: Invalid program na

2008-04-03 Thread pramod_bs
I am able to access the same service using a Axis2 client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141360#4141360 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4141360

[jboss-user] [JBossWS] - Re: javax.xml.ws.soap.SOAPFaultException: Invalid program na

2008-04-03 Thread pramod_bs
Help please... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141359#4141359 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4141359 ___ jboss-user mailing list jboss-user@lists

[jboss-user] [JBossWS] - Re: please help - web services still dont work for me - jbos

2008-04-02 Thread pramod_bs
Try to remove following jar files from your clients class path - jaxws-rt.jar jaxws-tools.jar. This happended to me. Please try this. It might work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141088#4141088 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBossWS] - javax.xml.ws.soap.SOAPFaultException: Invalid program name

2008-04-02 Thread pramod_bs
| | I am getting this exception when I try to access a web service which is running in a non JBoss server ( actually the service is running in unisys mainframe) | stack trace | javax.xml.ws.soap.SOAPFaultException: Invalid program name | at org.jboss.ws.core.jaxws.SOAPFaultHelpe

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-04-01 Thread pramod_bs
This will be fixed in 2.0.5 http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4140626#4140626 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4140628#4140628 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4140628 _

[jboss-user] [JBossWS] - WS-Security Usernametoken in a war file.

2008-03-31 Thread pramod_bs
I have implemented WS-Security username token authentication for a web application. But for some reason the authentication is not working. Is there any config needed in web.xml. The same code is working in a simple statelss EJB. View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBossWS] - Re: How to setup wsse usernametoken for ejb3 based web servi

2008-03-24 Thread pramod_bs
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=131719 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4138624#4138624 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4138624 ___

[jboss-user] [JBossWS] - WS-Security and Handlers

2008-03-24 Thread pramod_bs
I have a simple web service which I have implemented username token authentication. Also I have my own Policy handler which I have configured using @handlerChain. I would like to invoke this handler between the JBossWS authenticates the usernametoken and actual execution of the method. packag

[jboss-user] [JBossWS] - Re: Interceptor for JBossWS

2008-03-21 Thread pramod_bs
I looked at the doc. I might have got lost. My confusion is how to include my XACML policy validation inside the handler chain after JBossWS handles the username token authentication. Or is there another better way of handling this? View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBossWS] - Interceptor for JBossWS

2008-03-20 Thread pramod_bs
How I can write an Interceptor for a web service. Here is the scenario: I have a service with WS-Security. After the JBossWS authenticated the user I need to intercept for applying policy using XACML. Ay ideas will be greatly appreciated. View the original post : http://www.jboss.com/index.html

[jboss-user] [JBossWS] - Re: Change the endopoint address

2008-03-20 Thread pramod_bs
I think if you comment out this line then it will take whatever the ipaddress we give in the server: "webServiceHost">${jboss.bind.address} File is: C:\Program Files\jboss-4.2.1.GA\server\default\deploy\jbossws.sar\jbossws.beans\META-INF\jboss-beans.xml View the original post : http://w

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-03-12 Thread pramod_bs
"[EMAIL PROTECTED]" wrote : Excellent! Would like to contribute it to the tutorial section of the WIKI? | | http://jbws.dyndns.org/mediawiki/index.php?title=Tutorials I added a link from the Tutorials for this forum item. Is this good enough or is there anyway I can create a Tutorial page?

[jboss-user] [JBossWS] - Re: Steps for implementing WS-Security in JBoss using Userna

2008-03-12 Thread pramod_bs
Thanks for the suggestions. I have a question. I am trying to figure out how to add a password digest to this. Please help View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4136160#4136160 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBossWS] - Steps for implementing WS-Security in JBoss using Username t

2008-03-12 Thread pramod_bs
This posting might be useful for those people trying to implement WS-Security using username toekn authentication. I couldn't find a single document anywhere on the web. I though i will ceate a comrehensive doc. Please let me know if you guys see any flaw here, Steps for implementing WS-Securit