User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T21:39:27Zhttp://stackoverflow.com/feeds/user/89566http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1828429/required-sharepoint-development-tools0Required Sharepoint Development Toolsunknown (yahoo)2009-12-01T19:48:42Z2009-12-02T07:54:46Z
<p>I am a java person, having to learn how to develop a website/portal application on Sharepoint.
What tool(s) do I need, and, what option(s) of Sharepoint do I need to build a portal, that uses Sharpoint as a content management system.</p>
<p>I'm assuming Visual Studio is one of the tool(s)?</p>
http://stackoverflow.com/questions/1786424/turn-off-trace-in-glassfish-v20Turn off TRACE in GlassFish v2unknown (yahoo)2009-11-23T22:12:45Z2009-11-23T23:15:22Z
<p>I need to turn off TRACE to help close XST security vulnerabilities.
I've been looking, nothing obvious so far.
Any help?</p>
http://stackoverflow.com/questions/1785616/sharepoint-training1Sharepoint Trainingunknown (yahoo)2009-11-23T20:08:29Z2009-11-23T20:12:39Z
<p>I need to learn Sharepoint, not so much admin functions, but usage/development.
Anyone know if Microsoft makes a free version, and if I need to learn .NET/C# or any other tools?</p>
http://stackoverflow.com/questions/1676033/persistence-unit-sqlexception-no-suitable-driver1Persistence Unit SQLException No suitable driverunknown (yahoo)2009-11-04T19:26:40Z2009-11-20T02:16:01Z
<p>I have a j2ee application deployed on GlassFish.
I have mysql jars in GlassFish's lib directory.
I am trying to use JPA, and my persistence file is:</p>
<pre><code><persistence-unit name="teamPU"
transaction-type="RESOURCE_LOCAL">
<provider>
oracle.toplink.essentials.PersistenceProvider
</provider>
<class>com.team.dao.Roles</class>
<properties>
<property name="toplink.jdbc.driver"
value="com.mysql.jdbc.Driver" />
<property name="toplink.jdbc.url"
value="jdbc:mysql://localhost:3306/test" />
<property name="toplink.jdbc.user" value="root" />
<property name="toplink.ddl-generation"
value="create-tables" />
</properties>
</persistence-unit>
</code></pre>
<p>i also have toplink-essentials* jars in lib.
When I call dao.find*, it throws the No suitable driver.
Don't I have all the jars where they should be?</p>
http://stackoverflow.com/questions/1765272/glassfish-system-getproperty-not-working-on-mac0GlassFish System.getProperty() not working on Macunknown (yahoo)2009-11-19T17:58:54Z2009-11-19T17:58:54Z
<p>I have GlassFish installed on a Windows box and a MacBook Pro.
The simple call </p>
<pre><code>System.getProperty()
</code></pre>
<p>works, able to get a property value, but always returns null on the Mac.</p>
<p>I have triple checked installations between the two, and the only difference is the OS.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1527242/icefaces-page-refresh0ICEFaces page refreshunknown (yahoo)2009-10-06T18:23:09Z2009-11-19T17:09:44Z
<p>I have a page where a user enters data and hits a "save" button.
The data gets saved to the db, and I want the page to refrsh itself to reflect the new data in the db.
I am using a managed bean, how do i get the page to refresh on its own?</p>
http://stackoverflow.com/questions/1760160/glassfish-ssl-not-working-when-started-via-myeclipse0GlassFish SSL not working when started via MyEclipseunknown (yahoo)2009-11-19T00:37:40Z2009-11-19T00:37:40Z
<p>I verified that when I start GlassFish through MyEclipse, SSL will not work.
However, when I start GlassFish using "asadmin..." SSL works.
Any ideas why?</p>
http://stackoverflow.com/questions/1751260/glassfish-ssl-not-working-in-mac0GlassFish SSL not working in Macunknown (yahoo)2009-11-17T19:42:19Z2009-11-17T19:42:19Z
<p>I cannot surf to my localhost via https on any port.
On my Windows boxes, it works fine, and GlassFish comes standard with an SSL port set.
Anyone know why it would be different on Mac? </p>
http://stackoverflow.com/questions/1723613/open-source-alternative-to-visio0Open Source alternative to Visio [closed]unknown (yahoo)2009-11-12T16:42:50Z2009-11-12T16:52:30Z
<p>I'm looking for a comparable and free alternative to Visio.
Anyone know of one?
Thanks</p>
http://stackoverflow.com/questions/1539032/getting-the-value-of-a-select-box-in-internet-explorer1Getting the value of a SELECT box in Internet Explorerunknown (yahoo)2009-10-08T16:41:11Z2009-11-12T14:01:48Z
<p>I have a select box:</p>
<pre><code><select id="item1" name="Item 1">
<option></option>
<option>Camera</option>
<option>Microphone</option>
<option>Tripod</option>
</select>
</code></pre>
<p>And I have this JavaScript:</p>
<pre><code>var item1= document.getElementById("item1").value;
</code></pre>
<p><code>item1</code> always shows empty, never the option selected. However, this works in Firefox.</p>
http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702067#170206721Answer by unknown (yahoo) for Ways to prevent over-engineering?unknown (yahoo)2009-11-09T16:19:22Z2009-11-09T16:34:05Z<p>Adopt an XP idea...YAGNI. (You Ain't Gonna Need It)</p>
<p>Code enough to solve what needs to be done now. Get it working to your customer's satisfaction, that's all that really matters anyway.
Then move on to the next feature.</p>
<p>If you find you need to refactor something, so be it, just do it incrementally.</p>
http://stackoverflow.com/questions/1682817/spring-security-and-jsf-redirect-after-login-not-working0Spring Security and JSF redirect after login not workingunknown (yahoo)2009-11-05T19:01:30Z2009-11-05T19:01:30Z
<p>I am trying to integrate Spring Security with my JSF application.
I am able to get to make the login page show up, but after a successful login, the protected URL does not show up, it stays on the login page.</p>
<p>My applicationContext.xml:</p>
<pre><code> <security:http auto-config="true" access-denied-page="/login/loginerror.jspx">
<security:intercept-url pattern="/restricted/**" access="ROLE_SU"/>
<security:form-login login-page="/login/login.jspx"
default-target-url="/restricted/equipment.jspx"/>
<security:logout logout-success-url="/logoutSuccess.jspx"/>
</security:http>
<security:authentication-provider user-service-ref="userDetailsService"/>
<bean id="userDetailsService" class="com.teach.security.UserDetailsServiceImpl">
<property name="rolesDao" ref="RolesDAO"/>
</bean>
</code></pre>
<p>My JSF managed bean, the method that get called when the user hits submit on the login page:</p>
<pre><code>public void login()
{
FacesContext.getCurrentInstance().getExternalConte xt().redirect("/spring- authentication/j_spring_security_check?j_username=" + userId + "&j_password=" + password);
}
</code></pre>
<p>My java console confirms a successful login, it says "login successful"</p>
http://stackoverflow.com/questions/1675635/sharepoint-as-a-cms0Sharepoint as a CMSunknown (yahoo)2009-11-04T18:08:31Z2009-11-04T18:12:47Z
<p>I do not know anything about Sharepoint, and my company is rolling it out in a few departments.
I am familiar with the workings and usage of Oracle (Stellent) CMS (for storing docs with meta-data, searching for docs, etc), and I am asking if I may use Sharepoint in a similar way?
Can I programmatically upload docs to Sharepoint, from a java web application, and do searches and doc retrieval?</p>
http://stackoverflow.com/questions/1670319/springs-class-userdetailsservice0Spring's class UserDetailsServiceunknown (yahoo)2009-11-03T21:42:33Z2009-11-03T21:42:33Z
<p>I have an EAR project, using EJBs. The project is deployed in GlassFish.
I am trying to use Spring Security.
I would like my implemtation class of UserDetailsService use and EJB.
However, when I annotate my implementation class, for instance:</p>
<pre><code>@EJB FooEJB fooEJB;
</code></pre>
<p>it is always null.
I am also using icefaces, and I do this annotation in my managed beans, and the EJB is never null.
Do I need to do something so that my implementation class of UserDetailsService gets a non-null reference to the EJB?</p>
http://stackoverflow.com/questions/1644573/custom-security-code0Custom Security Codeunknown (yahoo)2009-10-29T15:33:25Z2009-10-29T15:33:25Z
<p>I have a GlassFish web application.
I am authenticating users using a remote service.
The service only authenticates a user, my application needs to handle the authorization part.
I am thinking of just making a table with the users' names and roles.
Is this a fine plan?</p>
http://stackoverflow.com/questions/1632152/glassfish-reading-in-a-properties-file0GlassFish reading in a Properties Fileunknown (yahoo)2009-10-27T16:44:29Z2009-10-27T16:44:29Z
<p>I'd like to have a class read in a properties file when GlassFish starts up, then access the properties throughout the application.
How do I get GlassFish to instantiate a class and then access the properties read in through out the application?</p>
http://stackoverflow.com/questions/1625697/one-afternoon-to-do-networking-what-do-you-all-suggest/1625733#16257333Answer by unknown (yahoo) for One afternoon to do networking, what do you all suggest?unknown (yahoo)2009-10-26T16:22:06Z2009-10-26T16:22:06Z<p>Why wouldn't you look at Dice and submit and schedule interviews from responses?</p>
http://stackoverflow.com/questions/1621137/properties-for-dev-and-production3Properties for dev and productionunknown (yahoo)2009-10-25T15:13:16Z2009-10-25T21:03:52Z
<p>I have a GlassFish/j2ee application, and I develop on one box, and production is a remote box.
I have a function that makes files, and I need the files' location to be different based on my dev box or production.
What is an automatic way to do the switching so I do not have to edit the source file based on where it is being deployed?</p>
http://stackoverflow.com/questions/1610600/multiple-security-constraint-not-working0Multiple <security-constraint> not workingunknown (yahoo)2009-10-22T23:31:40Z2009-10-22T23:38:12Z
<p>I have the following in a GlassFish deployed EAR, which works fine:</p>
<pre><code><security-constraint>
<web-resource-collection>
<web-resource-name>Secure Pages</web-resource-name>
<url-pattern>/restricted/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<web-resource-collection>
<web-resource-name>Secure Pages</web-resource-name>
<url-pattern>/admin/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
</code></pre>
<p>But when I add another stanza, like so, the original still works, but not the new security-constraint, the new security-constraint:</p>
<pre><code> <security-constraint>
<web-resource-collection>
<web-resource-name>Secure Pages</web-resource-name>
<url-pattern>/su/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>su</role-name>
</auth-constraint>
</security-constraint>
</code></pre>
<p>Does anyone see an issues?</p>
http://stackoverflow.com/questions/1603879/how-to-use-enabledonuserrole-for-faces-components0How to use: enabledOnUserRole for faces componentsunknown (yahoo)2009-10-21T21:54:17Z2009-10-21T21:54:17Z
<p>I have a web application deployed on GlassFish.
I would like to use the "enabledOnUserRole" component attribute.
I am looking to be pointed in the right direction on what I need to do to make the application aware of user roles, and thus use this attribute.</p>
<p>I currently use a GlassFish security realm, where I have DB tables for users and groups, and it uses some web.xml configurations to control access to web directories.</p>
<p>Is it possible to use this security routine for "enabledOnUserRole", or do I need to set up a different security routine?</p>
http://stackoverflow.com/questions/1597748/entitymanager-refresh0EntityManager refreshunknown (yahoo)2009-10-20T22:53:05Z2009-10-20T22:53:05Z
<p>I reverse engineered some db tables, and a facade interface and implementing class were made.
I need to do a refresh() on an entity, but the EntityManager is private from the reverse engineering, and I do not want to edit a reverse engineerined class.
How do I go about getting the EntityManger so I may call refresh()?</p>
http://stackoverflow.com/questions/1203323/peoplesoft-logins2PeopleSoft loginsunknown (yahoo)2009-07-29T22:02:21Z2009-10-15T15:16:58Z
<p>I'm building a web application that will have access to PeopleSoft's database via jdbc.
Is it possible that I can use PeopleSoft's id/password for my custom application, so users accessing my website will not have to have another username/password?</p>
http://stackoverflow.com/questions/1568844/jpa-reverse-engineering-adding-finder-methods0JPA Reverse Engineering adding finder methodsunknown (yahoo)2009-10-14T20:37:56Z2009-10-14T20:37:56Z
<p>I use MyEclipse to reverse engineer and make EJBs for me.
I make local interfaces and implementing facades.
How do I add/make new finder methods, do I just edit the generated interface and implementing classes?
I would rather not do this, for I may regenerate from time to time, then I would have to remember to add the new finders.
What is a best practice to do this?</p>
http://stackoverflow.com/questions/1567929/website-safe-data-access-architecture-question0Website Safe Data Access Architecture Questionunknown (yahoo)2009-10-14T17:51:36Z2009-10-14T18:25:16Z
<p>I'd like to get some opinions on what I am planning to do is safe, safe from people hacking into data.</p>
<p>We have a database in city A.
In city B we have a company that has an internal network, and a server that has two application servers on it that each run an application, App. 1 and App. 2.</p>
<p>App. 1 serves on port 80, and is exposed to the internet.
I want App. 2 to only be exposed to App. 1, via web services(?), meaning people on the internet and intranet would not be able to "see" App. 2.</p>
<p>I want App. 2 to have a private communication link to the database in city A. I need to somehow ensure that the communication between App. 2 and the database in city A is secure, but I also need to have the data in App. 1.</p>
<p>Does this general set up accomplish what I need to do?
My main objective is data security between App. 2 and the database in city A.</p>
<p>Any general recommendations would be appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1533168/icesoft-messages0ICESoft messagesunknown (yahoo)2009-10-07T17:50:11Z2009-10-13T06:42:33Z
<p>I have a JSP with a managed bean.
I want to display a message on the page, not related to any component, so, I do not need to use the "for" attribute.</p>
<pre><code>My message code:
public void foo(ActionEvent event)
{
FacesContext context= FacesContext.getCurrentInstance();
if(true)
{
FacesMessage message = new FacesMessage();
message.setSeverity(FacesMessage.SEVERITY_ERROR);
message.setSummary("BMW.");
message.setDetail("BMW detail.");
context.addMessage("foo", message);
}
}
</code></pre>
<p>How do I display this message?</p>
http://stackoverflow.com/questions/1500902/icesoft-datatable0IceSoft DataTableunknown (yahoo)2009-09-30T22:02:53Z2009-09-30T22:02:53Z
<p>I have an IceSoft dataTable, with the rows populated by an EJB.
Some of the columns are input text fields, and when the page first fires up, the fields are populated with what is in the db.</p>
<p>I want the user to be able to change any of the text in the input text fields, then hit "save", and have it saved in the db.</p>
<p>Do I need to iterate over the html table rows to get the new values, then set the fields in the EJBs and save the EJBs?</p>
<p>If so, is iterating over the rows in the table straight forward?</p>
http://stackoverflow.com/questions/1461488/jpa-reverse-engineering-multiple-datasources0JPA Reverse Engineering multiple Datasourcesunknown (yahoo)2009-09-22T17:36:06Z2009-09-22T18:01:24Z
<p>I am using Eclipse, and my application works with two different DBs.
I am able to reverse engineer one DB or the other, but I do not see how to set things up so that I may reverse both DBs. I only see that I may select one datasource.
Is it possible to do this and I just do not see how?</p>
http://stackoverflow.com/questions/1461488/jpa-reverse-engineering-multiple-datasources/1461621#14616210Answer by unknown (yahoo) for JPA Reverse Engineering multiple Datasourcesunknown (yahoo)2009-09-22T18:01:24Z2009-09-22T18:01:24Z<p>make another EJB project and add it to the EAR</p>
http://stackoverflow.com/questions/1144721/calling-ejb3-from-a-faces-backingbean0Calling EJB3 from a Faces BackingBeanunknown (yahoo)2009-07-17T17:39:57Z2009-09-19T02:25:35Z
<p>I have a simple web application, packed as an EAR, deployed on Glassfish.
The EAR has a web module and an EJB module.
The web module has a faces page, and a ManagedBean.
The Faces page only has a button on it, and the button is tied to a method in the ManagedBean, and clicking the button does indeed fire the method.</p>
<p>The managed bean:</p>
<pre><code>public class Bar {
public Bar() {
}
@EJB StudentProfileFacade f;
public void hello(ActionEvent evt) {
System.out.println("*** f: " + f);
}
}
</code></pre>
<p>The EJB is not getting injected, the error I get is:</p>
<pre><code>Exception attempting to inject Unresolved Ejb-Ref com.web.Bar/f@jndi: com.StudentProfileFacade@null@com.StudentProfileFacade@Session@null into class com.web.Bar
</code></pre>
<p>What do I need to do so that the web module will find the EJB module, and the EJBs in it?</p>
http://stackoverflow.com/questions/1434493/migrate-ms-access-to-mysql1Migrate MS Access to MySQLunknown (yahoo)2009-09-16T17:45:59Z2009-09-16T20:35:13Z
<p>I'm getting data as an Access file.</p>
<p>My application uses MySQL/Java. I'd like to parse the Access data, and stick it in MySQL.</p>
<p>Is there a Java tool that will help me do this?</p>
http://stackoverflow.com/questions/1676033/persistence-unit-sqlexception-no-suitable-driverComment by on Persistence Unit SQLException No suitable driver2009-11-05T16:47:59Z2009-11-05T16:47:59ZI had to put the mysql driver jar in my java's lib directory. it was not good enough to just be in GlassFish's lib directory. it is now working, but it seems odd that I had to do this?http://stackoverflow.com/questions/1676033/persistence-unit-sqlexception-no-suitable-driverComment by on Persistence Unit SQLException No suitable driver2009-11-04T19:40:56Z2009-11-04T19:40:56ZLocal Exception Stack:
Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.1 (Build b60e-fcs (12/23/2008))): oracle.toplink.essentials.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: No suitable driver
Error Code: 0
at oracle.toplink.essentials.exceptions.DatabaseException.sqlException(DatabaseException.java:305)
at oracle.toplink.essentials.sessions.DefaultConnector.connect(DefaultConnector.java:102)
at oracle.toplink.essentials.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:184)
at oracle.toplink.essenhttp://stackoverflow.com/questions/1621137/properties-for-dev-and-production/1621162#1621162Comment by on Properties for dev and production2009-10-26T23:24:50Z2009-10-26T23:24:50Zi added a a system property, "foo", and set the value as "/me/bar/".
In code, i tride to access by:
String dir= System.getProperty("foo");
but it returned null.
Am i using it properly?http://stackoverflow.com/questions/1621137/properties-for-dev-and-productionComment by on Properties for dev and production2009-10-26T15:25:38Z2009-10-26T15:25:38Zoutside deployment dirhttp://stackoverflow.com/questions/1567929/website-safe-data-access-architecture-question/1567958#1567958Comment by on Website Safe Data Access Architecture Question2009-10-14T18:05:05Z2009-10-14T18:05:05Zin general, what precautions do I need to take when I have a remote DB, is SSL between the two good enough, or is their something else I can do to prevent people from accessing the data?http://stackoverflow.com/questions/1539032/getting-the-value-of-a-select-box-in-internet-explorer/1539060#1539060Comment by on Getting the value of a SELECT box in Internet Explorer2009-10-08T21:24:12Z2009-10-08T21:24:12Zno error per se, i have a check that checks for a value, and the value is never therehttp://stackoverflow.com/questions/1539032/getting-the-value-of-a-select-box-in-internet-explorer/1539060#1539060Comment by on Getting the value of a SELECT box in Internet Explorer2009-10-08T17:55:50Z2009-10-08T17:55:50Zoops, this does not work in IE 6, but does in IE 8 :(http://stackoverflow.com/questions/1533168/icesoft-messagesComment by on ICESoft messages2009-10-07T17:54:05Z2009-10-07T17:54:05Z<ice:messages/> did ithttp://stackoverflow.com/questions/1434493/migrate-ms-access-to-mysql/1434547#1434547Comment by on Migrate MS Access to MySQL2009-09-16T18:00:03Z2009-09-16T18:00:03Zthis will be a continuing effort, to be done maybe monthly. i saw a library called "Jackcess", it says it reads mdb files, that way I do not need to actually have an Access db running. Ever hear of Jackcess?http://stackoverflow.com/questions/1406438/google-docs-as-content-management-systemComment by on Google Docs as Content Management System2009-09-10T16:58:54Z2009-09-10T16:58:54Zwhat do you mean "allowed", what aspect, accessing via their API?http://stackoverflow.com/questions/1343815/html-include-fileComment by on HTML Include file2009-08-27T21:36:42Z2009-08-27T21:36:42Zmaybe this matters...i deploy the application in GlassFish with "/" as the context. I then change the context to "/foo" and deploy the EAR again, but with the name foo.ear. In effect, there are two applications running. The include change is not showing up in foo.ear whenn foo.ear is deployedhttp://stackoverflow.com/questions/1343815/html-include-file/1343847#1343847Comment by on HTML Include file2009-08-27T21:33:46Z2009-08-27T21:33:46Zany idea what the Mac equivalent is?http://stackoverflow.com/questions/1296053/web-page-counter/1296072#1296072Comment by on Web Page Counter2009-08-18T20:18:45Z2009-08-18T20:18:45Zi just made an account. do you know if i can see the hits right away, or does the application lag by a day?http://stackoverflow.com/questions/1258075/job-prospects-for-an-ms-in-ce-need-to-act-fast/1258100#1258100Comment by on Job prospects for an MS in CE (need to act fast)?2009-08-11T22:55:28Z2009-08-11T22:55:28Zyou just haven't been in the market that long i suspect. all job interviews i've had only ask about what i know, and want me to prove it, no one has cared yet about my education, only my skill set, and proving it. any employer will take you if you have the skills they are looking for, no matter how you acquired the skillhttp://stackoverflow.com/questions/1236113/how-can-i-split-out-individual-column-values-from-each-line-in-a-text-file/1236121#1236121Comment by on How can I split out individual column values from each line in a text file?2009-08-05T22:42:22Z2009-08-05T22:42:22Zthe "\\s+" works, thanks a lot!!