Input WCM content to Activity Stream Taskflow

Hi I am trying to input the data coming from WCM to Activity Stream task flow. Plan is read the data from WCM using java API and input it to the activity stream task flow. Can some one tell me how can we access this taskflow using Java API. I went through the API ref but couldn't fig out how to use it. 
Thank in advance

Hi.
You can use WebCenter API. In case of version 11.1.1.8:http://docs.oracle.com/cd/E29542_01/apirefs.1111/e15995/oracle/webcenter/activitystreaming/package-summary.html
Take a look in the classes ActivityStreamingService and ActivityStreamingServiceFactory
Basically you have to use ActivityStreamingService for posting new updates. How?.
To get the ActivityStreamService:
ActivityStreamingService service = ActivityStreamingServiceFactory.getInstance().getActivityStreamingService();
Fill all parameters requited for method createActivityElement
applicationID - application ID of the activity:
WCApplicationFactory fact = FactoryFinder.getFactory(WCApplicationFactory.class.getCanonicalName());
WCApplication application = fact.getWCApplication();
String applicationID = application.getApplicationName();
scope - the Scope of the activity
ServiceContext.getContext().getScope()
serviceID - the service ID of the activity Depending of the content there are different serviceId:    
wiki = oracle.webcenter.wiki    
blog = oracle.webcenter.blog    
document = oracle.webcenter.doclib    
webContent = oracle.webcenter.content
You can use UCMHelper.getServiceID passing the resourceType as argument to calculate it or when retrieving the node with Content Presenter, using #{node.propertyMap['webcenter:serviceid'].value.stringValue} will retrieve corresponding serviceID directly.
activityType - type of the activity Take a look into the API to fill it
actors - list of actors involved in the activity (there must be at least one actor in the activity) Take a look into the API to fill it
objects - list of objects involved in the activity (optional) Take a look into the API to fill it
permission - the permission of the activity Take a look into the API to fill it
activityTime - time when the activity happens Take a look into the API to fill it
Sample taken from activity libraries. Remember replace all the sample variables with how to get ApplicationID, Current Scope, etc... that I share to you
ActivityStreamingService service = ActivityStreamingServiceFactory.getInstance().getActivityStreamingService();
      ActivityActor actor0 = service.createActor(this.actor0DisplayName.toLowerCase());
      ActivityActor actor1 = service.createActor(this.actor1DisplayName.toLowerCase());
      List actors = new ArrayList();
      if ((!this.actor0DisplayName.equals("")) || (!this.actor0DetailURL.equals("")))
        actors.add(actor0);
      if ((!this.actor1DisplayName.equals("")) || (!this.actor1DetailURL.equals("")))
        actors.add(actor1);
      ActivityObjectType objectType = ((JpaActivityStreamingService)service).createObjectType("message");
      ActivityObject object0 = service.createObject("object0", objectType, this.object0DisplayName);
      ActivityObject object1 = service.createObject("object1", objectType, this.object1DisplayName);
      List objects = new ArrayList();
      if ((!this.object0DisplayName.equals("")) || (!this.object0DetailURL.equals("")))
        objects.add(object0);
      if ((!this.object1DisplayName.equals("")) || (!this.object1DetailURL.equals("")))
        objects.add(object1);
      ActivityType activityType = ((JpaActivityStreamingService)service).createActivityType("test");
      activityType.setMessage(this.message);
      ActivityElement activity = service.createActivityElement("customapp", new Scope("test"), "oracle.webcenter.activitystreaming.test", activityType, actors, objects, ActivityPermission.SHARED, new Date());
      service.publish(activity);
    catch (ActivityException e)
      WCServiceViewUtils.getInstance().logAndDisplayError(e);
I hope it helps

Similar Messages

  • Error while using pagination in Activity Stream taskflow

    Hi,
    I am getting a null pointer exception while using pagination on Activity Steam component. Any idea around possible cause?
    I am using Webcenter 11g, Here is the exception trace :
    <UIXRegion> <_warn> Error processing viewId: /activity-streaming-core/activityCoreView URI: /oracle/webcenter/activitystreaming/view/jsf/fragments/activityCoreView.jsff actual-URI: /oracle/webcenter/activitystreaming/view/jsf/fragments/activityCoreView.jsff.
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #1
    java.lang.NullPointerException
         at oracle.webcenter.activitystreaming.view.component.rich.ActivityPanel$FacetStamper.getProperty(ActivityPanel.java:1450)
         at oracle.webcenter.activitystreaming.view.component.rich.ActivityPanel$FacetStamper._processStamp(ActivityPanel.java:1573)
         at oracle.webcenter.activitystreaming.view.component.rich.ActivityPanel$FacetStamper.processValidators(ActivityPanel.java:1501)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXSwitcher.processValidators(UIXSwitcher.java:99)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1022)
         at oracle.adf.view.rich.component.fragment.UIXRegion.validateChildrenImpl(UIXRegion.java:634)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1007)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:814)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ProcessValidationsCallback.invokeContextCallback(LifecycleImpl.java:1306)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1358)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:555)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1380)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:555)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:194)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:147)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:334)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    This was a defect in version 11.1.1.5 and is resolved in 11.1.1.6.

  • Setting advanced query on Activity Stream

    Hi
    I'm using Publisher and Activity Stream taskflows together in a page and I need to differenciate when an uploaded document comes from publisher or not.
    By setting an advanced query at Activity Stream Content Presenter, for example: AE.ACTIVITY_TYPE NOT IN (\'create-document\') hide all the new documents uploaded by users on Content Server regardless of the location. That expression doesn't differentiate between documents uploaded to a personal folder or a public one.
    I need to hide on the activity stream all the new documents uploaded under /PersonalSpaces folder and subfolders in Content Server. So, documents uploaded using Publisher would appear because are stored under /WebCenterSpaces/my_folder_space/
    Documentation is quite poor.
    Please help.
    Regards

    So,
    For Case 1 : When Process B is getting executed in a separate Thread and Transaction , then when process A is getting rolled back why B is also getting rolled back as it's in different thread althgether.
    3) For Case2 : Please clear my following understanding :
    When we set the value to 'sync' for process B, then B will act like a synchronous process(ideally it Async), and will get committed after the it's execution. Because of this, even if A is getting rolled back, B will not get rolledback because it is already committed. For case 1:
    By calling process B, an invocation message is being insert into the dehydration store. That causes process B to be created as a new thread/transaction.
    When you perform rollback->the new transaction that was made following the new thread, is being rollback among the rest of your process transaction(the rollback causes the message not to be save and for that you can't see new instance).
    For case 2:
    By calling process B, only a new transaction is being creating, and invocation message is not being insert into the dehydration store.
    So actualy, you have 1 thread and 2 transactions, and you are telling your process(thread) to rollback only the current transaction and not the new one (process A not owns the new transaction).
    2) You mentioned if we are calling Process B with No Rollback. How to call B with No Rollback? Is there any property like that? It was just an example. Forget about it.
    I hope it answered you questions...
    Arik

  • ABAP Program to delete the WDSO contents from active data table & Manage Re

    Hi,
    We have requirement where we have to delete the request id from manage screen and data from Active table of WDSO.
    I have gone through this weblink where we have to hardcode the DSO name in the table (Deletion of WDSO (Write-optimized DataStore object) Load requests and active table data without deleting it from targetSAPNetworkWeblogs%2528SAPNetworkWeblogs%2529)
    Apart from that is there any suggestions or input where i can have selection screen for DSO and execute that will help us to delete the Request IDs and content of active table from WDSO.
    Suggestions or input programs really appreciated.
    Kindly do the needful.
    Regrads,
    Prem
    Edited by: pannalde on Nov 22, 2011 8:24 AM

    Hi,
    http://help.sap.com/saphelp_nw04/helpdata/en/2d/677b3c513d3311e10000000a114084/content.htm
    With program RSSM_DELETE_WO_DSO_REQUESTS it is possible to delete old requests in the Write-Optimized DSO, exactly like we are used to do with PSA requests via a Process Chain.
    This program is available as of SAP NetWeaver BW 7.01 SP07. See note 1437407 for details.
    You can automate the deletion of old WO requests by using the ABAP program step in the Process Chain.
    Regards,
    rvc

  • Retrieving WCM content from UCM and displaying on webcenter 11g

    We will have a separate site designed using site studio for content contribution (WCM content). Presenting this content will be done on a separate site. The presentation site will be developed using Webcenter Framework 11g.
    Our concern is how to retrive this WCM content from UCM to webcenter. Can we use CIS or CPS for this? What is right approach for this?
    -Pratap

    Hey Pratap,
    One of the main advantages of 10gr4 is the new architecture that allows for the WCM_PLACEHOLDER service to be used to grab Site Studio content. In 10gr3 there are no out of the box services to pull an asset so you have to do a bit more work. The easiest piece to pull in 10gr3 is the value of a WYSIWYG element in a data file. That is one of the modes we implemented in our portlets, but is really only useful for pulling in legacy content into the site, you end up losing a lot of the template based rendering that you get when the page is rendered by the content server.
    If I had to implement pulling in a 10gr3 based site and to get the full effect of the layouts and fragments I would first try to call the SS_GET_PAGE service directly and stream back the html. You may have to do some cleanup on the html that is returned to strip out things that won't work when you are inserting content that is part of a larger page in WebCenter. The second option I would try is to create a simple template engine on the WebCenter side that uses content that is in the Site Studio xml data file structure. However, this would be sort of a last resort since you would really be recreating work that is already done as part of Site Studio.
    My recommendation is to try to migrate to 10gr4 if you can so that you can leverage the new architecture. It was designed with your exact use case in mind for reusing content in a different application while 10gr3 is still mostly based on the old 7.x Site studio architecture that really only allows for the site to be rendered by the content server.
    So I'm not going to say that it cannot be done with 10gr3, it is just a lot more work.
    Hope that helps,
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • Can we bind twitter streaming with web center activity stream.

    Our PM suggests us to use Web center activity stream to store the twitter status based on our twitter search filter . To achieve that, it seems that we need to include the activity taskflow ( or data control) in our application and binding the taskflow with our twitter streaming. Is there any approach to achieve that? where can I find more details about using/extending activity stream.

    Hi-
    You can fit a 802.11n PCI Wireless adapter in your tower for maximum speed.

  • Didn't find content for activating environment

    hi gurus,
    i am activating the environment using the standard program UJS_ACTIVATE_CONTENT,  i am inputing the required fields and executing the screen,
    but the output screen showing the message in message text tab i.e Didn't find content for activating environment in  with error message.
    Please suggest me to resolve the issue

    Hi jose,
    Sorry for late replay,
    i done the process as following steps.
    1step: go the t-code : UJS_ACTIVATE_CONTENT .
    check out the error message , if activation error message there...
    do the following steps>
    Go to t-code RSA1.
    Click on bi content ----->  click on Object  Types >  click on More types
    ---->Select  BPC deletion----> select objects
    I done above steps to resolve the issue .
    Regards.
    surya

  • Activity Streams Issue

    The documentation shows a “File” link next to the “Attach” content that no longer shows up on our Space. What could be the reason for this?
    Additionally, there seems to be a bug where there is no publishing of anything to the activity stream if that space was configured for “Advanced” role permissions, as is the case with our particular space. Is our only option re-creating it from scratch since once “Advanced” permissions is set you can’t turn them back off?
    One idea I had for that was to close the space, export it and then see if we can edit the exported data to remove/change the permissions. Another Demo Space we have space does not have this issue because the permissions were never set to advanced. I was thinking if we export this space we may be able to see the difference and adjust the broken space's export accordingly and re-import it without having to recreate the entire space. Does this sound like a valid solution or is there an easier cleaner approach?

    The documentation shows a “File” link next to the “Attach”....Can you perhaps put a link to the documentation because i don't have a clue what you are talking about.
    there seems to be a bug where there is no publishing I tried it on my installation and it works probably.
    Can you try to create a new group space and set the advanced security and see if its work. Also make sure you do something before you change the settings to see if the AS works in normal conditions.
    Also check your user his profile to see if the notifications are on for the different resoruces.

  • I have a Sony radio in my car.   With IOS  4 on my IPhone I could use the docking plug to the usb input on the radio and stream ESPN radio or pandora to the radio.  After upgrading to IOS 5 on the phone the Sony radio will not recognize the phone .  Any t

    I have a Sony radio in my car.   With IOS  4 on my IPhone I could use the docking plug to the usb input on the radio and stream ESPN radio or pandora to the radio.  After upgrading to IOS 5 on the phone the Sony radio will not recognize the phone .  Any thoughts.

    I am reading on this site about the error I am getting and it wants me to change some files that I am not comfortable messing with. Mainly because it is like a foreign language. Will the store do this for me or tell me if it is neccessary?

  • New-AzureDeployment - Error while copying content to a stream

    Hi All,
    I am trying to deploy a packages using the Azure Powershell Cmdlets.
    Each time I try to deploy a particular package, I get the following error message..
    New-AzureDeployment : Error while copying content to a stream.
    At line:1 char:1
    + New-AzureDeployment -DoNotStart -ServiceName $strStagingCCPDeploymentServiceName ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [New-AzureDeployment], HttpRequestException
        + FullyQualifiedErrorId : System.Net.Http.HttpRequestException,Microsoft.WindowsAzure.Commands.ServiceManagement.HostedServices.NewAzureDeploymentCommand
    Looking at the inner exception I am getting
    Unable to read data from the transport connection: The connection was closed.
    The package itself is only 80mb and uploads to my blob storage successfully however when it tries to deploy using my config file the error occurs.  The same config file works fine if I use the Azure Website to deploy the package, rather than the cmdlets
    and I can deploy other packages successfully using PowerShell and using Visual Studio.
    Thank you for any help you can provide.

    Hi,
    This seems to be a network issue, but it's quite strange as you can deploy the package from Visual Studio. Could you please try it on another machine (in another network environment if possible)? Also, can you try
    to write a program and call the management API (http://msdn.microsoft.com/en-us/library/windowsazure/ee460813.aspx) to deploy it?
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to publish in the Activity Stream of my portal

    Recently I've been working on a Portal Site and in the page of Activity Stream, I couldn't publish anything after I clicked on "publish" button. This problem only happened on that specific space, not other spaces.
    Another thing I noticed is: under the "Share Something" box, there were only "Attach: Link". It were missing "File". It should be "Attach: Link | File".
    Could someone who knows this issue give me some suggestions? Thank you!!

    I figured out a way to fix this with my new Apple TV!
    After trying EVERYTHING!...(Trust me, I had tried EVERYTHING!) including restoring Apple TV to the original factory settings....reconiguring in every-which possible way.....
    Here's what I did to make it work.
    I happened to be in the "Settings" app of my iPhone, where I did something with the calendar settings for  iCloud.
    There, it prompted me to read the new "Terms & Conditions".  I agreed to them and then went directly to my Apple TV and it immediately worked.
    This was after WEEKS of trying EVERYTHING!
    So the key is to get an Apple device to prompt you with the new "Terms & Conditions".  Once you've agreed to it, you should find that Apple TV will let your PhotoStream work again!
    Hope that helps! 

  • Activity stream in CC desktop manager is not updated

    Hello, the activity stream on the Home panel of the Adobe CC desktop manager is not updated. I'm logged, I sync, I reinstalled the Adobe CC manager. I use the same Adobe CC account on another MacBookPro OS X 10.10 and the activity stream in the Home panel is fine.
    MacBookAir OSX 10.10.1, Adobe CC (2014), no firewall

    I'm having the opposite problem.  All those listed in the screen shot as "Install" have been installed.
    Deleting OPM.db and downloading and installing CreativeCloudInstaller.dmg did not fix the issue.
    Do I really need to delete all of my installed apps and starting from scratch?
    david
    Apps are listed as "Install" when they've already been installed

  • Method to Get the INPUT parameter CONTENT byte length

    method to get the INPUT parameter CONTENT byte length

    Dear "clown of forums",
    Please read the forum rules and ask understandable questions -> one thread per properly formulated question after having searched.
    Thread locked.

  • Activity Stream in the Webcenter

    Hi All,
    I am working on web center portlet JHeadstart application there is a requirement like when i add any entry in that table the same time Activity stream should get updated how to achieve this task.
    Can you please help me.
    Thanks.

    Hi.
    Update: Sorry I probably mistake saying Materialized View for your requirement.
    You have to do some PL/SQL, triggers and update your Activity Stream table.
    Regards.
    Edited by: Daniel Merchán on 06-mar-2013 12:28

  • CS4 Doesn't support rendering content optimized for streaming

    This is great, I render content for a Flash Streaming Server that serves an international community. I recently upgraded to Premiere Pro CS4, and have come to find out the following from Adobe Support today:
    Thank you for contacting Adobe® Web Support for assistance with Adobe
    Premiere® Pro CS4
    I understand that you want to know if Adobe Premiere Pro CS4 can export
    using H.264 as streaming media.
    Windows Media is the only option for streaming media in Adobe Premiere
    Pro CS4. This can be accessed in the Format box. There are no other
    options for streaming media. You may have to seek third party software
    to achieve these means.
    Great. Could someone please tell me who made this decision at Adobe? And what sense it makes? I thought CS4 was supposed to be my shortcut to brilliance.
    Also, this wouldn't be so bad not being able to render content optimized for streaming if the max bitrate setting work when rendering H264 content. However, an Adobe representative responded to me that it's a known bug by Adobe that this setting doesn't work with H264 content (F4V, Quicktime, H264, etc).

    Read the
    Exporting for the web section of the PPro CS4 Help to see what PPro can do.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

Maybe you are looking for