Sanjay Chavan

Greenhorn
+ Follow
since Nov 12, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Sanjay Chavan

Currently, I am subscribing to EWS (Exchange Web serviceces) through Java Web service client using administrative credentials. After successful subscription EWS giving me push notifications only from Administrators mailbox. These push notifications I am listening through Java Web Service (URL of this web service given in subscription request).
Now, I want to get push notifications for all mailboxes of Exchange Server.
How to accomplish this through single Subscription and using Administrative credentials?

Thanks,
Sanjay
16 years ago
Congratulation. Great score.
Please tell me how much we should have practical exposure before appearing SCDJWS exam?
SCDJWS is based on JAX-RPC which is replaced by JAX-WS.Then what is use learning JAX-RPC?
What is difference between JAX-RPC and JAX-WS?

Thanks in advance.

Sanjay.
I am new to web services.
I want to write java client for Exchange 2007 Event Notificaton webservice.
I went through Google: which says it needs two things from client side service, first Subscription to Exchange server for notification and second some way to receive events from exchange server for that subscription.

Please suggest me possible approaches.

Thanks in advance.
16 years ago
I am very new to Web services.
I want to write a Java base web service client which will call MS Exchange server 2007 web services.
Please suggest me possible approaches.
Thanks in advance.
16 years ago
Its always better to give details of issue ...
Anyway.. as per my understanding following is a solution :
Your first page which is saving values to database should use a bean.
For another page use separate bean (other than first)which will fetch latest data from DB.
You can do the same thing using different action methods in a single bean.
16 years ago
JSF
pl go through ICEFaces Develpoers guide and beginners guide.
These pdfs are available on iceFaces's site.
I hope following links will help you:

http://www.myeclipseide.com/documentation/quickstarts/icefaces/
http://en.wikipedia.org/wiki/Icefaces
http://component-showcase.icefaces.org/component-showcase/showcase.iface
16 years ago
JSF
I got solution : Provide new inline style i.e style="height:50px"



<h:dataTable id="dataTableMain" width="98%"
styleClass="grid" border="1" cellpadding="0" cellspacing="0"
value="#{inbox.mesgList}" var="ml" binding="#{inbox.dataTable}"
rows="6" style="height:50px">
16 years ago
JSF
I am not getting any attribute to change row height in <h:dataTable>. Is there any other way to achieve this?
16 years ago
JSF
I want to play a sound file in browser will all audio control like forward , play , stop etc.

Thanks in advance.

Originally posted by Sanjay Chavan:
[QB][/QB]



I have tried with your code.
Its working fine on my system.
16 years ago
JSF

Originally posted by Ramesh Etta:
Hi,

i had written a login page in jsf with fields UserName and Password.
Now i had two buttons named Login and Clear.
When i enter username and password values and press enter key nothing is happening. i mean the submit is not happening. but when i press the login button it is being submitted.

Now i want like after i enter password and press Enter button, the submit needs to happen.
Please help me in this matter.

here is the login page jsf code:

<h:form id="mainFrm" >
User Name:<h:inputText id="username" value="#{loginBean.userName}"
required="true" maxlength="30" />
Pasword: <h:inputSecret id="passwordd" value="#{loginBean.password}" required="true" maxlength="30" />
<h:commandButton action="#{loginBean.authenticateUser}"
value="Login" styleClass="button" />
<h:commandButton type="reset" value="Clear"
styleClass="button" />
</h:form>

16 years ago
JSF