This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Java Essentials] | |
| Internet | |
| NetSupport | |
| Camtasia | |
| BB Flash Recorder | |
| Chrome | |
| Firefox | |
| Microphone | |
| Sublime | |
| Notepad++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fe80::20c:29ff:fe0d:1c8b/64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://blog.akquinet.de/2014/09/26/jboss-eap-wildfly-three-ways-to-invoke-remote-ejbs/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.wildfly</groupId> | |
| <artifactId>wildfly-ejb-client-bom</artifactId> | |
| <version>8.1.0.Final</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.wildfly</groupId> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import mytests.ejb.CalculatorRemote; | |
| import javax.naming.Context; | |
| import javax.naming.InitialContext; | |
| import javax.naming.NamingException; | |
| import java.util.Properties; | |
| import java.util.concurrent.ExecutionException; | |
| import java.util.concurrent.Future; | |
| public class Test { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package mytests.jms; | |
| import javax.jms.*; | |
| import javax.naming.Context; | |
| import javax.naming.InitialContext; | |
| import javax.naming.NamingException; | |
| import java.util.Properties; | |
| public class JMSConsumer { | |
| public static void main(String[] args) throws NamingException, JMSException { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.apache.openejb</groupId> | |
| <artifactId>openejb-client</artifactId> | |
| <version>4.7.1</version> | |
| </dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import my_ejb_api.MyNumberGeneratorLocal; | |
| import my_ejb_api.MyNumberGeneratorRemote; | |
| import javax.naming.InitialContext; | |
| import javax.naming.NamingException; | |
| import java.util.Properties; | |
| public class Test { | |
| public static void main(String[] args) throws NamingException { | |
| Properties p = new Properties(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.webometrics.info/en/asia/iran%20%28islamic%20republic%20of%29?sort=asc&order=World%20Rank |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
| <mirrors> | |
| <mirror> | |
| <id>nexus</id> | |
| <mirrorOf>*</mirrorOf> | |
| <url>http://[NEXUS_SERVER_ADDRESS]:8081/nexus/content/groups/public</url> | |
| </mirror> |