Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. varocho

    Generate Swagger documentation from a JAR file

    Is there a way to generate Swagger documentation for Java classes residing within a JAR file?
  2. varocho

    Need to have gradle build file reference database-connection info within 'application.yml' file

    Is there a way for a gradle build file to reference database-connection information stored in an 'application.yml' file?
  3. varocho

    Need to download Excel file from Sharepoint

    Turns out I needed to get the version of the SharePoint URL that specified a folder path to the file (a 'Shared_Documents' URL). Once I got this, I was able to use the 'open_binary' method of the 'File' class to successfully download the Excel file from SharePoint.
  4. varocho

    Need to download Excel file from Sharepoint

    I'm working on a Python (3.7) script to download an Excel (XLSX) file from within Sharepoint. I've tried using the 'requests' module, as well as the 'Office365-REST-Python-Client' module, without success. I'm unable to open the downloaded file using Excel, the error message indicates that the...
  5. varocho

    Spring framework-Getting error msg upon form submission

    I'm working on a Web application developed using the Spring framework, version 3.1.0. I have a JSP page containing a form which allows the user to select a country from a SELECT dropdown listbox. Submitting the form is supposed to run a database query and return the same JSP page which includes...
  6. varocho

    Creating a new thread from a servlet class

    Hello, everyone. I'm currently maintaining a Java Web application that allows the user to search across a number of different wikis. There is a requirement to perform a wiki availability check within a servlet (*) every so often, say every 30 minutes, and this check is being done by a class that...
  7. varocho

    Creating a stateless session EJB

    Can anyone point me to a good tutorial on creating a stateless session bean for a Web application running under WebSphere? I'm using WebSphere 7 and STS 2.7.2.
  8. varocho

    Can't run main class from JAR file

    The other developer I was working with figured it out, and it was as TonHu mentioned, one of the import statements wasn't resolved at runtime. To be a little more specific, a 'LogFactory' class that was referenced in the parent class of 'MyClass' didn't actually exist within the JAR file for...
  9. varocho

    Can't run main class from JAR file

    With respect to the javaCmdOutput.txt file, I see lines like: [Loaded java.lang.Object from shared objects file] [Loaded java.io.Serializable from shared objects file] [Loaded java.lang.Comparable from shared objects file] and similar lines for only 5 classes from the 'com' package, including...
  10. varocho

    Can't run main class from JAR file

    After unjarring the file, I ran this command to run the main() method of the specified Main-Class: java -cp .;lib\JARfile1.jar;lib\JARfile2.jar com.mycompany.package1.MyClass and still got this error message: Exception in thread "main" Could not find the main class...
  11. varocho

    Can't run main class from JAR file

    I'm trying to run the main() method of a class contained within a JAR file. Here's the error message I get: Exception in thread "main" Could not find the main class: com.mycompany.package1.MyClass. Program will exit. Here's what the manifest file looks like: Manifest-Version: 1.0...
  12. varocho

    link chart component

    Can someone recommend a link chart component for use within a Web application?
  13. varocho

    Semantic technologies

    RDF, OWL
  14. varocho

    Semantic technologies

    What semantic technologies are supported by the latest version of DB2?
  15. varocho

    Semantic technologies

    What semantic technologies are supported by the latest version of Adaptive Server?
  16. varocho

    Converting JSON string to JavaScript array

    I have some JavaScript that processes data returned from a Web service call: var jsonObject = eval('obj=' + data); var result = jsonObject['GetOffices']['offices']; The value of the 'result' variable is: [{"streetAddress":"1501 Main...
  17. varocho

    Need to parse a JSON string

    Thanks, Feherke
  18. varocho

    Need to parse a JSON string

    I have a JSP page that calls a Web service, and a JSON string is returned, which looks like this: {"GetCustomerInfo": {"val": "Joe Schmoe"}} How can I get the value of "val", using JavaScript?
  19. varocho

    need help writing query for XQSequence object

    Ok, I figured out my mistake, I needed to prefix element names with namespace IDs.
  20. varocho

    need help writing query for XQSequence object

    I'm using the XQuery API, and I need help writing the query for the XQSequence object. My XML document has a root element named 'SensorML', which has a single child element named 'member', which has a single child element named 'System'. My query for the XQSequence object looks like this...

Part and Inventory Search

Back
Top