???Why Can't get businessEntity from IBM Registry using JAXR Package???

Hi,I published a businessEntity SWSD Research Group on IBM UDDI Registry,and after that i wrote some code to query this businessEntity,and here is the code:
import javax.xml.registry.*;
import javax.xml.registry.infomodel.*;
import java.util.*;
import java.util.Iterator;
public class FindTest
  ConnectionFactory factory;
  Properties props;
  Connection conn;
  RegistryService rs;
  BusinessQueryManager bqm;
  String httpProxyHost="";
  String httpProxyPort="";
  public FindTest()
    try
      factory = ConnectionFactory.newInstance();
      props=new Properties();
      props.setProperty("javax.xml.registry.queryManagerURL",
                        "http://uddi.ibm.com/testregistry/inquiryapi");
      props.setProperty("javax.xml.registry.factoryClass",
                        "com.sun.xml.registry.uddi.ConnectionFactoryImpl");
      props.setProperty("javax.xml.registry.http.proxyHost",httpProxyHost);
      props.setProperty("javax.xml.registry.http.proxyPort",httpProxyPort);
      props.setProperty("javax.xml.registry.lifeCycleManagerURL",
                 "https://uddi.ibm.com/testregistry/publishapi");
      factory.setProperties(props);
      System.out.println("Connecting to IBM Registry......");
      conn=factory.createConnection();
      System.out.println("Connection established successfully......");
      rs=conn.getRegistryService();
      bqm=rs.getBusinessQueryManager();
    catch(JAXRException je)
      je.printStackTrace();
  public void findOrganiazationByName(String namePattern) throws JAXRException
    Collection findQualifier=new ArrayList();
    System.out.println("finding organization "+namePattern+" by Name Desc");
    findQualifier.add(FindQualifier.SORT_BY_NAME_DESC);
    Collection namePatterns=new ArrayList();
    namePatterns.add(namePattern);
    BulkResponse response=bqm.findOrganizations(findQualifier,namePatterns,null,null,
                                                null,null);
    Collection orgs=response.getCollection();
    Iterator orgItr=orgs.iterator();
    while(orgItr.hasNext())
      Organization org=(Organization)orgItr.next();
      String name=(org.getName()).toString();
      System.out.println("Organization Name:"+name);
      String key=(org.getKey()).toString();
      System.out.println("Organization Key:"+key);
      Collection services=org.getServices();
      Iterator serItr=services.iterator();
      while(serItr.hasNext())
        Service service=(Service)serItr.next();
        name=(service.getName()).toString();
        System.out.println("\tService Name:"+name);
        key=(service.getKey()).toString();
        System.out.println("\tService Key:"+key);
   System.out.println("Finding process terminated!");
  public static void main(String[] args)
    FindTest ft=new FindTest();
    try
      ft.findOrganiazationByName("%SWSD%");
    catch(JAXRException je)
      je.printStackTrace();
}And this is the output:
Connecting to IBM Registry......
Connection established successfully......
finding organization %SWSD% by Name Desc
    <The businessEntity information should be here>
Finding process terminated!As you can see,i didn't get any exception information,and i didn't get the businessEntity information either.But using the "Web Services Explorer" in JBuilder I could find it.So there must be something wrong with my code,or may be some configuration mistakes exist!It would be very kind of you to consider about this problem,and if you successeded in query the businessEntity,it would be very can of you send your reply and your code to my email:
[email protected]
many many thanks advance!
@smile@

I found a fix, for now. I uninstalled Acrobat and reinstalled it with UAC (User Account Control) switched off. Registered the program and opened a few PDF files before switching UAC back on.

Similar Messages

  • Why can't I print from my iPad using airport express

    Why can't I print from my iPad using airport express?

    Is the printer connected to the USB port on the AirPort Express?
    If yes, Apple does not support printing from the iPad in this manner. Try another App like Printopia which should allow the iPad to print. There is a free trial, so you will know in a few minutes whether this will work.
    Printopia - AirPrint to Any Printer - Print from iPad - Print from iPhone ...
    Is the printer connected to the AirPort Express using wireless only?
    If yes, you must have an AirPrint compatible printer to be able to print directly from the iPad. See if your model is AirPrint compatible in this Apple document:
    http://support.apple.com/kb/ht4356
    If your printer model appears, the printer may need a firmware update to enable the AirPrint feature. Contact the support folks at your printer manufacturer.
    If the printer does not appear, try Printopia as above.

  • How can I get file from multiple instance using file adapter

    Hi.
    Our system(PI7.1) have three application instances running with each physical servers.
    We use sender file adapter.
    The file data is sent to one of the servers.
    Now, how can I get the file using three file adater?
    Should I put the file "sapmnt(\usr\sap)" .
    Or are there another solution?
    regards,

    Hi Ashutosh
    You will have to use sapcar.zip which contains the utility Sapcar.exe utility for unzipping the files from SAP compressed files. (*.car file)
    Regards
    Gaurav
    PS: Reward points if solved

  • How can I get permission from imovie to use text in my uploaded monetized YouTube clips

    I am able to use imovie to edit movies. I use a small amount of text and no music from imovie. How do I obtain permission from imovie to use a text title for my monetized YouTube uploads?

    You do not need permission for this.

  • Why can I get a full Yahoo window using Safari but not using Firefox?

    I've suddenly lost the Yahoo website when I try to access it using Firefox, but access works perfectly when I use Safari,

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Click the menu button [[Image:New Fx Menu]], choose History, and then "Clear Recent History...".
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the "Clear Now" button.
    Further information can be found in the [[Delete browsing, search and download history on Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.
    If this doesn't work, contact Virgin for more assistance.

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • Why can I not print from pages but can if I copy to text edit, I get "printer off line message " from pages ?

    Why can I not print from pages but can if I copy to text edit, I get "printer off line message " from pages ?  I use HP wireless printer .

    Are you sure you have the right printer?
    In UNIX/OSX printers are virtual links to devices and even with the same name can be trying to reach a printer via another network address, so it thinks it is another printer.
    Peter

  • I choose to restore from a safety backup in iTunes. It works ok, but iTunes is still asking to restore the iPhone. Why can't I get to syncronise the phone? I can't get the menue I am used to in iTunes. It only states "Klargjør iPhone" (Norwegian). Somethi

    I choose to restore from a safety backup in iTunes. It works ok, but iTunes is still asking to restore the iPhone. Why can't I get to syncronise the phone?
    I can't get the menue I am used to in iTunes. It only states "Klargjør iPhone" (Norwegian). Something like "Start up your iPhone". I've done this several times, restarted the iPhone and my computer, but I can't get ready to sync... The phone is working ok and my backup data is restored into the phone.

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Troubleshooting backup issues in iTunes
    http://support.apple.com/kb/ts2529
    -Griff W.

  • Why can't I print from my ipad?

    I've had my iPad for almost a year now and I like it a lot. It looks very good, it performs very well even though I'm far from reaching my goal of only taking my ipad to school, nothing else.
    One important reason why this won't be the case for quite a while still is that I can't print from the iPad.
    Let me explain. I make quite a number of worksheets. Being a teacher this is one of the things you do so that the students have something to write on and do exercises. Over the years there have been many of these and my initial thought was to put them all on the iPad and print them when needed. But imagine my surprise when I found out that printing from an iPad seems to be near impossible.
    Other colleagues of mine got themselves cheap EEPCs and they work fine. They can access the local printer easily printing whatever they wish. But I can't do that! Unless my school buys a new Air-thingy printer from HP I just won't print there! And that just *****.
    I've bought a sleek and expensive machine that is so sophisticated - that I can't use it the way I want to. And that isn't even ******** about the file system that seems to be equally messed up.
    My question is, why can't I print from the iPad? Printing had been announced many times before the launch of iOS 4 and then, all of a sudden, nothing more. How can this be? Why do I have to buy additional software - which is not really cheap and far from certain to work at all - just to be able to print a few pages?
    Please help me understand this, as I see it, major flaw of the iPad and iOS 5.

    Thanks guys,
    I seem to have understood by now.
    To sum it up:
    - I can print with the iPad directly if the printer is Airprint compatible.
    - I can print via a number of more or less working apps.
    I've downloaded some HP software for my iPad and even seem to be able to access it from some other apps, that is except Apples Pages app. Sigh! So whenever I have to make changes in my documents, I still can't print.
    GoodReader on the other hand lets me send my documents to the HP app, but the app/HP won't let me print microsoft docs unless I register and send my documents over to HP where the printing prep is being made, then they send it back to me/my printer. Anyway GoodReader blows my layout apart, so I must change it on the iPad, but when I do …
    It's a big catch.
    You must realize that printing really isn't that comfortable and that as a spoiled old Mac user I might be excused for wishing something more workable.
    The truth seems to be that I've got to carry all those docs on a USB-stick, move them over to the Windows-machine at our school and print from there - which is what I do on a daily basis already.
    All those workarounds that may or may not work (check out user comments on those printing apps!) are so annoying that my overall question remains pretty much the same.
    But I could also rephrase the question: Why can't I print from the so-called best tablet office app even if I am equipped with all the apps I apparently need?
    Please understand that this is not Apple-bashing in any way. This is a real problem for me in my everyday life. I won't be persuading my school to buy AirPrint printers just because of my little problem and I honestly don't want to spend more money on printing apps that seem never to even have gone through beta testing.
    Still, thanks for you efforts. I guess I'll just have to wait for Microsoft Office for iPad to get that big problem solved.

  • "Can't get Action from Action Reference"?

    I really can't figure out why I get java.lang.IllegalArgumentException with "Can't get Action from Action Reference: BeanName.actionName" message. I specified all properties in faces-config.xml. Bean and its action names are all checked several times, but I still get that exception. Is it a JSF bug, or my simple mistake? Is there anyone who experienced the same problem?
    I'm using two forms in one page. all components' ids are all different. Only one form generated the exception not regarding the order of the forms. (the one is login form and the other (which doesn't generate exception) is leave-comment form.)
    Here is the form code:
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
    and here is managed-bean part:
    <managed-bean>
         <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>idStr</property-name>
    <null-value/>
    </managed-property>
    <managed-property>
    <property-name>userName</property-name>
    <null-value/>
    </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    Thanks in advance!

    here goes the source code of NotesBean:
    abstract class NotesBean {
         protected static final String SUCCESS = "success";
         protected static final String FAILURE = "failure";
         private String connectionProfile;
         protected NotesBean() {}
         public String getConnectionProfile() {
              return connectionProfile;
         public void setConnectionProfile(String newProfileName) {
              connectionProfile = newProfileName;
         public abstract Action getCreateAction();
         public abstract Action getDeleteAction();
         public abstract Action getUpdateAction();
         protected Connection getConnection() throws NotesException {
              ConnectionProfile profile = ConnectionProfileFactory.getProfile(connectionProfile);
              return DriverManager.getConnection(profile.getUrl(), profile.getProperties());
    }I think everything is ok with the beans, right?
    By the way: shouldn�t the error message be:
    "Can't get Action from Action Reference: UserBean.loginAction"I just examplified the message using somewhat generic name. Sorry for confusion :)
    As a final try, here is the whole JSP code: (ignore korean texts)
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://gleamynode.net/notes" prefix="notes" %>
    <html>
    <head>
         <title>gleamynode.net :: gathering of my mentality</title>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <link rel="stylesheet" HREF="css/gleamynode.css" type="text/css" />
    </head>
    <body>
    <f:use_faces>
    <notes:useNotes>
         <c:choose>
              <c:when test="${empty param['id']}">
                   <notes:getPages var="pages" />
                   <c:forEach var="p" items="${pages}" begin="0" end="0">
                        <c:set var="p" value="${p}" scope="request"/>
                   </c:forEach>
              </c:when>
              <c:otherwise>
                   <notes:getPage var="p" pageId="${param['id']}" />
              </c:otherwise>
         </c:choose>
         <div id="header">
              <h:command_hyperlink href="index.jsp" label="gleamynode.net :: gathering of my mentality"/>
         </div>
         <div id="menu">
              About | Essays | Projects | Others | Links
         </div>
         <div id="content">
              <div id="page">
                   <div id="pageTitle">
                        #${p.id}. ${p.title}
                   </div>
                   <div id="pageContent">
                        ${p.content}
                        <div id="pageTimestamp">
                             ${p.timestamp}
                        </div>
                   </div>
              </div>
              <c:choose>
                   <c:when test="${fn:length(p.comments) > 0}">
                        <div id="comments">
                             <div id="teaser">
                                  ${fn:length(p.comments)} ?? ??? ????
                             </div>
                             <c:forEach var="c" items="${p.comments}">
                                  <div id="commentHeader">
                                       #${c.id}. ${c.userName}
                                  </div>
                                  <div id="commentContent">
                                       ${c.content}
                                       <div id="commentTimestamp">
                                            ${c.timestamp}
                                       </div>
                                  </div>
                             </c:forEach>
                        </div>
                   </c:when>
              </c:choose>
              <div id="commentForm">
                   <jsp:useBean id="CommentBean" class="net.gleamynode.notes.http.faces.CommentBean" scope="request" />
                   <jsp:setProperty name="CommentBean" property="pageIdStr" value="${p.id}"/>
                   <jsp:setProperty name="CommentBean" property="content" value=""/>
                   <div id="teaser">
                   </div>
                   <h:form id="commmentForm" formName="commentForm" >
                        <input type="hidden" name="id" value="${p.id}"/>
                        <h:input_hidden id="pageId" valueRef="CommentBean.pageIdStr"/>
                        <table width="95%">
                             <tr>
                                  <td class="name" width="9%">Name:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userName" valueRef="CommentBean.userName">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">Email:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userEmail" valueRef="CommentBean.userEmail">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">URL:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userURL" valueRef="CommentBean.userURL">
                                            <f:attribute name="style" value="width:100%;"/>
                                       </h:input_text>
                                  </td>
                             </tr>
                             <tr>
                                  <td colspan="6">
                                       <h:input_textarea id="content" valueRef="CommentBean.content">
                                            <f:attribute name="style" value="width:100%; height: 12em;"/>
                                       </h:input_textarea>
                                  </td>
                             </tr>
                             <tr>
                                  <td class="buttons" colspan="6">
                                       <h:command_button id="submit" label="leave a comment" commandName="submit" actionRef="CommentBean.createAction" />
                                  </td>
                             </tr>
                        </table>
                   </h:form>
              </div>
              <div id="loginForm">
                   <div id="teaser">
                   </div>
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
              </div>
              <div id="copyright">
                   Copyright � 1999~ by Trustin Lee, All Rights Reserved.
              </div>
         </div>
         <div id="footer">
         </div>
    </notes:useNotes>
    </f:use_faces>
    </body>
    </html>and, here is the whole faces-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
              "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
              "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
        <navigation-rule>
            <from-tree-id>/index.jsp</from-tree-id>
            <navigation-case>
                <from-outcome>success</from-outcome>
                <to-tree-id>/index.jsp</to-tree-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>failure</from-outcome>
                <to-tree-id>/failure.jsp</to-tree-id>
            </navigation-case>
        </navigation-rule>
         <managed-bean>
              <managed-bean-name>PageBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.PageBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>title</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
         <managed-bean>
              <managed-bean-name>CommentBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.CommentBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>pageIdStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>userName</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userEmail</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userURL</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
        <managed-bean>
             <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>userName</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    </faces-config>Thank you for your continuous help, Rene! Learned alot from you about JSF :)

  • Can't get video from camera update / suggestions?

    As I think others have reported, I have lost my ability to participate in iChat AV video sessions, and any attempt produces a "can't get video from camera" error message. I am running OS 10.4.5.
    I have an extra internal hard drive with no OS on it, so I did a clean install of Mac OS 10.4 and iChat was back to working. I then applied all the Apple Software Updates to bring it up to 10.4.5 as well as any othe Security Updates and such, and it is still working OK as long as I boot off that OS.
    This tells me the problem cannot be in my Router or DSM Modem, I think.
    In the past, I have had ShowMacster and iGlasses installed on my original system, but I believe that I have uninstalled both of those properly. Still does not work.
    I DO have Apple Remote Desktop - Admin installed on this startup volume, and I cannot say for sure whether the problem may have started around the time I installed it. It's possible, I just wasn't keeping chronological records of installs back then.
    So, the GOOD news is that I can participate in any iChat AV session I want to be in as long as I have prior notice or enough time to reboot my G5 PowerMac under my second drive, but I still can't keep iChat AV open on my main drive and expect to be able to respond to impromptu invites to a video session.
    I thought I may have read that Apple Remote Desktop can create a conflict. If anyone knows, I would be all ears! Thanks for any suggestions.
    Jim Foster
    Hampton, Ontario, Canada
    Dual 1.8 Mhz G5 PowerMac   Mac OS X (10.4.5)  

    I believe I have solved the mystery of why I was getting the "can't get video from camera" error message. I had said earlier that I had Apple Remote Desktop (admin) loaded on my Mac but that I did not normally have this application open. What I failed to realize, though, was that for some reason I also had Apple Remote Desktop set to ON in my Sharing System Preferences pane. All I had to do was to uncheck this box and my ability to carry on video chats returned.
    I expect that somehow in the process of installing and running the Apple Remote Desktop application to access another Macintosh on my home network, I must have either manually or automatically caused Apple Remote Desktop to be turned ON as if I was wanting to allow some other Admin user to connect to my Mac. Doesn't make much sense to me, but I am happy with the solution.
    Jim Foster
    1.89 Mhz dual G5 PowerMac   Mac OS X (10.4.5)  

  • Why can I get several HD channels in HD on my rooftop antenna, but the not on Fios?

    Why can I get several HD channels in HD on my rooftop antenna, but not on Fios?
    E.g. WABC, WNBC, WLIW and WNET come in at least 4 HD channels via my rooftop antenna but only one WLIW (non-HD) on Fios.
    Bummer.
    I can switch from the RF to HDMI sources but I thought with all of the channels I could at least get the ones I watch.
    I'm located in Northern NJ USA, about 10 miles (line of sight) from NYC.

    Rumplestiltskin wrote:
    Why can I get several HD channels in HD on my rooftop antenna, but not on Fios?
    E.g. WABC, WNBC, WLIW and WNET come in at least 4 HD channels via my rooftop antenna but only one WLIW (non-HD) on Fios.
    Bummer.
    I can switch from the RF to HDMI sources but I thought with all of the channels I could at least get the ones I watch.
    I'm located in Northern NJ USA, about 10 miles (line of sight) from NYC.
    I assume you get the NJ versions of those channels? 
    Networks pay for exclusive programming rights within specific markets. Cable operators are only allowed to offer a specific set of local channels within their designated media market (DMA).  If you aren't considered to be in the NYC market, then you aren't supposed to receive those channels.
    Like many in the DC area, I can pickup the Baltimore locals with an antenna, but I as I live in the DC DMA, those are the only channels I receive from Verizon, Comcast, DirecTV, etc.  Note there are circumstances where a customer might fall between two markets, living in an area with overlapping DMAs; in that case, the provider can choose to offer two different sets of locals.  Verizon FiOS does do that in some areas.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.

  • IChat Error: "Can't get video from the camera"

    When I try to Screen Share with iChat on a local network, I receive the error "Can't get video from the camera" when I have an external camera plugged into the FW400 port on my Mac Mini. The Screen Sharing feature works great when the camera is not connected. Anyone know why this is and how to fix it?

    Tell us about the Network you created please.
    What make and model modem ?
    Can it route (issue IPs) ?
    IS there a router ?
    Make and model of that please ?
    If there are two devices which is doing DHCP if any are ?
    IS there any computer that is sharing it's Internet Connection with any other computer ?
    I take it from the title and the post that you infer you can Video and Audio chat ?
    The Cannot get Video from Camera normally gets and Error Log pop up.
    This can be opened with the reveal triangle on the left. The Details shown will have a Error number. Do you know what this log says ? (normally Error 20 or 21)
    Old logs are stored in Users/(your account)/Library/Logs/iChatConnectionErrors by date.
    IF you post an Error Log stop at the line that Says "Binary Images for iChat" as we don't need the bits below that yet.
    As the Screen share in iChat uses an Audio component then the Camera if it is also the Mic needs to be ON.
    In your case this may mean that in the ichat Video Menu both Camera Enabled and Mic Enabled should both be ticked.
    (I have never seen an iChat error code for not (specifically) being able to get the Mic input so the message might be the only one iChat can pop up)
    It does seem very odd that it only effecting Screen Sharing.
    I have a Firewire connected DV converter that has two Firewire ports itself so I can input the camera feed to two computers. When this is in place the System also sees it as a Network.
    I have also heard of one person with a Firewire Stills camera and I think the Storage space was seen as an External Device and therefore appeared Networked which is why I asked the first set of questions.
    iChat does not like being in Two networks (a modem that issues IP address and a router doing the same or Wireless to a neighbour and Ethernet to your Own Internet connection, the Mac being the hub in a Share Internet connection, Wireless and Ethernet to the same router and using Parallels when set to Share the Mac's IP are the most common)
    The Screen Sharing option in iChat > Video Menu is ON ? (at both ends ?)
    As iChat's Screen Sharing is related to the System Screen Sharing and therefore Apple Remote Desktop you may find that in any routing device you may have to open ports 5900 and 5988 if not using UPnP
    http://support.apple.com/kb/TS1629?viewlocale=en_US
    You said Local Network. Do you mean this is using the Bonjour Buddy List ?
    11:21 AM Saturday; June 14, 2008

  • Why can't I print from my ipad 2 on my epson workforce 840 printer??? it show that there isn't a printer on my Ipad and my printer is wireless .

    why can't I print from my ipad 2 on my epson workforce 840 printer  ??? it show that there isn't a printer on my Ipad and my printer is wireless.

    The 840 isn't supported by Airprint.  See the list here:
    http://support.apple.com/kb/ht4356
    You may be able to use a universal printing app (check the app store), or Epson may make an app.  Or you could get a more up-to-date printer.

  • Can we get data from business views  in CR 2008/XI?

    Hi All,
    Can we get data from business views  in CR 2008/XI?
    If its possible, pls let us know how to get connect with Business View in both of these versions and what is the tool that we have to use to create Business Views.
    Thank you,
    Krishna Pingali

    Hi Krishna,
    Crystal Reports/BusinessObjects Enterprise ( BOE ) Business Views can only be created using the BV build which comes with BOE and installed using the Work Station installer for BOE. for both XI and 2008.
    You cannot mix these two versions on the same PC not can one talk to the other, the BV designer must match the same version as BOE. XI ( version 11.0 ) is no longer available but if you mean XI R2 ( version 11.5 ) then it still is.
    It's not completely clear which Business View you are referring to? BOE has a Business View Designer so not sure if this is just a naming problem or not? If you are referring to the BOE Business View Designer then the above is true. If your reference is about some other BV designer or data source then you need to clarify.
    Contact our Sales department for pricing and availability.
    Thank you
    Don

Maybe you are looking for

  • How do I take a screen shot on my macbook pro?

    How do I take a screen shot on my macbook pro?

  • Java Web Start and SplashScreen

    Hi, I have a jar which when run from the command line with: java -jar myApp.jar will run and display a SplashScreen as if I had used the command line java -Splash:SplashImage.png myApp. The problem I have is when this jar is run from Java Web Start,

  • Parameter not showing any results

    Hi all, To start off, I am a SAP BI consultant starting to learn crystal report, so I am quite a novice. Currently I have a problem with parameters, I am using the xtreme.mdb to learn crystal report. My crystal report is 2008. My report is quite simp

  • Signature with digest instead data

    Hello there, I am making an applet to sign document located on a server. Actually I need to upload the entire document to the client computer to sign it. I would to use the digest (given by the server) instead the full document, if it is possible. It

  • BO Report Generation very slow

    we have BO XI R2 running on windows 2003 enterprise ed (64 bit) with 8 GB ram and oracle 10g db. the report generation time for a simple statement takes about 40-50 minutes. what are the likely cause ? we have 5 named user licence and our branch pers