Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K

17 Posted Topics

Member Avatar for bhallarahul

Well, it is possible to call an .exe from java. Take a look at this [URL="http://www.daniweb.com/software-development/java/threads/7710"]thread[/URL]. You can also access native libraries (.dll's or .so's) from Java. To do this you can use [URL="http://java.sun.com/docs/books/jni/"]JNI[/URL] (Java Native Interface) or [URL="https://github.com/twall/jna"]JNA[/URL] (Java Native Access). I personally prefer JNA because it much easier …

Member Avatar for komyg
0
125
Member Avatar for komyg

Hi, I am deveoloping a Web Service solution that is hosted inside a JBoss 4.2.3 sever and connects to a JMS queue that is hosted on another server. So far I am creating a new connection to the JMS queue each time the web service is called, this means that, …

0
62
Member Avatar for komyg

Hi, I am developing a Java SE console application that needs to connect to a web page, get its contents (using HTTP GET) and get the value of a timer that was written in Javascript. If we take [URL="http://www.elated.com/res/File/articles/development/javascript/creating-a-javascript-clock/clock.html"]this[/URL] example page for instance. When I retrieve its contents using HTTP …

Member Avatar for NormR1
0
290
Member Avatar for deucalion0

Hi, Usually I consider a Functional Requirement as something that the system actually does, for example the input and output of the system or things like: "the system will have a contingency structure on the database so that whenever there is an error the intput data will not be lost", …

Member Avatar for deucalion0
0
155
Member Avatar for komyg

Hi, I am developing a REST WCF Web Service using the webHttpBinding. This service is supposed to receive a parameter through HTTP POST and return a byte array (byte[]). However whenever I call the service I get the following respose: [CODE=xml] <base64Binary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">AQEBAAEAFFBBAPQ=</base64Binary> [/CODE] Is there a way to configure …

Member Avatar for komyg
0
430
Member Avatar for komyg

Hi, I am updating a Web Service server from JBoss 4.2.2 to JBoss 5.1, however when I began to use JBoss 5.1 I've got an error saying that one of my properties files could not be loaded. I have put this file in the following path: C:\Servers\jboss-5.1.0.GA\server\default\conf And I am …

Member Avatar for komyg
0
144
Member Avatar for chester1908

Hi, I think that you can get the button that was clicked using the source property of the ActionEvent object that you receive inside your listener. Also you can create a subclass of Button with a property that contains the text that you want to appear on the TextField. This …

Member Avatar for chester1908
0
416
Member Avatar for komyg

Hi, My team is developing a new version of a server software that must support several clients via a web service interface. This software was written in C# and published on IIS. It also uses a Microsoft SQL Server database. The problem is that our client has requested that we …

Member Avatar for komyg
0
287
Member Avatar for komyg

Hi, I need write a batch script to access the Windows Startup folder that is inside the Documents And Settings\All Users. As far as I know there is an environment variable that indicates where this folder is located, however I haven't been able to find out which one is it. …

Member Avatar for komyg
0
103
Member Avatar for komyg

Hi, I am developing a WSDL file for a Web Service and I am having a problem with the XSD schema associated with this WSDL. The Schema is below: [CODE] <wsdl:types> <xsd:schema targetNamespace="SNIPPED"> <!-- Classes de apoio --> <xsd:simpleType name="resultadoOperacao" final="restriction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="OK"/> <xsd:enumeration value="NOK"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType …

Member Avatar for komyg
0
285
Member Avatar for komyg

Hi, I've created a Web Service application inside Jboss 4.2.2-GA and I want to set up the jboss log4j configuration so that my Web Service logs inside a custom log file (not inside the server.xml). To do this I've altered the jboss-log4j.xml file to create another appender. This file is …

Member Avatar for komyg
0
205
Member Avatar for komyg

Hi, I am developing a small Web Service that should send and retreive a String. To do this I wrote the wsdl file below: [code=xml] <?xml version="1.0" encoding="UTF-8" standalone="no"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://itautec.com.br/Sagem/WebService/Impl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SagemWebService" targetNamespace="http://itautec.com.br/Sagem/WebService/Impl"> <wsdl:message name="WS_IdentifyRequest"> <wsdl:part name="parameters" element="xsd:string"/> </wsdl:message> <wsdl:message name="WS_IdentifyResponse"> <wsdl:part name="parameters" element="xsd:string"/> </wsdl:message> <wsdl:portType name="SagemWebService"> …

0
63
Member Avatar for komyg

Hi, I am creating a Web Service from a top down approach (WSDL first) and I am using a datetime element as part of a complex type. The XML Schema definition states that the format of the datetime element should be "YYYY-MM-DDThh:mm:ss", however my costumer has requested that we change …

0
59
Member Avatar for komyg

Hi I've developed a C# program that takes a directory list as its arguments. What I want to do is execute a batch script that would run a command like dir /b and send its ouput to my C# program. I believe that if I were using Linux, my script …

Member Avatar for Salem
0
148
Member Avatar for Alex_is

Could you please post your input text file? Also I believe you can use the method get() from the ArrayList to retrieve an object at a specific index, therefore I think you can use something like: median = myArray.get(medianIndex); Thanks, Komyg

Member Avatar for stevelg
0
405
Member Avatar for komyg

Hi, I am new to JBoss and I need to develop a scalable application that should function as a Web Service (in essence a message exchange service between servers and clients). Furthermore all of the requests and responses to and from this application should be inside a transaction. Reading through …

0
66
Member Avatar for komyg

Hi, I need to develop a C++ application for Linux, and I am worried about its compatibility with between different distros, for example if I develop it on Kubuntu, is it possible that I may have compatibility issues if I run it on Gentoo or Open SUSE for example? In …

Member Avatar for NicAx64
0
178

The End.