Need help in integrating the below java code in angular js - html

Need help in integrating the below java code in angular js
#RequestMapping(value = "/uploadDocumentAsmt", method = RequestMethod.POST, produces = "application/json")
// public int asmt10UploadDocument(HttpSession session, #RequestBody InputParameters parameters) {
public Map<String, String> uploadDocumentAsmt( #RequestBody InputParameters parameters) {
Map<String, String> Resultmap=new HashMap<>();
String fileName=parameters.getDocumentsDTOList().get(0).getFileName();
String fileSize=parameters.getDocumentsDTOList().get(0).getFileSize();
String docType=parameters.getDocumentsDTOList().get(0).getDocType();
String gst=parameters.getGstin();
String fileFormat=parameters.getDocumentsDTOList().get(0).getFileBaseSixtyFourFormat();
System.out.println("Form=="+fileFormat+"==FN=="+fileName+"==FS=="+fileSize+"==DT=="+docType+"==GST=="+gst);
try {
logger.info("addCancelDetails Method is executing...");
// UserBean userBean = (UserBean) session.getAttribute("user");
if(Objects.nonNull(parameters.getDocumentsDTOList())){
byte[] base64Bytes = org.apache.commons.codec.binary.Base64.decodeBase64(parameters.getDocumentsDTOList().get(0).getFileBaseSixtyFourFormat());
Tika tika = new Tika();
String docformat = tika.detect(base64Bytes);
logger.info("Actual Doc format is-->"+docformat);
logger.info("File Name=========" + parameters.getDocumentsDTOList().get(0).getFileName());
logger.info("File Size=====" + parameters.getDocumentsDTOList().get(0).getFileSize());
logger.info("Document Type=====" + parameters.getDocumentsDTOList().get(0).getDocType());
logger.info("GSTIN======" + parameters.getGstin());
//logger.info("phdate" + parameters.getPhTime());
parameters.setDocFormat(docformat);
logger.info("NMext GSTIN======" + parameters.getGstin());
if(!((docformat.equalsIgnoreCase("PDF")) || (docformat.equalsIgnoreCase("JPEG")) ||
(docformat.equalsIgnoreCase("JPG")) || (docformat.equalsIgnoreCase("application/pdf"))
|| (docformat.equalsIgnoreCase("image/jpeg")) || (docformat.equalsIgnoreCase("image/jpg"))) &&
(Long.valueOf(parameters.getDocumentsDTOList().get(0).getFileSize()) <1024000L)){
// return -4;.
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.INVALID_FORMAT);
}
}
if(parameters.getGstin()==null || parameters.getGstin()=="" || parameters.getGstin().equalsIgnoreCase("null")){
//return -5;
System.out.println("Empty GST");
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.EMPTY_GSTN);
}
if(parameters.getDocumentsDTOList().get(0).getFileName()==""
|| parameters.getDocumentsDTOList().get(0).getFileName()==null
||parameters.getDocumentsDTOList().get(0).getFileName().equalsIgnoreCase("null")){
//return -6;
System.out.println("Empty File Name");
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.EMPTY_FILE);
}
if(parameters.getDocumentsDTOList().get(0).getFileSize()==null
|| parameters.getDocumentsDTOList().get(0).getFileSize()==""
||parameters.getDocumentsDTOList().get(0).getFileSize().equalsIgnoreCase("null")){
//return -7;
System.out.println("Empty Size");
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.INVALID_FILESIZE);
}
if(!(parameters.getDocumentsDTOList().get(0).getDocType()==null )
|| !(parameters.getDocumentsDTOList().get(0).getDocType()=="")
|| !(parameters.getDocumentsDTOList().get(0).getDocType().equalsIgnoreCase("null"))){
//return -8;
System.out.println("Empty DocType");
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.INVALID_DOCTYPE);
}
if(!(parameters.getDocumentsDTOList().get(0).getDocType().equalsIgnoreCase("AD"))
|| !(parameters.getDocumentsDTOList().get(0).getDocType().equalsIgnoreCase("SD"))
|| !(parameters.getDocumentsDTOList().get(0).getDocType().equalsIgnoreCase("MD")))
{
//return -9;
System.out.println("Empty Doc Type");
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,ScrutinyCommonConstants.INVALID_DOCTYPE);
}
System.out.println("Form=="+StringUtils.isBlank(fileFormat)+"==FN=="+StringUtils.isBlank(fileName));
System.out.println("==FS=="+StringUtils.isBlank(fileSize)+"==DT=="+StringUtils.isBlank(docType));
System.out.println("==GST=="+StringUtils.isBlank(gst));
System.out.println("If=="+((StringUtils.isBlank(fileFormat)) && (StringUtils.isBlank(fileName)) &&
(StringUtils.isBlank(fileSize)) && (StringUtils.isBlank(docType)) && (StringUtils.isBlank(gst))));
if (!(StringUtils.isBlank(fileFormat)) && !(StringUtils.isBlank(fileName)) &&
!(StringUtils.isBlank(fileSize)) && !(StringUtils.isBlank(docType)) && !(StringUtils.isBlank(gst)))
// if(!(docformat)
// else
{
String result="";
System.out.println("Non - Empty Size");
result=taskListService.uploadDocumentAsmt(parameters);
Resultmap.put(ScrutinyCommonConstants.SUCCESS_MSG,result);
}
} catch (Exception ex) {
logger.error(CommonConstants.EXCEPTION_OCCURED + ex);
}
return Resultmap;
}

Related

Can't request data from website to Arduino using PHP and JSON

Please help me. I did many and various way including changing flash firmware many versions but still it cannot request data from my website to display on Arduino LCD. I also try a few coding with wifiesp and without still it cannot read my Json file.
void loop() {
String payload = "";
bool parse_json = false;
char web_host[] = "putraelection.000webhostapp.com";
if (client.connect(web_host, 80)) {
Serial.println("CONNECT HOST");
String url = "/reqdatacalon.php";
client.print("GET " + url + "HTTP/1.0\r\n" +
"Host: " + web_host + "\r\n" +
//"Accept: application/json\r\n" +
//"Content-Type: text/html\r\n" +
"Connection: Keep-Alive\r\n" +
"\r\n");
while (client.connected() || client.available()) {
if (client.available()) {
//char c = client.read();
String b = client.readString();
Serial.println(b);
/*if (c == '{') {
parse_json = true;
}
if (parse_json) {
payload += c;
}*/
}
}
client.stop();
}
Serial.print("data");
Serial.println(payload);
payload.trim();
if (payload != "") {
DeserializationError error = deserializeJson(doc, payload);
if (error) {
Serial.println("ERROR JSON");
} else {
String can1 = doc["CANDIDATE 1"];
Serial.println ("calon 1:" +can1);
}
} else {
Serial.println("data kosong");
}
delay(5000);
}

Logstash: Flatten nested JSON, combine fields inside array

I have a JSON looking like this:
{
"foo": {
"bar": {
"type": "someType",
"id": "ga241ghs"
},
"tags": [
{
"#tagId": "123",
"tagAttributes": {
"attr1": "AAA",
"attr2": "111"
}
},
{
"#tagId": "456",
"tagAttributes": {
"attr1": "BBB",
"attr2": "222"
}
}
]
},
"text": "My text"
}
Actually it's not split to multiple lines (just did it to give a better overview), so it's looking like this:
{"foo":{"bar":{"type":"someType","id":"ga241ghs"},"tags":[{"#tagId":"123","tagAttributes":{"attr1":404,"attr2":416}},{"#tagId":"456","tagAttributes":{"attr1":1096,"attr2":1103}}]},"text":"My text"}
I want to insert this JSON with Logstash to an Elasticsearch index. However, I want to insert a flattened JSON with the fields in the array combined like this:
"foo.bar.tags.tagId": ["123", "456"]
"foo.tags.tagAttributs.attr1": ["AAA", "BBB"]
"foo.tags.tagAttributs.attr2": ["111", "222"]
In total, the data inserted to Elasticsearch should look like this:
"foo.bar.type": "someType"
"foo.bar.id": "ga241ghs"
"foo.tags.tagId": ["123", "456"]
"foo.tags.tagAttributs.attr1": ["AAA", "BBB"]
"foo.tags.tagAttributs.attr2": ["111", "222"]
"foo.text": "My text"
This is my current Logstash .conf; I am able to split the "tags" array, but now I am getting 2 entries as a result.
How can I now join all tagIds to one field, attr1 values of the array to one field, and all attr2 values to another?
input {
file {
codec => json
path => ["/path/to/my/data/*.json"]
mode => "read"
file_completed_action => "log"
file_completed_log_path => ["/path/to/my/logfile"]
sincedb_path => "/dev/null"
}
}
filter {
split {
field => "[foo][tags]"
}
}
output {
stdout { codec => rubydebug }
}
Thanks a lot!
Nice example for my JSON iterator IIFE - no need for complex algos, just pick DepthFirst, sligthly modified path (new "raw" version) and that is it.
In case you like this JS answer, mind ticking accept flag under voting buttons.
In case you want different language, have also C# parser with similar iterators on same GitHub.
var src = {"foo":{"bar":{"type":"someType","id":"ga241ghs"},"tags":[{"#tagId":"123","tagAttributes":{"attr1":"AAA","attr2":"111"}},{"#tagId":"456","tagAttributes":{"attr1":"BBB","attr2":"222"}}],"text":"My text"}};
//console.log(JSON.stringify(src, null, 2));
function traverse(it) {
var dest = {};
var i=0;
do {
if (it.Current().HasStringValue()) {
var pathKey = it.Path(true).join('.');
var check = dest[pathKey];
if (check) {
if (!(check instanceof Array)) dest[pathKey] = [check];
dest[pathKey].push(it.Value());
} else {
dest[pathKey] = it.Value();
}
}
//console.log(it.Level + '\t' + it.Path(1).join('.') + '\t' + it.KeyDots(), (it.Value() instanceof Object) ? "-" : it.Value());
} while (it.DepthFirst());
console.log(JSON.stringify(dest, null, 2));
return dest;
}
/*
* https://github.com/eltomjan/ETEhomeTools/blob/master/HTM_HTA/JSON_Iterator_IIFE.js
* +new raw Path feature
*/
'use strict';
var JNode = (function (jsNode) {
function JNode(_parent, _pred, _key, _value) {
this.parent = _parent;
this.pred = _pred;
this.node = null;
this.next = null;
this.key = _key;
this.value = _value;
}
JNode.prototype.HasOwnKey = function () { return this.key && (typeof this.key != "number"); }
JNode.prototype.HasStringValue = function () { return !(this.value instanceof Object); }
return JNode;
})();
var JIterator = (function (json) {
var root, current, maxLevel = -1;
function JIterator(json, parent) {
if (parent === undefined) parent = null;
var pred = null, localCurrent;
for (var child in json) {
var obj = json[child] instanceof Object;
if (json instanceof Array) child = parseInt(child); // non-associative array
if (!root) root = localCurrent = new JNode(parent, null, child, json[child]);
else {
localCurrent = new JNode(parent, pred, child, obj ? ((json[child] instanceof Array) ? [] : {}) : json[child]);
}
if (pred) pred.next = localCurrent;
if (parent && parent.node == null) parent.node = localCurrent;
pred = localCurrent;
if (obj) {
var memPred = pred;
JIterator(json[child], pred);
pred = memPred;
}
}
if (this) {
current = root;
this.Level = 0;
}
}
JIterator.prototype.Current = function () { return current; }
JIterator.prototype.SetCurrent = function (newCurrent) {
current = newCurrent;
this.Level = 0;
while(newCurrent = newCurrent.parent) this.Level++;
}
JIterator.prototype.Parent = function () {
var retVal = current.parent;
if (retVal == null) return false;
this.Level--;
return current = retVal;
}
JIterator.prototype.Pred = function () {
var retVal = current.pred;
if (retVal == null) return false;
return current = retVal;
}
JIterator.prototype.Node = function () {
var retVal = current.node;
if (retVal == null) return false;
this.Level++;
return current = retVal;
}
JIterator.prototype.Next = function () {
var retVal = current.next;
if (retVal == null) return false;
return current = retVal;
}
JIterator.prototype.Key = function () { return current.key; }
JIterator.prototype.KeyDots = function () { return (typeof (current.key) == "number") ? "" : (current.key + ':'); }
JIterator.prototype.Value = function () { return current.value; }
JIterator.prototype.Reset = function () {
current = root;
this.Level = 0;
}
JIterator.prototype.RawPath = function () {
var steps = [], level = current;
do {
if (level != null && level.value instanceof Object) {
steps.push(level.key + (level.value instanceof Array ? "[]" : "{}"));
} else {
if (level != null) steps.push(level.key);
else break;
}
level = level.parent;
} while (level != null);
var retVal = "";
retVal = steps.reverse();
return retVal;
}
JIterator.prototype.Path = function (raw) {
var steps = [], level = current;
do {
if (level != null && level.value instanceof Object) {
var size = 0;
var items = level.node;
if (typeof (level.key) == "number" && !raw) steps.push('[' + level.key + ']');
else {
if(raw) {
if (typeof (level.key) != "number") steps.push(level.key);
} else {
while (items) {
size++;
items = items.next;
}
var type = (level.value instanceof Array ? "[]" : "{}");
var prev = steps[steps.length - 1];
if (prev && prev[0] == '[') {
var last = prev.length - 1;
if (prev[last] == ']') {
last--;
if (!isNaN(prev.substr(1, last))) {
steps.pop();
size += '.' + prev.substr(1, last);
}
}
}
steps.push(level.key + type[0] + size + type[1]);
}
}
} else {
if (level != null) {
if (typeof (level.key) == "number") steps.push('[' + level.key + ']');
else steps.push(level.key);
}
else break;
}
level = level.parent;
} while (level != null);
var retVal = "";
retVal = steps.reverse();
return retVal;
}
JIterator.prototype.DepthFirst = function () {
if (current == null) return 0; // exit sign
if (current.node != null) {
current = current.node;
this.Level++;
if (maxLevel < this.Level) maxLevel = this.Level;
return 1; // moved down
} else if (current.next != null) {
current = current.next;
return 2; // moved right
} else {
while (current != null) {
if (current.next != null) {
current = current.next;
return 3; // returned up & moved next
}
this.Level--;
current = current.parent;
}
}
return 0; // exit sign
}
JIterator.prototype.BreadthFirst = function () {
if (current == null) return 0; // exit sign
if (current.next) {
current = current.next;
return 1; // moved right
} else if (current.parent) {
var level = this.Level, point = current;
while (this.DepthFirst() && level != this.Level);
if (current) return 2; // returned up & moved next
do {
this.Reset();
level++;
while (this.DepthFirst() && level != this.Level);
if (current) return 3; // returned up & moved next
} while (maxLevel >= level);
return current != null ? 3 : 0;
} else if (current.node) {
current = current.node;
return 3;
} else if (current.pred) {
while (current.pred) current = current.pred;
while (current && !current.node) current = current.next;
if (!current) return null;
else return this.DepthFirst();
}
}
JIterator.prototype.ReadArray = function () {
var retVal = {};
var item = current;
do {
if (item.value instanceof Object) {
if (item.value.length == 0) retVal[item.key] = item.node;
else retVal[item.key] = item;
} else retVal[item.key] = item.value;
item = item.next;
} while (item != null);
return retVal;
}
JIterator.prototype.FindKey = function (key) {
var pos = current;
while (current && current.key != key) this.DepthFirst();
if (current.key == key) {
var retVal = current;
current = pos;
return retVal;
} else {
current = pos;
return null;
}
}
return JIterator;
})();
traverse(new JIterator(src));
Your short JSON version was different, now using this one, which looks like your required results (attrs changed and text moved from root under foo):
{
"foo": {
"bar": {
"type": "someType",
"id": "ga241ghs"
},
"tags": [
{
"#tagId": "123",
"tagAttributes": {
"attr1": "AAA",
"attr2": "111"
}
},
{
"#tagId": "456",
"tagAttributes": {
"attr1": "BBB",
"attr2": "222"
}
}
],
"text": "My text"
}
}
Figured it out how to do it with a Ruby filter directly in Logstash - for all searching for this in future, here is one example on how to do it for #tagId:
filter {
ruby { code => '
i = 0
tagId_array = Array.new
while i < event.get( "[foo][tags]" ).length do
tagId_array = tagId_array.push(event.get( "[foo][tags][" + i.to_s + "][#tagId]" ))
i += 1
end
event.set( "foo.tags.tagId", tagId_array )
'
}
}

How to print Arabic Text using bluetooth printer in windows phone 8 silver light app?

We need to print Arabic text using Bluetooth Printer in windows phone 8 silver light app. Printing is working fine for English When we are trying to print Arabic text it is not printing as expected? Sample code is given Below:
Public async void PrintTest(string text)
{
var isConnected= await RefreshPairedDevicesList()
if (isConnected)
{
try
{
if (_socket != null)
{
DataWriter writer = new DataWriter(_socket.OutputStream);
writer.WriteString(text);
writer.WriteBytes(Cmd_ESC_JN); // byte[] Cmd_ESC_JN = new byte[] { 27, 74, 230 };
writer.StoreAsync();
}
}
catch { }
}
}
public async Task<bool> RefreshPairedDevicesList()
{
try
{
PeerFinder.AlternateIdentities["Bluetooth:Paired"] = "";
var peers = await PeerFinder.FindAllPeersAsync();
if (peers == null && peers.Count == 0)
{
MessageBox.Show("NoPairedDevices");
return false;
}
else
{
// Found paired devices.
foreach (var peer in peers)
{
_pairedDevices.Add(new PairedDeviceInfo(peer));
}
PairedDeviceInfo connectedDeive = _pairedDevices.FirstOrDefault();
var issuccess = await ConnectToDevice(connectedDeive.PeerInfo);
return issuccess;
}
}
catch (Exception ex)
{
if ((uint)ex.HResult == 0x8007048F || (int)ex.HResult == -2147467259)
{
var result = MessageBox.Show(MyStoreWP8AppConstants.Msg_BluetoothOff, "Bluetooth Off", MessageBoxButton.OKCancel);
if (result == MessageBoxResult.OK)
{
ShowBluetoothcControlPanel();
}
return false;
}
else if ((uint)ex.HResult == 0x80070005)
{
MessageBox.Show(MyStoreWP8AppConstants.Msg_MissingCaps);
return false;
}
else
{
MessageBox.Show(ex.Message);
return false;
}
}
}
private async Task<bool> ConnectToDevice(PeerInformation peer)
{
if (_socket != null)
{
_socket.Dispose();
_socket = null;
}
try
{
_socket = new StreamSocket();
string serviceName = peer.ServiceName;
serviceName = String.IsNullOrWhiteSpace(serviceName) ? "1" : serviceName;
await _socket.ConnectAsync(peer.HostName, serviceName);
return true;
}
catch (TaskCanceledException taskEx)
{
return false;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
if (_socket != null)
_socket.Dispose();
_socket = null;
return false;
}
}
Could anyone please help us.
Thanks and Regards,
WinitWindowsTeam.

Windows phone 8 LongListMultiSelector dynamically select items

How to dynamically (in code behind) select few items in Windows Phone Toolkit's LongListMultiSelector. The property SelectedItems has no setter.
My code:
private async void GetGenres()
{
var genres = await App.MusClient.GetGenresAsync();
var preferencedGenresIdsList = App.GetFromIsoStorage<List<string>>(App.GENRES_IDS_KEY_STRING);
GenresListBox.ItemsSource = genres;
foreach (var item in GenresListBox.ItemsSource)
{
if (preferencedGenresIdsList.Contains(((Genre)item).Id))
{
LongListMultiSelectorItem container = GenresListBox.ContainerFromItem(item) as LongListMultiSelectorItem;
if (container != null)
{
container.IsSelected = true;
}
}
}
if (genres.Result == null || genres.Count == 0)
{
MessageBox.Show("No results available");
}
}
I found solution
private async void GetGenres()
{
var genres = await App.MusClient.GetGenresAsync();
var preferencedGenresIdsList = App.GetFromIsoStorage<List<string>>(App.GENRES_IDS_KEY_STRING);
GenresListBox.ItemsSource = genres;
foreach (var item in GenresListBox.ItemsSource)
{
if (preferencedGenresIdsList.Contains(((Genre)item).Id))
{
GenresListBox.ScrollTo(item);
LongListMultiSelectorItem container = GenresListBox.ContainerFromItem(item) as LongListMultiSelectorItem;
if (container != null)
{
container.IsSelected = true;
}
}
}
GenresListBox.ScrollTo(GenresListBox.ItemsSource[0]);
if (genres.Result == null || genres.Count == 0)
{
MessageBox.Show("No results available");
}
}
Reason it didn't work is because item is not created on UI yet.
GenresListBox.ScrollTo(item); - forces UI to create element!

How to do page navigation from non-derived PhoneApplicationPage Windows phone 8

I'm new to Windows phone 8 development. I'm trying to navigate from my AzureFunctions class to another page but I always get this error
Object reference not set to an instance of an object.
I have googled but still can't find any solution. Do you guys have any idea how to achieve this?
My RegisterPage (where I called InsertData method in AzureFunctions class)
private void signUp_button_Click(object sender, RoutedEventArgs e)
{
if (email_validation && password_validation && confirmPassword_validation == true)
{
new AzureFunctions().InsertData(new UserInfo_Table_Azure()
{
Email = regisEmail_textBox.Text,
Password = regisPassword_textBox.Password,
DOB = (DateTime)DOB_picker.Value,
UserCancerInfo = (Boolean)userCancerInfo_checkBox.IsChecked,
FamilyCancerInfo = (Boolean)userFamilyCancerInfo_checkBox.IsChecked
});
}
else
{
String errorMsg = "";
if (email_validation == false)
{
errorMsg += "Your email is not valid\r\n";
regisEmail_textBox.BorderBrush = new SolidColorBrush(Colors.Red);
}
if (password_validation == false)
{
errorMsg += "Your password can't be empty\r\n";
regisPassword_textBox.BorderBrush = new SolidColorBrush(Colors.Red);
}
if (confirmPassword_validation == false)
{
errorMsg += "Your Confirm password and password aren't matched";
comfirmPassword_textBox.BorderBrush = new SolidColorBrush(Colors.Red);
}
MessageBox.Show(errorMsg);
}
}
My AzureFunctions Class
public async void InsertData(object data)
{
try
{
SystemFunctions.SetProgressIndicatorProperties(true);
SystemTray.ProgressIndicator.Text = "Registering...";
//Check type of data
if (IsUserInfo_Data(data))
{
//Insert data into UserInfo_Table
await azure_userInfo_table.InsertAsync((UserInfo_Table_Azure)data);
Debug.WriteLine("Success inserting data to azure");
SystemFunctions.SetProgressIndicatorProperties(false);
MessageBoxResult result = MessageBox.Show(AppResources.RegisterSuccessfully, AppResources.Congratulation, MessageBoxButton.OK);
if (result == MessageBoxResult.OK)
{
try
{
new RegisterPage().NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));
}
catch (NullReferenceException e)
{
Debug.WriteLine(e.Message);
}
}
}
else if (IsPoop_Data(data))
{
//Insert data into Poop_Table
await azure_poop_table.InsertAsync((Poop_Table_Azure)data);
Debug.WriteLine("Success");
}
}
catch (MobileServiceInvalidOperationException e)
{
SystemFunctions.SetProgressIndicatorProperties(false);
Debug.WriteLine("Failed: " + e.Message);
}
}
Not really a good idea to do navigation from a non-Page, but this should work
App.RootFrame.Navigate(...)