[JBoss-user] [EJB 3.0] - starting new threads within SLSB?

2006-01-05 Thread dpocock

I am using the Westhawk Java SNMP stack in my application.

The PDU objects create their own threads to handle network I/O.

Is it safe to use objects like this within an EJB3 Stateless Session Bean?  

Alternatively, should I be using network I/O methods that block?

Incidentally, when the PDU objects get their results, my callback function uses 
InitialContext.lookup to find a new instance of the SLSB to process the 
callback in the current thread.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915804#3915804

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915804


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Timer errors, even with Transaction REQUIRES_NEW

2005-12-29 Thread dpocock
I have defined my timeout method with the `REQUIRES_NEW' transaction type:

  @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
  @Timeout
  public void timeoutHandler(Timer timer) {
System.err.println("*** TIMEOUT: " + timer.getInfo() + " ***");
  }

However, I keep getting these warnings in the log immediately after every 
timeout:

20:47:21,873 WARN  [TimerImpl] Timer was not registered with Tx, reseting 
state: 
[id=1target=[target=jboss.j2ee:service=EJB3,name=com.xxx.ejb.session.UsagePollingTimerBean],remaining=1546,periode=3000,in_timeout]


What is wrong here?  Have I left something out?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914807#3914807

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914807


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - spurious socket timed out exceptions in log

2005-11-29 Thread dpocock

I make calls to a stateless session bean in Jboss 4.0.3.

The calls are made from a client running on a separate host.  Iuse a remote 
interface.

If the client doesn't make any calls for more than 60 seconds, then the 
exception below appears in the JBoss console.  

Should I be releasing my reference to the SLSB if I am not going to use it 
again for another 60 seconds?  

14:53:37,638 ERROR [ServerThread] socket timed out
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
at 
java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2200)
at 
java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2380)
at 
java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2447)
at 
java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2519)
at 
java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2668)
at java.io.ObjectInputStream.readByte(ObjectInputStream.java:864)
at 
org.jboss.remoting.transport.socket.ServerSocketWrapper.checkConnection(ServerSocketWrapper.java:54)
at 
org.jboss.remoting.transport.socket.ServerThread.acknowledge(ServerThread.java:217)
at 
org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:298)
at 
org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:169)


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909556#3909556

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909556


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - LdapLoginModule troubles and fix

2005-11-20 Thread dpocock
Hi,

I've used the LdapLoginModule in previous versions of JBoss and it seemed to 
work fine.

I've just tried using it with multiple roles and found very weird behaviour.  
It would tell me that every user was in every role.  With the example schema 
below, it would tell me that user1 is in roles `myldap-ipc', `myldap' and 
`myldap-admin', when he is only listed as part of `myldap'.  I feel that the 
problem is caused by LdapLoginModule not correctly creating the filter to send 
to the LDAP server.

I have created MyLdapLoginModule.java with a modified roleFilter and it works 
the way I would expect:

 String uidAttrName = (String) options.get(UID_ATTRIBUTE_ID_OPT);
 if (uidAttrName == null)
uidAttrName = "uid";
 String roleAttrName = (String) options.get(ROLE_ATTRIBUTE_ID_OPT);
 if (roleAttrName == null)
roleAttrName = "roles";
 StringBuffer roleFilter = new StringBuffer("(");
 roleFilter.append(uidAttrName);
  // This line commented by Daniel
 //roleFilter.append("=*)");
 //BasicAttributes matchAttrs = new BasicAttributes(true);
 String userToMatch = username;
 if (matchOnUserDN == true)
userToMatch = userDN;

 // Added by Daniel
 roleFilter.append("=").append(userToMatch).append(")");

Here is a sample of the login-config.xml I have been using:


  


  com.sun.jndi.ldap.LdapCtxFactory
  ldap://localhost:389/
  simple
  uid=
  ,ou=Webusers,dc=mydomain,dc=net
  ou=Roles,dc=mydomain,dc=net
  member
  true
  cn
  false
  ONELEVEL_SCOPE

  


Here is an example of my schema (filtered with sed to remove my domain and 
application name):

# extended LDIF
#
# LDAPv3
# base  with scope sub
# filter: (objectclass=*)
# requesting: ALL
#

# Roles, mydomain.net
dn: ou=Roles,dc=mydomain,dc=net
objectClass: top
objectClass: organizationalUnit
ou: Roles

# myldap-ipc, Roles, mydomain.net
dn: cn=myldap-ipc,ou=Roles,dc=mydomain,dc=net
objectClass: top
objectClass: groupOfNames
description: blah
member: uid=ipc-user,ou=Webusers,dc=mydomain,dc=net
cn: myldap-ipc

# myldap-admin, Roles, mydomain.net
dn: cn=myldap-admin,ou=Roles,dc=mydomain,dc=net
description: myldap users
objectClass: top
objectClass: groupOfNames
cn: myldap-admin
member: uid=dpocock,ou=Webusers,dc=mydomain,dc=net

# myldap, Roles, mydomain.net
dn: cn=myldap,ou=Roles,dc=mydomain,dc=net
description: Users of myldap logger
objectClass: top
objectClass: groupOfNames
member: uid=dpocock,ou=Webusers,dc=mydomain,dc=net
member: uid=user1,ou=Webusers,dc=mydomain,dc=net
cn: myldap

# search result
search: 2
result: 0 Success

# numResponses: 5
# numEntries: 4

Regards,

Daniel

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3908057#3908057

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3908057


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: migrating to 4.0.1sp1

2005-10-24 Thread dpocock

I'm having this problem too - it is a client side issue in 
ServiceFactory.createService

I put the username and password in the URL object.

This worked with Axis, so why doesn't it work with the JBoss client code?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3903091#3903091

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3903091


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - security bug in ws4ee

2005-10-24 Thread dpocock

Hi,

I've just discovered this bug.

I have two applications in JBoss.  The first is lm.war, a web app.  It contains 
users.properties and roles.properties files for the UsersRolesLoginModule.

I also have an application call cm.ear.  It contains a working WS4EE EJB Web 
service, cm.jar.  cm.jar also contains users.properties and roles.properties

When I try to access the secured web service, the UsersRolesLoginModule 
authenticates me against the users in lm.war, rather than those is cm.jar.  Is 
this some kind of classpath error?

As a work around, I am defining an individual login module in 
conf/login-config.xml, and using unique filenames instead of just 
users.properties and roles.properties.  However, this is not ideal.

Regards,

Daniel

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3903087#3903087

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3903087


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - is multipart/form-data meant to work?

2005-07-03 Thread dpocock


I am trying file upload in a struts application

It works fine in regular struts

When I access the application through the struts bridge, the property myFile in 
my ActionForm is null.

In fact, when the enctype is multipart/form-data, none of the properties from 
the web form are available in the ActionForm - they are all null



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883484#3883484

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883484


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - fmt:formatDate bug with struts bridge?

2005-07-02 Thread dpocock


I made a simple jsp that tests the JSTL tag fmt:formatDate:

  


When access directly through JBoss and struts, it works.  When tested through 
the JBoss portal, with the struts bridge, it gives this exception:

Error Type  java.lang.NullPointerException
Stacktrace  
org.apache.taglibs.standard.tag.common.core.Util.getRequestLocales(Util.java:281)
org.apache.taglibs.standard.tag.common.fmt.SetLocaleSupport.findFormattingMatch(SetLocaleSupport.java:404)
org.apache.taglibs.standard.tag.common.fmt.SetLocaleSupport.getFormattingLocale(SetLocaleSupport.java:276)
org.apache.taglibs.standard.tag.common.fmt.FormatDateSupport.doEndTag(FormatDateSupport.java:116)
org.apache.jsp.WEB_002dINF.jsp.admin.test1_jsp._jspx_meth_fmt_formatDate_0(org.apache.jsp.WEB_002dINF.jsp.admin.test1_jsp:121)
org.apache.jsp.WEB_002dINF.jsp.admin.test1_jsp._jspService(org.apache.jsp.WEB_002dINF.jsp.admin.test1_jsp:89)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)


Is there something special I have to do in order to use this JSTL?  I believe I 
have the latest versions of all the relevent JARs.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883458#3883458

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883458


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Struts bridge security output bug

2005-07-01 Thread dpocock

I believe that either I've discovered a bug in the bridging mechanism, or I'm 
not using it correctly.

Some of my struts actions are protected by a `roles' parameter in the 
ActionMapping line in struts-config.xml

When I go directly to the action using an appropriate portal URL (eg 
http://localhost:8080/portal/index.html?ctrl:id=window.default.LeadAdminWindow&ctrl:type=action&_spage=%2Fadmin%2FViewLeads.do
 ) I get the appropriate 403 error.  Although not very pretty, this message 
helps the user realise they must log in.

However, when I specify the struts action as the `ViewPage' parameter in my 
portlet.xml and then access the portlet using a regular URL (eg 
http://localhost:8080/portal/index.html?ctrl:id=page.default.leadsadmin ) the 
403 message doesn't appear - just the portal title and nothing else.  I suspect 
that struts is blocking access to the action, but the error message is not 
being displayed by the bridge or the portlet container/portal.  Therefore, the 
user doesn't know what is wrong.




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883415#3883415

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883415


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Multi-portal hosting

2005-07-01 Thread dpocock

I'm looking at hosting 3 independent portal sites in a single JBoss instance.

Each site must have it's own independent set of users/admins and it's own 
independent CMS repository.  

Is JBoss Portal intended to be used this way and is there a howto for achieving 
this?

It appears that many options (eg the webdav file repository location) are 
referred to in more than one place.  Can parameters like this be easily set on 
a per-portal basis?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883414#3883414

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883414


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JbossWS and polymorphism?

2005-06-20 Thread dpocock
These are from the jaxrpc-mapping.xml file, both types appear to be mapped 
correctly.  By the way, how do I make the forum display XML correctly?

< java-xml-type-mapping>
< java-type>com.uecommerce.telacct.ws.AgentPaymentSchemeOptions< /java-type>
< root-type-qname 
xmlns:typeNS="http://www.uecommerce.com/telacct";>typeNS:AgentPaymentSchemeOptions<
 /root-type-qname>
< qname-scope>complexType< /qname-scope>


< java-xml-type-mapping>
< java-type>com.uecommerce.telacct.ws.WPPaymentSchemeOptions< /java-type>
< root-type-qname 
xmlns:typeNS="http://www.uecommerce.com/telacct";>typeNS:WPPaymentSchemeOptions< 
/root-type-qname>
< qname-scope>complexType< /qname-scope>




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882102#3882102

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882102


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JbossWS and polymorphism?

2005-06-20 Thread dpocock
The WSDL defines the return type as `AgentOptions', which is defined:

   < complexType name="AgentOptions">
< sequence>
 < element name="agentId" type="xsd:int"/>
 < element name="apso" nillable="true" 
type="impl:AgentPaymentSchemeOptions"/>
 < element name="defaultTariff" type="xsd:int"/>
 < element name="logoURL" nillable="true" type="soapenc:string"/>
 < element name="profitAccount" type="xsd:int"/>
 < element name="tariffMargin" type="xsd:double"/>
< /sequence>
   < /complexType>

The `apso' element can contain an instance of either of the following two 
types, also defined in the WSDL (notice that the second type extends the first):

   
< sequence>
 < element name="null" nillable="true" type="soapenc:string"/>
< /sequence>
   < /complexType>

   < complexType name="WPPaymentSchemeOptions">
< complexContent>
 < extension base="impl:AgentPaymentSchemeOptions">
  < sequence>
   < element name="callBackPw" nillable="true" type="soapenc:string"/>
   < element name="instId" type="xsd:int"/>
   < element name="md5Secret" nillable="true" type="soapenc:string"/>
   < element name="minimumPayment" type="xsd:int"/>
   < element name="pageFooter" nillable="true" type="soapenc:string"/>
   < element name="pageHeader" nillable="true" type="soapenc:string"/>
   < element name="paymentsAccount" type="xsd:int"/>
   < element name="siteCode" nillable="true" type="soapenc:string"/>
  < /sequence>
 < /extension>
< /complexContent>
   < /complexType>


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882099#3882099

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882099


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JbossWS and polymorphism?

2005-06-19 Thread dpocock
The forum software messed up the tags, here is the example again:

http://www.uecommerce.com/telacct";>
   < getAgentOptionsReturn>
  <  agentId>10223< /agentId>
  <  apso >
 <   null xsi:nil="1"/>
 <   callBackPw>x< /callBackPw>
 <   instId>12345< /instId>


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882045#3882045

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882045


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - JbossWS and polymorphism?

2005-06-19 Thread dpocock


Because of the problems I was having getting my Axis based application to run 
in 4.0.2, I decided to try and convert it to the JBossWS model, but I have 
discovered problems with polymorphism in return values.

The `AgentPaymentSchemeOptions' complex type is subclassed by the complex type 
`WPPaymentSchemeOptions'.The `apso' element of the complex type returned by 
`getAgentOptions' can be either the superclass or the subclass.  Yet when the 
subclass is returned, JBossWS fails to distinguish the fact that it is a 
subclass.  This worked fine with regular Axis.

In this example below, the  tag should contain an attribute (I believe it is 
meant to be`') stating the run time 
type of the return value:



http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
 
  http://www.uecommerce.com/telacct";>
   
10223

 
 X
 12345


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882044#3882044

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882044


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: 4.0.2 breaks Axis

2005-06-19 Thread dpocock

Here is some SOAP output that is accepted by the client application (generated 
by Axis running with JBoss 4.0.0RC1):


http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
 
  http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:ns1="http://www.uecommerce.com/telacct";>
   http://schemas.xmlsoap.org/soap/encoding/";>








Here is the output from the same Axis based application when runningin within 
JBoss 4.0.2, notice that soapenc:arrayType now equals 
`ArrayOfCustomerDetails[8]' rather than `CustomerDetails[8]'.:


http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  
http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:ns1="http://www.uecommerce.com/telacct";>
  http://schemas.xmlsoap.org/soap/encoding/";>





View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882032#3882032

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882032


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - 4.0.2 breaks Axis

2005-06-19 Thread dpocock
I have an application that I developed last year, while the WS4EE code was 
still quite primitive.  It uses the regular Axis distribution - Axis' JAR files 
are bundled into a servlet WAR file, which is then bundled into my 
application's EAR file.

When the application is deployed on JBoss 4.0.0RC1, it works fine.

When deployed on JBoss 4.0.2, there are problems with functions that return 
arrays of complex types.  When I send a SOAP request by hand, the XML output 
looks very different.  When invoked within the client application, the endpoint 
(based on Axis 1.2.1 client library) returns an array of nulls instead of an 
array of complex types.

Is it possible that something in the JBoss classpath is messing things up?  Has 
anyone else had this problem?

I've tried removing ws4ee completely from the `deploy' directory (and 
restarting), that didn't help.  Are there any other JARs that should be removed 
if I am using regular Axis?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882031#3882031

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882031


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user