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
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
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
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
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
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
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
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
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
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();
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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;
|
|
|
|
|
|
|
|
|
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
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
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
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#
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
-
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
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
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
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
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
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
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
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/
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
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
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,
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.
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
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
--
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
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
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
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
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=
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
51 matches
Mail list logo