Multi-language application integration
- Type Serialization
- Service Implementation
Technology Software Hardware News Tips and Tricks Architecture Yazılım Mimari Bilgisayar Teknoloji Türkçe İngilizce
You can buy any kind of electronic gadgets from DealExtreme with free shipping option.
Please visit DealExtreme for very low prices.
Here is the link to the site : www.dealextreme.com
zaman:
2/29/2016 09:46:00 am
0
yorum
Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy. You install it in front of any server that speaks HTTP and configure it to cache the contents. Varnish Cache is really, really fast. It typically speeds up delivery with a factor of 300 - 1000x, depending on your architecture.
https://www.varnish-cache.org/
zaman:
3/03/2015 04:19:00 pm
0
yorum
If you want to check if subtasks are resolved during resolving the main task you can add a transition condition to the active workflow
Script workflow function : Simple scripted condition : Checks script:
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.comments.CommentManager;
def subTaskManager = ComponentManager.getInstance().getSubTaskManager();
def result = true
CommentManager commentManager = ComponentManager.getInstance().getCommentManager();
Collection subTasks = issue.getSubTaskObjects()
if (subTaskManager.subTasksEnabled && !subTasks.empty) {
for(i in subTasks) {
commentManager.create (issue, "eyigitbasi", "2 " + i.issueTypeObject.id, false)
if(i.issueTypeObject.id.equals('11')) {
if(i.statusObject.id!=null && (i.statusObject.id.equals('5') || i.statusObject.id.equals('6'))){
result = true
} else {
return false
}
}
}
}
result
zaman:
2/10/2015 10:19:00 am
0
yorum
Just add ".wso?wsdl" to the end point : http://endpoint:port/EndPoint.wso?wsdl
zaman:
9/19/2014 04:54:00 pm
0
yorum
Taken from: http://www.liamdelahunty.com/tips/linux_find_string_files.phpfind . | xargs grep 'string' -slThe -s is for summary and won't display warning messages such as grep: ./directory-name: Is a directoryThe -l is for list, so we get just the filename and not all instances of the match displayed in the results.
Performing the search on the current directory I get:
./javascript_open_new_window_form.php
./excel_large_number_error.php
I find this useful for just quickly seeing which files contain a search time. I would normally limit the files searched with a command such as :find . -iname '*php' | xargs grep 'string' -slAnother common search for me, is to just look at the recently updated files:find . -iname '*php' -mtime -1 | xargs grep 'string' -slwould find only files edited today, whilst the following finds the files older than today:find . -iname '*php' -mtime +1 | xargs grep 'string' -sl
zaman:
11/05/2013 11:14:00 am
0
yorum
Sample condition:
(issue.projectObject.name != "PRJ" && issue.issueTypeObject.name == 'Project') || (issue.projectObject.name == "PRJ" && issue.issueTypeObject.name == 'Incident' && issue.components.name.contains('CRM'))
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.bc.project.component.ProjectComponent
import java.util.List
import java.util.ArrayList
import com.atlassian.jira.bc.project.component.ProjectComponent
def optionsManager = ComponentManager.getComponentInstanceOfType(OptionsManager.class)
def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Support Needed In'}
def fieldConfig = cf.getRelevantConfig(issue)
def option = optionsManager.getOptions(fieldConfig).find {it.value == "Internal Test"}
issue.setCustomFieldValue(cf, option)
issue.summary = issue.summary + " - Support (Internal Test)"
if(issue.projectObject.name == "MSP-PRJ"){
def component = ComponentAccessor.getProjectComponentManager().findByComponentName(10500,'CRM')
Listl = new ArrayList ()
l.add(component)
issue.setAssignee(ComponentAccessor.getUserUtil().getUser('egulec'))
issue.setComponentObjects(l)
}
zaman:
11/05/2013 11:10:00 am
0
yorum
On the View tab, which Arrangement are you using? Conversation is only available with Date arrangement :)
Order by "Received" column and it will be enabled again.
zaman:
10/23/2013 09:44:00 am
0
yorum
Just download the package with wget
Copy the package to /var/cache/apt/archives
run apt-get with the following options:
sudo apt-get install --no-download --fix-missing openntpd
zaman:
9/05/2013 10:30:00 am
0
yorum
export http_proxy=http://username:password@IP:port/
zaman:
9/03/2013 01:28:00 pm
0
yorum
c:\was\AppServer\java\jre\bin\java -Djava.ext.dirs=c:\was\AppServer\deploytool\itp\plugins\com.ibm.websphere.v7_7.0.0.v20080817\wasJars\ -cp securityImpl.jar:iwsorb.jar com.ibm.ws.security.util.PasswordDecoder {xor}pass
This will output the decoded password
zaman:
8/05/2013 03:36:00 pm
0
yorum
for /f "tokens=* delims= " %a in ('dir /b /ad /s') do rename "%a\*.suf1" "*.suf2"
zaman:
9/30/2012 12:11:00 am
0
yorum
d:\IBM\WebSphere\AppServer\java\bin\keytool.exe -import -alias facebook -file d:\facebok.cer -storepass WebAS -keystore d:\IBM\WebSphere\AppServer\profiles\AppSrv01\etc\DummyClientKeyFile.jks
Owner: CN=www.facebook.com, O="Facebook, Inc.", L=Palo Alto, ST=California, C=US
Issuer: OU=www.verisign.com/CPS Incorp.by Ref. LIABILITY LTD.(c)97 VeriSign, OU=VeriSign International Server CA - Class 3, OU="VeriSign, Inc.", O=VeriSign Trust Network
Serial number: 165f9ff89d0b31a887537cdef24fe04
Valid from: 6/21/12 3:00 AM until: 1/1/14 1:59 AM
Certificate fingerprints:
MD5: 8E:74:0C:F8:E5:50:76:EC:04:F0:D9:C5:B7:AD:B4:3A
SHA1: 9C:53:B1:A4:16:F9:58:79:1B:DA:D0:28:A9:FA:5D:65:4C:5F:81:52
Trust this certificate? [no]: yes
Certificate was added to keystore
d:\IBM\WebSphere\AppServer\java\bin\keytool.exe -import -alias facebook -file d:\facebok.cer -storepass WebAS -keystore d:\IBM\WebSphere\AppServer\profiles\AppSrv01\etc\DummyClientTrustFile.jks
Owner: CN=www.facebook.com, O="Facebook, Inc.", L=Palo Alto, ST=California, C=US
Issuer: OU=www.verisign.com/CPS Incorp.by Ref. LIABILITY LTD.(c)97 VeriSign, OU=VeriSign International Server CA - Class 3, OU="VeriSign, Inc.", O=VeriSign Trust Network
Serial number: 165f9ff89d0b31a887537cdef24fe04
Valid from: 6/21/12 3:00 AM until: 1/1/14 1:59 AM
Certificate fingerprints:
MD5: 8E:74:0C:F8:E5:50:76:EC:04:F0:D9:C5:B7:AD:B4:3A
SHA1: 9C:53:B1:A4:16:F9:58:79:1B:DA:D0:28:A9:FA:5D:65:4C:5F:81:52
Trust this certificate? [no]: yes
Certificate was added to keystore
zaman:
7/25/2012 05:41:00 pm
0
yorum
Add a new custom configuration named " view_issues_page_columns " which is complex type.
Add the required columns like below in an array definition :
array ( selection, edit, priority, id, bugnotes_count, category, status, custom_Project Start Date, custom_Proposed Resolution Date, custom_Actual Resolution Date, custom_Work Done (%), summary, last_updated, )
zaman:
12/14/2011 01:02:00 pm
0
yorum
If the Excel is not closed when you close the last worksheet by using the close button from the upper right corner try this tip:
- Uncheck “Show all windows in the Taskbar” from "Excel Options" -> "Advanced" -> "Display" section.
zaman:
9/13/2011 10:27:00 am
0
yorum
JSF 2.0 Migration Guide
The following document identifies the steps that are required to migrate a web application from JSF 1.2 to JSF 2.0 which uses Richfaces 3.3.x and Spring 3.0
The application will continue using RichFaces 3.3.x baseline with JSF 2.0 support
JSF 2.0 built-in facelet support will not be available(Old facelet library will continue)
Future Enhancements
Upgrade to Richfaces 4.0 with full JSF 2.0 support
Library Upgrades
zaman:
3/25/2011 05:06:00 pm
0
yorum
List the files in RPM:
rpm -qpl lynx-2.8.4-2.aix5.1.ppc.rpm
Then relocate needed directories with -relocate option:
rpm -i --relocate /opt/freeware=/home/wasadmin/lynx/opt/freeware /usr/bin=/home/wasadmin/lynx/bin --root /home/wasadmin/lynx/ lynx-2.8.4-2.aix5.1.ppc.rpm
zaman:
2/28/2011 11:17:00 am
0
yorum
Önümüzdeki birkaç yıl fırsat siteleri çok revaçta olacak gibi görünüyor. Bunlara üyelik için aşağıdaki davetiyeleri kullanabilirsiniz.
Paramini.com
Özellikle çocuk ve bebek ürünleri
http://www.paramini.com/
Modaelinizde.com
Tüm ünlü markalar
http://private.modaelinizde.com/
Markafoni.com
Tüm ünlü markalar
http://www.markafoni.com/
Trendyol.com
Tüm ünlü markalar
http://www.trendyol.com/
Limango.com.tr
Tüm ünlü markalar. ayrıca çocuk ve bebek ürünleri için özel sitesi de mevcut.
Özel mesaj atmaniz halinde davetiye gönderebilirim.
zaman:
2/09/2011 09:18:00 am
0
yorum
Weblogic server 10.3.4 will support some of the Java EE 6 standarts.
Full support will be on next release (EJB 3.1, CDI 1.0, Servlet 3.0)
zaman:
2/04/2011 09:17:00 am
0
yorum