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 biv343 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: *

  • Users: varocho
  • Content: Threads
  • Order by date
  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

    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...
  4. 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...
  5. 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...
  6. 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.
  7. 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...
  8. varocho

    link chart component

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

    Semantic technologies

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

    Semantic technologies

    What semantic technologies are supported by the latest version of Adaptive Server?
  11. 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...
  12. 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?
  13. 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...
  14. varocho

    need help validating an XML file against its XSD file

    I need help validating an XML file against its associated XSD file. Here's the beginning of the XML file: <?xml version="1.0" encoding="UTF-8"?> <sps:Capabilities version="1.0.0" updateSequence="" xsi:schemaLocation="http://www.opengis.net/sps spsGetCapabilities.xsd"...
  15. varocho

    Need help with creating XSL stylesheet for SensorML document

    Hello all, I need some help with creating an XSL stylesheet for a SensorML document in which the elements include namespace prefixes. After I modify the SensorML document to reference my XSL stylesheet and try to view the document in Firefox, I get the following error message: XML Parsing...
  16. varocho

    contents of textbox erased after tabbing to next textbox

    I have several data entry pages in my Web application, and they have textboxes that need to appear when their labels are clicked, and disappear when their labels are double-clicked. I'm using JavaScript to make this happen, but for some reason, the only way I can enter any text into a textbox is...
  17. varocho

    can't load table from SQL file

    I have a 1000+-line file of SQL INSERT statements for loading a table. I can copy-and-paste 30 lines from the file into SQL*PLUS at a time, and that works, but I'd rather just open the file in SQL*PLUS directly and load the table directly. But the table doesn't get loaded at all, even though...
  18. varocho

    Korn shell script doesn't change directory

    Maybe one of you can help me figure out what's wrong with the following shell script I wrote earlier today, it's supposed to change directory to the 'ams' application subdirectory, and then print out the name of every file in this subdirectory, as well as display any and all lines within each...
  19. varocho

    converting a single-element list to a number

    Anyone know how to convert a single-element list to a number?
  20. varocho

    ALTER-ing a temp table

    Is it possible to ALTER a temp table in a stored procedure?

Part and Inventory Search

Back
Top