Ok I finally found out even if I'm not sure what has really made the difference afetr the multiple reinstallations and successive configurations.
Here is the mysql-ds.xml that I put in the deploy folder (I let the hsql-ds.xml)
<datasources>
| <local-tx-datasource>
| <jndi-name>cuoreds</jndi-name> <connection-url>jdbc:mysql://localhost:3306/cuore?jdbcCompliantTruncation=false</connection-url>
| <driver-class>com.mysql.jdbc.Driver</driver-class>
| <user-name>root</user-name>
| <password>123456</password> <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter</exception-sorter-class-name>
| <metadata>
| <type-mapping>mySQL</type-mapping>
| </metadata>
| </local-tx-datasource>
| </datasources>
I also add the mysql-connector-version-bn.jar file in the lib folder.
And that's it.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155889#4155889
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155889
I'm having problems with SOAP fault declaration from JOSSO. It is like this:
<wsdl:message name="IdentityProvisioningException">
<wsdl:part name="fault" type="impl:IdentityProvisioningException" />
</wsdl:message>
The problem is 'type' attribute which according to WS-Basic Profile http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html#Bindings_an....
So 'type' should be replaced by 'element' attribute. The warning message from WCF SvcUtil is:
Warning: Fault named IdentityProvisioningException in operation resolveAuthenticationAssertion cannot be imported. Unsup
ported WSDL, the fault message part must reference an element. This fault message does not reference an element. If you
have edit access to the WSDL document, you can fix the problem by referencing a schema element using the 'element' attri
bute.
And I don't know where to start with this problem. Is is JBoss issue (Ws-BP is supported here I think), JOSSO issue or WCF problem?
Thanks in advance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155885#4155885
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155885
It's the JAXWS API that uses a service loader mechanism to pull the implementation. You have to make sure that WS invocation don't have the Sun API (jaxws-rt.jar, jaxws-tools.jar, jaxws-api.jar) on the classpath. JBossWS ships with it's own impl. of the API wich then delegates to the correct provider implementation: jboss-jaxws.jar
It's a little tricky to get both tooling and web service invocations into the project, because tooling still requires those jars mentioned above.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155882#4155882
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155882
I am using JBoss to run an ATG application but I get this line about inability to start the JBoss service. Please see specific error message below:
WARN [ServiceController] Problem starting service jboss:service=Hypersonic, database=localDB
java.sql.SQLException: error in script file line: 1 Unexpected token: NOTAS in statement [Notas]...
a lot of error messages follow these lines and my application does not start.
Please help.
Thanks
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155877#4155877
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155877
Dear All ,
I am very new to EJB 3.0. And trying to call a remote statefull sesssion bean. Will u please give me the sample code to lookup the bean. And necessary jars that i need to put in my client code classpath.
I have tried all the things to look up the bean that have been posted on jboss forum . Always i am getting the exception as a "Name Not Found Exception ".
Even InitialContext ic ;
ic.list(ejb);
is giving the same exception. By using the above method i am trying to get the JNDI names bound in JNDI tree.
Please help me. I am using Jboss 4.2.0GA.
Thanks in advance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155873#4155873
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155873