[jboss-user] [JBoss Web Services Users] - Re: Consuming Web Services when WSDL access / UDDI discovery

2009-10-28 Thread vimalm
Hello Alessio Thanks for your response. My current code looks like | URL wsdlURL = new URL ( http://www.example.com/example.asmx?WSDL;); | QName serviceQName = new QName(http://www.example.com/example/;, Calculate); | Calculate calc = new Calculate(wsdlURL, serviceQName); |

[jboss-user] [JBoss Web Services Users] - Re: Consuming Web Services when WSDL access / UDDI discovery

2009-10-28 Thread vimalm
Never mind I figured out that the above way will work. The only problem is that I need to attach multiple WSDL's for different environments (dev, uat and prod) inside my ear and then use the logic to dynamically figure out which WSDL URL to load depending on environment. View the original

[jboss-user] [JBoss Web Services Users] - Consuming Web Services when WSDL access / UDDI discovery is

2009-10-27 Thread vimalm
One of the Vendors that we have, expose some .net web services end points but now prohibit access to WSDL via the ?WSDL mechanism as part of a their new security policy. Suddenly the code that used to work to consume their web services no longer works with this new security policy

[jboss-user] [JBossMQ] - Re: Sonic JCA Resource Adapter Wait for Available Session En

2008-08-29 Thread vimalm
We switched the MDB to use a queue instead of a Topic to gurantee delivery and our problems went away. We weren't too happy about this but in absence of any support from Sonic that is the solution we had to take. Depending on your requirement that may or may not be possible. View the original

[jboss-user] [JBoss Seam] - Re: Tomahawk datascroller loose conversationId

2007-05-24 Thread vimalm
Embedding a s:link for f:param with conversationId does not work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4048335#4048335 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4048335

[jboss-user] [JBoss Seam] - Method Interceptor does not work

2007-01-04 Thread vimalm
Hi I am having troubles getting my method level annotation back by an interceptor to work. Here is my annotation class: | @Target({TYPE, METHOD}) | @Retention(RUNTIME) | @Documented | @Interceptors(AuthorizationInterceptor.class) | public @interface Authorized { | Permission[]

[jboss-user] [JBoss Seam] - Re: Method Interceptor does not work

2007-01-04 Thread vimalm
I think there is already a JIRA issue for it: JBSEAM-353 Thanks Vimal View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3998003#3998003 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3998003

[jboss-user] [Messaging, JMS JBossMQ] - Sonic JCA Resource Adapter Wait for Available Session Ended

2006-12-29 Thread vimalm
Hi We are using JBOSS 4.0.4GA along with Sonic JCA Resource adapter. I have a MDB deployed on JBOSS which listens on a Topic on Sonic ESB. Under heavy load on this topic, my MDB appears to turn deaf after processing 1 or so messages on this topic. I see in the server.log messages like one

[jboss-user] [JBossWS] - Re: Consuming .net Web Service using JBOSSWS

2006-10-12 Thread vimalm
I went that route first but it did not work. I guess using DII is the only way to call .net web service from jboss-ws. I have read something in that effect on your wiki. Just don't have the link handy. View the original post :

[jboss-user] [JBoss Seam] - Re: Logout and Back Button

2006-10-05 Thread vimalm
Or we can try another approach that when the login page renders it either disables the back/forward button or clicking the back button just refreshes the login page. Any thoughts?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3976310#3976310 Reply to the

[jboss-user] [JBoss Seam] - Logout and Back Button

2006-10-04 Thread vimalm
I was testing the booking application and I encountered this problem: After logging in and going forward a couple of steps, searching a hotel and start the booking process, if I click the logout button in the middle I get redirected to login page which is fine. But without closing the browser

[jboss-user] [JBossWS] - Re: Consuming .net Web Service using JBOSSWS

2006-09-22 Thread vimalm
Ok. I tried with a different service and I am getting the same error. Could somebody please help? Service is located at http://www.xmlme.com/WSAmazonBox.asmx?WSDL Here is the client code: | URL wsdlURL = new URL(http://www.xmlme.com/WSAmazonBox.asmx?WSDL;); | ServiceFactoryImpl

[jboss-user] [JBossWS] - Re: Consuming .net Web Service using JBOSSWS

2006-09-21 Thread vimalm
I was not setting the proxy server and that was the reason for the error. After doing | -Dhttp.proxyHost=proxyserver -Dhttp.proxyPort=8080 -DproxySet=true | I was able to get past this error. However I am getting another one now with this stack trace: |

[jboss-user] [JBossWS] - Re: Consuming .net Web Service using JBOSSWS

2006-09-21 Thread vimalm
I got around this error. It was aparently an issue with proxy which got resolved. However with the current client code I am getting | java.rmi.RemoteException: Call invocation failed with code [Client] because of: Server did not recognize the value of HTTP Header SOAPAction: .; nested

[jboss-user] [JBossWS] - Consuming .net Web Service using JBOSSWS

2006-09-20 Thread vimalm
Hi I am trying to consume a .net webservice (document/literal) inside one of my EJB's or a stand alone client starting from a WSDL URL in the form http://someurl/someservice.asmx The steps I took is to create the supporting classes using WSTOOLS with following configuration and then invoking