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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Disskyz

  1. Disskyz

    Need help with javascript date

    ahhhhhh, that might do it! Let me try
  2. Disskyz

    Need help with javascript date

    I have a timestamp object that looks like this: timestamp = 1430770060000. I want to remove the last 3 numbers which represent miliseconds. Since it is a date object, I can't find a method to remove the miliseconds. I tried to convert the value to a string and then use the slice(0,3) to...
  3. Disskyz

    New to JavaScript, Having a problem with an array

    Thank mikrom, I was able to figure it out!
  4. Disskyz

    New to JavaScript, Having a problem with an array

    I have an object that I manually defined and populated. Looks like this: {"Shipment": [{"Package":[{"TrackingNumber":"", "DeliveryDate":[{"Type":"", "Date:""}], "DeiveryTime":"StartTime:"", "EndTime":"", "Type":""}, "Activity":["Location":{"Address":{"City":"", "StateProvince":""...
  5. Disskyz

    Need help Parsing Json file in Java

    I have a json file that has the following contents: { "Security": { "UsernameToken": { "Username": "username", "Password": "password" }, "UPSServiceAccessToken": { "AccessLicenseNumber": "AccessKey01" } }, "XAVRequest": { "Request": {...
  6. Disskyz

    Parse a complex json is vbscript

    Thank you. Fixed the json: { "Security": { "UsernameToken": { "Username": "nelson1", "Password": "password" }, "UPSServiceAccessToken": { "AccessLicenseNumber": "FC0A24ABA65D5FD0" } }, "XAVRequest": { "Request": { "RequestOption": "1", "TransactionReference": {...
  7. Disskyz

    Parse a complex json is vbscript

    I have never coded in vbscript. I need help parsing a json file...I need to store the username, password and accesslicensekey in variables. Here is a sample of the json file: {"Security":{"UsernameToken":{"Username":"nelson1", "Password":"password"}...

Part and Inventory Search

Back
Top