[JBoss-user] [JBossWS] - 4.0.2 WS4EE: How to ignore untrusted certs

2006-06-27 Thread acxsjones
I have a web gui that needs to talk to an untrusted webservice. The nodes behind this server could change. So I need a way to ignore self signed, untrusted, certs. I used wscompile to gend the client stubs and I am using ws4ee on the client. The way to do this in JWSDP is to register your o

[JBoss-user] [JBossWS] - Re: change in run-time the soap:address location of wsdl.

2006-06-22 Thread acxsjones
Did you ever find a way to do this. I need the ability to change the url at runtime. Examples show using ENDPOINT_ADDRESS_PROPERTY, but it does not work. Any help would be great View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952858#3952858 Reply to the post

[JBoss-user] [JBossWS] - JBoss 4.0.2 Client Soap Handler getting UnsupportedOperation

2006-06-15 Thread acxsjones
I have an ejb that needs to talk to a SOAP service. It does fine talking to this service without setting SOAP header. But I need to set two SOAP headers. When I add | | | | | | | I

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: AJP, Apache, Tomcat SSL question

2006-06-06 Thread acxsjones
Any help? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949477#3949477 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949477 ___ JBoss-user mailing list JBoss-user@lists.so

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - AJP, Apache, Tomcat SSL question

2006-05-31 Thread acxsjones
I was doing research on AJP to get an apache server in our DMZ talking to JBoss/Tomcat in our internal network. We have had this going but need it over SSL. I came across an interesting item when reading about AJP 1.3 protocol anonymous wrote : ?According to email from Gal Shachor to the jaka

[JBoss-user] [Security & JAAS/JBoss] - DMZ Security

2006-05-11 Thread acxsjones
I have a web service application that I have working in on our company network. We are planning on exposing it on the internet. The plans were to use ModJK and Apache in the DMZ layer. Have it forward to the web service running under JBoss 4.0.2. I have a custom JAAS login module that does e

[JBoss-user] [JBossWS] - Re: soap client code getting items in the message context fo

2005-09-28 Thread acxsjones
I thought that there is not garantee that the handler would be on the same thread? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897758#3897758 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3897758

[JBoss-user] [JBossWS] - Re: soap client code getting items in the message context fo

2005-09-20 Thread acxsjones
I am doing what you are suggesting. What I need is some way, from the client code (not a handler), to get something in the message context. Look at the example code. From the generated stubs I do not know how to get something that the handler can see View the original post : http://www.jboss

[JBoss-user] [JBossWS] - Re: soap client code getting items in the message context fo

2005-09-13 Thread acxsjones
I can get to the soap message in the ejb. But I do not have a handle on it in the client code. I have the generated items from wscompile service endpoint stub View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3894479#3894479 Reply to the post : http://www.jbo

[JBoss-user] [JBossWS] - Re: logging SOAP message to log4J and not system.out

2005-09-08 Thread acxsjones
OK this is what I have working. Let me know if there is a better way | private void logSoapMessage(MessageContext msgContext) { | try { | SOAPMessageContext smc= (SOAPMessageContext) msgContext; | SOAPMessagemessage= smc.getMessage();

[JBoss-user] [JBossWS] - logging SOAP message to log4J and not system.out

2005-09-08 Thread acxsjones
I am having problems going from SOAPMessageContext to a string that I can pass to Log4J. I can send it to smc.writeTo(System.out) but I do not want it to System.out. All of our logging is done via Log4J View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=389362

[JBoss-user] [JBossWS] - soap client code getting items in the message context for th

2005-09-07 Thread acxsjones
Is there a way to get an item in the MessageContext for a handler to look at. This is from the client code that is calling the gnerated code. | HelloWorld_Implservice = new HelloWorld_Impl(); | HelloWorldEndpoint endPoint = servi

[JBoss-user] [JBossWS] - Re: Looking for example code

2005-08-25 Thread acxsjones
OK I am lost: The example you pointed me to is calling an EJB. I have a test client that was built from the wsdl of an ejb under 4.0.2 with wscompile. I can talk to the ejb via soap xml and the wsdl with no problem. I can not find any way to add a soap header to the classes already generate

[JBoss-user] [JBossWS] - Re: Looking for example code

2005-08-22 Thread acxsjones
Any help out there View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3891069#3891069 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3891069 --- SF.Net email is Sponsored

[JBoss-user] [JBossWS] - Looking for example code

2005-08-17 Thread acxsjones
I am looking for example client code, standalone client code, that calls a soap services that requires the creation of a soap header. Todate I have generated the stubs from the WSDL and been able to use the code below to access the service. But I am missing the steps of being able to either

[JBoss-user] [Security & JAAS/JBoss] - Re: Dynamic authentication

2005-08-09 Thread acxsjones
Did this get fixed View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3889126#3889126 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3889126 --- SF.Net email is Sponsored

[JBoss-user] [Security & JAAS/JBoss] - New security context to call out, not reverting back to old

2005-08-09 Thread acxsjones
I have an EJB that needs to call out to a remote system: properties.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory"); | properties.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces"); ; | properties.put("java.nam

[JBoss-user] [JBossWS] - Re: Access to Soap Header from Generates EJB

2005-08-04 Thread acxsjones
Can you give me a url that points to how to do intergrate Soap Headers with a Soap service generated from an EJB endpoint View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888472#3888472 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&m

[JBoss-user] [JBossWS] - Access to Soap Header from Generates EJB

2005-07-25 Thread acxsjones
Is there a way to get access to Soap header from a generated EJB. The generate EJB is from a given WSDL. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3886480#3886480 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3886

[JBoss-user] [Management, JMX/JBoss] - classpath issues

2005-05-06 Thread acxsjones
I have a mbean that will be making an external call. Everything works fine when I put the third party jar in my sar. The next need, is to allow users of this mbean to change some of the params before deploying. I want to use your same pattern of packing the code in a jar and the test-service.

[JBoss-user] [JBossWS] - Re: Problem with EJB Web Service with two params

2005-04-28 Thread acxsjones
No I had not read that item. One more question: Do you see any problems with getting around the problem by packaging up the params to my ejb in a single object and making that object the only param to the EJB. Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewto

[JBoss-user] [JBossWS] - Problem with EJB Web Service with two params

2005-04-27 Thread acxsjones
I am having a problem with an ejb that has two params. The ejb deploys fine, but when I go to http://localhost:8080/ws4ee/services I get the following error: | org.jboss.axis.InternalException: java.lang.Exception: The OperationDesc for hello was not synchronized to a method of com.acxiom.se

[JBoss-user] [JBossWS] - Re: Problem with port-component-uri in two ejbs

2005-04-14 Thread acxsjones
Actually the only solution I have found is to package the multiple ejbs into the same jar. I would like to have different jar files for each ejb but have them use the same base context. /contextA/partB/service123 /contextA/partB/service124 I could not find a way to get the same base context p

[JBoss-user] [JBossWS] - Re: Problem with port-component-uri in two ejbs

2005-04-07 Thread acxsjones
Found some more information I looked at the war file that was generate off of both ejbs. They both gen'd the same jboss-web.xml | | | | /jboss-net | | So how do I get two ejbs working that use /jboss-net/services as the base context one with /jboss-net/services/helloworl

[JBoss-user] [JBossWS] - Problem with port-component-uri in two ejbs

2005-04-07 Thread acxsjones
I am trying to test backward comp with EJBs that I created under jboss 3.2.4 under JBoss 4.0.2RC1. I am able to create an ejb from the old wsdl that and deploy it under jboss-ws and the old client works great. I had to use port-component-uri in jboss.xml to change the context to look like the

[JBoss-user] [JBossWS] - Re: Cannot deploy a document style webservice on JBoss 4.0.2

2005-03-31 Thread acxsjones
I gen'd my wsdl off of the endpoint interface in my ejb. I the ant files that I utilize My build-wscompile.xml ant file file | | ]> | | | | | | &jwsdpClasspath; | | | | | | | | |

[JBoss-user] [JBossWS] - Re: Cannot deploy a document style webservice on JBoss 4.0.2

2005-03-31 Thread acxsjones
I was told not to use Java2WSDL but to use wscompile There is a good tutorial on it at https://jax-rpc.dev.java.net/whitepaper/1.1/index-part1.html#2.1 After I did all this work, I was able to get RPC working but not document. When I went to 4.0.2 RC1, the document literal started working. Vie

[JBoss-user] [JBossWS] - Re: Cannot deploy a document style webservice on JBoss 4.0.2

2005-03-30 Thread acxsjones
You will need to download jwsdp 1.5 to get my examples to work. It contains some examples with it. http://java.sun.com/webservices/jwsdp/index.jsp Sun?s main page for jwsdp. Should be able to get to the download from this page Also look at the wiki and the examples http://www.jboss.org/wiki/Wi

[JBoss-user] [JBossWS] - Re: Need example of EJB Endpoint Doc/Lit and Standalone Clie

2005-03-30 Thread acxsjones
By the way, I received a reply to one of my other posts that fixed most of my issues. There is a bug that has been fixed in JBoss 4.0.2 RC1 the reply of a document literal web service. I have been able to get a standalone J2SE client working with my document literal web service running under 4

[JBoss-user] [JBossWS] - Re: Need example of EJB Endpoint Doc/Lit and Standalone Clie

2005-03-28 Thread acxsjones
OK, So there is NO way to generate client side subs (J2SE client) that work with a JBoss WS web service, document literal sytle, that is an endpoint in an EJB. If this is so, I do not understand why not. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3871802#

[JBoss-user] [JBossWS] - Re: Need example of EJB Endpoint Doc/Lit and Standalone Clie

2005-03-28 Thread acxsjones
Question: Does JBoss support client stubs gen'd from wscompile? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3871798#3871798 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3871798 -

[JBoss-user] [JBossWS] - Re: Need example of EJB Endpoint Doc/Lit and Standalone Clie

2005-03-28 Thread acxsjones
I have look at the wiki. I have a RPC Encoded example working but can not get document literal working. What I am missing is an example taking it from WSDL on a pure java client. (Meaning outside of a container) I will walk through this again, but I have been looking at this for sometime and

[JBoss-user] [JBossWS] - Need example of EJB Endpoint Doc/Lit and Standalone Client t

2005-03-28 Thread acxsjones
I have been trying to get an example of the following and can not get the stars to align and work. We need the following 1. An EJB (HelloWorld) that takes a complex object and returns a complex object 2. The wscompile build script that builds the ejb and wsdl 3. Client build scripts that consu

[JBoss-user] [JBossWS] - Re: Problem getting unexpected element name returned to clie

2005-03-25 Thread acxsjones
Let me add the wscompile from server and client server wscompile | | | | client wscompile | | | | View the original post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [JBossWS] - Problem getting unexpected element name returned to client

2005-03-25 Thread acxsjones
I have work through examples and have a simple hello world working gen'd from an EJB. I am trying to get a complex EJB, with my objects in and out, working. I am able to get the server deployed and get the client compiled. The client sends the request server. The server prints out the inform

[JBoss-user] [JBossWS] - Re: Problem getting client working from just WSDL

2005-03-22 Thread acxsjones
I have looked at that. I used the endPoint from the EJB. I just want to distribute the WSDL to my EJB and work from there. I have a client working using the endpoint from the EJB. Are you able to just hand out the WSDL to a client and have them access your webservice deployed under JBossWS

[JBoss-user] [JBossWS] - Re: Problem getting client working from just WSDL

2005-03-21 Thread acxsjones
I have been looking at the examples that are out there and the jboss-build.xml from the jboss-dukes-bank project. I was able to get that working. But what I am looking for is an example of client code that starts with the WSDL gen'd from the server side. Can you point me to some sample client

[JBoss-user] [JBossWS] - Problem getting client working from just WSDL

2005-03-21 Thread acxsjones
I have a simple EJB "HelloWorld" that I am trying to get a client connected to. I have gen'd this as RPC literal style. When I do this. The gen'd code from the client stub is incorrect. I changed the gen'd sub and added items to the constructor on QName for the param and return and it work

[JBoss-user] [JBoss.NET] - Re: Literal Encoding vs. Soap Encoding in the 3.2.xxx of jbo

2005-03-09 Thread acxsjones
This changes the handler to java:RPC vs. org.jboss.net.axis.server.EJBProvider Is there a way to have the jboss EJBProvider to do literal encoding? I am trying min the change to the current development and deployment model until we go to JBoss 4.0 View the original post : http://www.jboss.org/

[JBoss-user] [JBoss.NET] - Literal Encoding vs. Soap Encoding in the 3.2.xxx of jboss

2005-03-08 Thread acxsjones
Is there a way to have jboss.Net generate Literal Encoding vs. Soap Encoding from a stateless session bean. A couple of our guys went to JBoss world and heard that Soap Encoding would not be backward compatable. We need to find a temp solution for current development under 3.2.4 we have some

[JBoss-user] [Management, JMX/JBoss] - Re: Catching JkCoyoteHandler startup with Listener

2005-02-01 Thread acxsjones
I vote for the enhancement. It more what I would expect View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864668#3864668 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864668

[JBoss-user] [Management, JMX/JBoss] - Re: Catching JkCoyoteHandler startup with Listener

2005-01-31 Thread acxsjones
I found out a little more. In the handleNotification2 event I change change from a Notification object that is passed to me to a MBeanServerNotification object. Off of this object I can find the actual mBeanName by calling getMBeanName() This will be equal to jboss.web:type=protocolHandler,

[JBoss-user] [Management, JMX/JBoss] - Catching JkCoyoteHandler startup with Listener

2005-01-31 Thread acxsjones
I am trying to catch the startup of the Coyote Handler. I have followed instruction on how to apply a listner but can not get a notification to just catch the startup of JkCoyoteHandler. Below is a print out of the Notifications that are caught with a subscription list also listed below.

[JBoss-user] [HTTPD, Servlets & JSP] - Need a way in code with JMX to find out the port Tomcat is l

2005-01-26 Thread acxsjones
I need to find out the port that my instance is listening for tomcat traffic. I assume that it will be on some JMX object, but which one. Deployments will be on other port besides 8080 Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863777#3863777 R

[JBoss-user] [Clustering/JBoss] - Need To be able to get current count of nodes in a given clu

2005-01-24 Thread acxsjones
Is there a JMX item I can call to get the current count in a given cluster View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863462#3863462 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863462 --

[JBoss-user] [JBoss.NET] - Log input and output XML on all calls

2004-12-20 Thread acxsjones
Can someone tell me if there is a way to turn on logging on input and output XML in JBoss.net I have a requirement to capture everything coming and going out of the system. I would like to do that in the actual XML that is going across the wire and not in our EJBs View the original post : ht

[JBoss-user] [EJB/JBoss] - Deployment Order Issues with multiple EARs

2004-09-28 Thread acxsjones
I have 3 ears, and I need to have one of them deployed before the others, what is the best way to do this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3849774#3849774 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=384

[JBoss-user] [JBoss.NET & SOAP] - get rid of jboss-net/service and just have url have my given

2004-06-17 Thread acxsjones
I am using jboss-net for webservices. I would like to make the url simple and not contain jboss-net or service. I can map service in the web.xml to a prefix of my own. But how do I tell JBoss to not require jboss-net in the url. Thanks View the original post : http://www.jboss.org/index.htm

[JBoss-user] [Security & JAAS/JBoss] - Re: sample LDIF file and config that matches

2004-05-13 Thread acxsjones
I have done some more work. I can get connected and authorized but I can not get roles to get mapped. I still have found not actual example that shows a LDAP full layout with the XML config for the LdapLoginModule View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic

[JBoss-user] [Security & JAAS/JBoss] - sample LDIF file and config that matches

2004-05-12 Thread acxsjones
I am having problems getting the LDAP security configured going against openLDAP. Can someone send me a ldif file that creates the structure and entries along with a login config file for JBoss that matches that structure. View the original post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [JBoss.NET & SOAP] - Looking for Ant task to create WSDL from ejb without deployi

2004-05-10 Thread acxsjones
1. I am looking for a way to be able to create the WSDL from an ejb without deploying. An ant task would be great 2. Any documentation on the ant tasks available. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834361#3834361 Reply to the post : http://ww