 |
| Main Menu |  |
| Other Modules |  |
| Who's Online |  |
There are currently, guest(s) and member(s) that are online.
You are Anonymous user. You can register for free by clicking here | |
| User's Login |  |
|
Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name. | |
| GameHighScores |  |
|  |
 | Lightweight API to access SOAP header in WebSphere JAX-WS engine |
Richard Scheuerle describes a new lightweight API that allows fast access SOAP header in JAX-WS handlers.
|
|
|
Posted by billylo on Tuesday, August 03 @ 00:52:11 EDT (163 reads)
(comments? | Score: 0)
|
|
 | RESTful services in Java - Platform choices |
|
|
Posted by billylo on Monday, August 02 @ 18:27:12 EDT (314 reads)
(comments? | Score: 0)
|
|
 | ws-i transitioning to OASIS |
ws-i has helped promoting web services interoperability for many years. Its work (e.g. basic profile and testing tools) will continue under the OASIS umbrella going forward. See OASIS announcement here.
|
|
|
Posted by billylo on Monday, August 02 @ 16:28:43 EDT (108 reads)
(comments? | Score: 0)
|
|
 | Develop SOA applications and solutions using IBM WebSphere Process Server 7 |
|
|
Posted by billylo on Sunday, August 01 @ 11:38:45 EDT (156 reads)
(Read More... | 2040 bytes more | comments? | Score: 0)
|
|
 | WebSphere AppServer v8 Beta is out |
WAS 8.0 Beta is out. Check out what's new and you can download it here. A lot of new things (EJB 3.1, JPA 2.0, JAX-RS RESTful services, etc.)
|
|
|
Posted by billylo on Sunday, July 18 @ 18:44:15 EDT (200 reads)
(comments? | Score: 0)
|
|
 | Integrated Log Scanning for WebSphere Applications (Splunk for WebSphere App) |
|
|
Posted by billylo on Sunday, July 04 @ 17:04:20 EDT (285 reads)
(comments? | Score: 0)
|
|
 | Get to know more about java.lang.OutOfMemoryError |
|
|
Posted by billylo on Wednesday, May 26 @ 00:37:36 EDT (541 reads)
(comments? | Score: 0)
|
|
 | Online trainings for WebSphere Application Server Administration |
Anonymous writes "Data Q Systems is the leading Outsourcing company in Banglore,which is providing WebSPhere Application Server Administration (Online)training.
We are using Webex and Skype to share our desktop and audio,
With this you can feel the high quality teaching experience.From the last 2 years we are providing the training to the US ,UK ,Germany and Australia people.
Come and experience the difference.
"
|
|
|
Posted by billylo on Wednesday, May 26 @ 00:23:29 EDT (343 reads)
(Read More... | 1498 bytes more | comments? | Score: 0)
|
|
 | WebSphere sMash on WebSphere Application Server |
|
|
Posted by billylo on Wednesday, May 26 @ 00:23:04 EDT (307 reads)
(comments? | Score: 0)
|
|
 | RAD 8.0 and RSA 8.0 |
RAD 8.0 and RSA 8.0 are now in open beta (JEE 6 support, Web 2.0, RESTful services, OSGI, etc.) Check them out!
|
|
|
Posted by billylo on Sunday, May 23 @ 07:12:35 EDT (443 reads)
(comments? | Score: 0)
|
|
 | Lots of announcements from IBM at IMPACT this week |
A few interesting ones:
1) A DataPower caching appliance XC10 that can be used with WebSphere for http session replication and dynacache. 2) An SOA Repository standard called S-RAMP co-developed by IBM, HP, Software AG and TIBCO
|
|
|
Posted by billylo on Thursday, May 06 @ 20:33:35 EDT (410 reads)
(comments? | Score: 0)
|
|
 | WebSphere MQ & WebSphere Message Broker Online Training |
Anonymous writes "The objective of this course is to provide a solid technical knowledge
for integration architects and developers to effectively use the IBM’s
WMB V6 for the integration of new and existing business applications.
This course covers the architecture, installation, administration, and
the deployment of WMB. The course theory is reinforced with extensive
hands on exercises where the students configure message brokers, use
the Message Broker tool kit to design message sets, use the common IBM
supplied nodes to create message flows. as well as write customized
nodes and apply them in applications. This course covers the
architecture, installation, administration, and the deployment of WMB
as well as the use of the WMB Tool Kit. Performance and problem
determination topics are also covered.
Email:innoflexit@gmail.com "
|
|
|
Posted by billylo on Thursday, May 06 @ 20:16:37 EDT (327 reads)
(comments? | Score: 1)
|
|
 | Setting JAX-WS web services client timeout in WebSphere |
A few of my teammates find it difficult to
get this working properly. I hope this write-up and example code below
would help you. It's actually not too hard.
What can I adjust?
There are
three timeouts you can set:
1. CONNECTION_TIMEOUT: The amount of
time WebSphere JAX-WS client would wait to establish a http/https
connection (default is 180 seconds) 2. WRITE_TIMEOUT: The amount of
time the client would wait to finish sending the request (default is
300 seconds) 3. RESPONSE_TIMEOUT: The amount of time the client
would wait to finish receiving the response (default is 300 seconds)
How can I set them in my application code?
You
can adjust them by setting properties on the requestContext. See code
sample below.
HelloWorldSOAPProxy
proxy = new HelloWorldSOAPProxy(); // generated proxy class
Map requestContext =
((BindingProvider)proxy._getDescriptor().getProxy()).getRequestContext();
requestContext.put(com.ibm.wsspi.webservices.Constants.CONNECTION_TIMEOUT_PROPERTY
, "1"); requestContext.put(com.ibm.wsspi.webservices.Constants.WRITE_TIMEOUT_PROPERTY
, "2"); requestContext.put(com.ibm.wsspi.webservices.Constants.RESPONSE_TIMEOUT_PROPERTY
, "40");
proxy.sayHello("Billy");
Note: The property value in the Map must be a
String; and in seconds.
My code
does not work in my environment. How do I troubleshoot it?
Use
the WebSphere AdminConsole to enable this trace specification (on the
client side):
"com.ibm.ws.websvcs.*=all=enabled:org.apache.axis2.*=all=enabled"
You
should see something like this in the trace (if you set the response
timeout).
[04/08/2009
19:28:37:937 EDT] 00000000 >
ibm.ws.websvcs.transport.http.SOAPOverHTTPSender
prepareHttpRequestHeaders():
com.ibm.ws.websvcs.transport.http.SOAPOverHTTPSender@33233323 Entry [04/08/2009 19:28:37:953 EDT] 00000000 3
ibm.ws.websvcs.transport.common.ConfigFromJAX_WS
...ConfigFromJAX_WS.getReadTimeout() : 40 [04/08/2009 19:28:37:953 EDT] 00000000 3
ibm.ws.websvcs.transport.http.SOAPOverHTTPSender syncTimeoutValue 40000
ms for http
Additional
tip:
If you are using a standalone Java client
(outside of the J2EE container), you can set the WebSphere traceSpec
using system properties.
System.setProperty("java.util.logging.manager","com.ibm.ws.bootstrap.WsLogManager"); System.setProperty("traceSettingsFile","MyTraceSettings.properties"); System.setProperty("java.util.logging.configureByServer","true");
and
put your traceSpec in a file (e.g. MyTraceSettings.properties) on the
working directory.
traceFileName=c:/temp/trace.log com.ibm.ws.websvcs.*=all=enabled:org.apache.axis2.*=all=enabled
|
|
|
Posted by billylo on Sunday, March 28 @ 16:43:04 EDT (1083 reads)
(comments? | Score: 0)
|
|
 | Capitalware Helps Companies Secure their WebSphere MQ Environments. |
rogerlacroix writes "Capitalware Inc. has created 2 new
WebSphere MQ security products: MQ Channel Encryption (MQCE) and MQ
Channel Encryption for z/OS (z/MQCE). These security products provide
message encryption that is complaint with industry standards (including
PCI) and governmental laws.
"
|
|
|
Posted by billylo on Sunday, March 28 @ 16:40:09 EDT (297 reads)
(Read More... | 1813 bytes more | comments? | Score: 0)
|
|
 | IBM WAS V7 Feature Pack for OSGi / JPA 2.0 Open Beta |
Anonymous writes "IBM® WebSphere® Application Server feature packs are optionally installable product extensions that offer targeted, incremental new features. Feature packs benefit WebSphere Application Server customers by lengthening the value of their application infrastructure investments through longer release cycles with optional access to important new application development technologies.
The Feature Pack for OSGi Applications and JPA 2.0 provides a lightweight, simplified application framework to increase developer productivity and time to value. Through this feature pack, organizations can realize many of the benefits found in other non-standard open source frameworks in a standardized, WebSphere integrated fashion.
Specifically, this feature pack delivers open community and standards-based implementations of the OSGi Blueprint service specification and Java EE 6 JPA 2.0 along with the ability, optionally, to assemble, deploy and manage applications as a collection of versioned OSGi bundles.
To learn more and participate in this Open Beta, click here! "
|
|
|
Posted by billylo on Sunday, March 28 @ 16:39:54 EDT (401 reads)
(comments? | Score: 0)
|
|
|  |
| Search Box |  |
| Related Sites |  |
| Links |  |
| 
|